diff --git a/admin/app_update/xoa_update.json b/admin/app_update/xoa_update.json index 980865378..738ec2416 100644 --- a/admin/app_update/xoa_update.json +++ b/admin/app_update/xoa_update.json @@ -1 +1 @@ -{"version_id":"518"} \ No newline at end of file +{"version_id":"520"} \ No newline at end of file diff --git a/admin/app_update/xoa_update.sqlite3 b/admin/app_update/xoa_update.sqlite3 index 591055df9..828c5d019 100644 Binary files a/admin/app_update/xoa_update.sqlite3 and b/admin/app_update/xoa_update.sqlite3 differ diff --git a/home/wiki/App/Full-text_search.html b/home/wiki/App/Full-text_search.html new file mode 100644 index 000000000..68c45ba1d --- /dev/null +++ b/home/wiki/App/Full-text_search.html @@ -0,0 +1,592 @@ + + + + + App/Full-text search - XOWA + + + + + +
+
+
+

App/Full-text search

+
+
From XOWA: the free, open-source, offline wiki application
+
+
+ +

+ As of v4.5.0, XOWA can search for words in the page text. +

+ +

+ Usage +

+

+ Running +

+

+ Full-text search can be reached in any of the following ways: +

+
    +
  • + Main menu: Bookmarks -> Search for pages in the wiki +
  • +
  • + GUI: +
      +
    • + Type in the text-box to the left of the magnifying glass +
    • +
    • + Press enter or click the magnifying glass. +
    • +
    +
  • +
  • + HTML: +
      +
    • + Type in the text-box to the right of View HTML +
    • +
    • + Press enter or click the magnifying glass. +
    • +
    +
  • +
  • + URL: Go to Special:XowaSearch +
  • +
+

+ Canceling +

+

+ Searches can be canceled by pressing the cancel button to the right of the search button +

+

+ Options +

+

+ The following options are available: +

+
    +
  • + Wikis: List wikis to search using a pipe (|) character; EX: en.wikipedia.org|simple.wikipedia.org +
  • +
  • + Namespaces: List namespaces to search using a comma character; EX: 0,4 +
  • +
  • + Results per page: List number of results per page; EX: 50 +
  • +
  • + Expand pages: Expand pages sections when retrieving results. If 'n', pages will be collapsed; if 'y', pages will be expanded +
  • +
  • + Expand snips: Expand snips sections when retrieving results. If 'n', snips will be collapsed; if 'y', snips will be expanded +
  • +
  • + Show all snips: Show all snips when retrieving results. If 'n', only the first snip will show; if 'y', all snips will show +
  • +
+

+ Multiple wikis +

+

+ In addition, for multiple wikis, options can be specified per wiki using the pipe character. For example: +

+
    +
  • + If Wikis is en.wikipedia.org|simple.wikipedia.org +
  • +
  • + And Results per page is 20|10 +
  • +
  • + Then en.wikipedia.org will retrieve 20 results per page and simple.wikipedia.org will retrieve 10 +
  • +
+

+ In addition, the last value is used for other wikis. For example: +

+
    +
  • + If Wikis is en.wikipedia.org|simple.wikipedia.org|home +
  • +
  • + And Results per page is 20|10 +
  • +
  • + Then home will have a page count of 10 +
  • +
+

+ Search engine types +

+

+ XOWA supports two types of full-text search engines: XOWA Wikitext and Lucene HTML +

+

+ The following table illustrates the high-level differences. +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ function + + XOWA Wikitext + + Lucene HTML +
+ availability + + Wikitext wikis (Import Online / Offline) + + HTML wikis (Download Central) +
+ how it works + + Opens every page and scans wikitext + + Searches precompiled Lucene indexes +
+ speed + + slower: small wikis will be subsecond, but en.wikipedia.org searches can take 1+ hour for each search + + fast: en.wikipedia.org searches can execute in less than a second. +
+ disk space + + no additional space is needed + + additional space is needed. en.wikipedia.org will use at least 9 GB +
+ syntax + + uses same syntax as title search. See App/Search + + uses Lucene syntax. See the lucene search page as well as below. +
+

+ Options +

+

+ Options can be configured at Special:XowaCfg?grp=xowa.addon.fulltext search +

+

+ In addition, the Special:XowaSearch page also has a copy of the more-frequently used options. +

+

+
+

+

+ Lucene search syntax +

+

+ The best reference for Lucene syntax is probably the lucene search page. The following is an edited version of that page +

+

+ Fields +

+

+ XOWA uses one field: body. +

+

+ Body is the HTML of a page without the markup. So <span title='some more words'>word</span> will only have word, and ignore span, title, some, more, and words. +

+

+ In addition, XOWA uses three other fields: page_id, title, and page_score. These are included for system purposes only. +

+

+ Wildcards +

+

+ Lucene supports single and multiple character wildcard searches within single terms (not within phrase queries). +

+
    +
  • + To perform a single character wildcard search use the "?" symbol. For example, E?rth +
  • +
+
    +
  • + To perform a multiple character wildcard search use the "*" symbol. For example, Ear* +
  • +
+

+ Fuzzy Searches +

+

+ Lucene supports fuzzy searches based on the Levenshtein Distance, or Edit Distance algorithm. To do a fuzzy search use the tilde, "~", symbol at the end of a Single word Term. For example to search for a term similar in spelling to "roam" use the fuzzy search: roam~ +

+

+ This search will find terms like foam and roams. +

+

+ An additional (optional) parameter can specify the required similarity. The value is between 0 and 1, with a value closer to 1 only terms with a higher similarity will be matched. For example: roam~0.8 +

+

+ The default that is used if the parameter is not given is 0.5. +

+

+ Proximity Searches +

+

+ Lucene supports finding words are a within a specific distance away. To do a proximity search use the tilde, "~", symbol at the end of a Phrase. For example to search for a "apache" and "jakarta" within 10 words of each other in a document use the search: +

+

+ "jakarta apache"~10 +

+

+ Boosting a Term +

+

+ Lucene provides the relevance level of matching documents based on the terms found. To boost a term use the caret, "^", symbol with a boost factor (a number) at the end of the term you are searching. The higher the boost factor, the more relevant the term will be. +

+

+ Boosting allows you to control the relevance of a document by boosting its term. For example, if you are searching for +

+

+ jakarta apache +

+

+ and you want the term "jakarta" to be more relevant boost it using the ^ symbol along with the boost factor next to the term. You would type: +

+

+ jakarta^4 apache +

+

+ This will make documents with the term jakarta appear more relevant. You can also boost Phrase Terms as in the example: +

+

+ "jakarta apache"^4 "Apache Lucene" +

+

+ By default, the boost factor is 1. Although the boost factor must be positive, it can be less than 1 (e.g. 0.2) +

+

+ Boolean Operators +

+

+ Boolean operators allow terms to be combined through logic operators. Lucene supports AND, "+", OR, NOT and "-" as Boolean operators(Note: Boolean operators must be ALL CAPS). +

+

+ OR +

+

+ The OR operator is the default conjunction operator. This means that if there is no Boolean operator between two terms, the OR operator is used. The OR operator links two terms and finds a matching document if either of the terms exist in a document. This is equivalent to a union using sets. The symbol || can be used in place of the word OR. +

+

+ To search for documents that contain either jakarta apache or just jakarta use the query: +

+

+ "jakarta apache" jakarta +

+

+ or +

+

+ "jakarta apache" OR jakarta +

+

+
+

+

+ AND +

+

+ The AND operator matches documents where both terms exist anywhere in the text of a single document. This is equivalent to an intersection using sets. The symbol && can be used in place of the word AND. +

+

+ To search for documents that contain "jakarta apache" and "Apache Lucene" use the query: +

+

+ "jakarta apache" AND "Apache Lucene" +

+

+ + +

+

+ The "+" or required operator requires that the term after the "+" symbol exist somewhere in a the field of a single document. +

+

+ To search for documents that must contain "jakarta" and may contain "lucene" use the query: +

+

+ +jakarta lucene +

+

+ NOT +

+

+ The NOT operator excludes documents that contain the term after NOT. This is equivalent to a difference using sets. The symbol ! can be used in place of the word NOT. +

+

+ To search for documents that contain "jakarta apache" but not "Apache Lucene" use the query: +

+

+ "jakarta apache" NOT "Apache Lucene" +

+

+ Note: The NOT operator cannot be used with just one term. For example, the following search will return no results: +

+

+ NOT "jakarta apache" +

+

+ - +

+

+ The "-" or prohibit operator excludes documents that contain the term after the "-" symbol. +

+

+ To search for documents that contain "jakarta apache" but not "Apache Lucene" use the query: +

+

+ "jakarta apache" -"Apache Lucene" +

+

+ Grouping +

+

+ Lucene supports using parentheses to group clauses to form sub queries. This can be very useful if you want to control the boolean logic for a query. +

+

+ To search for either "jakarta" or "apache" and "website" use the query: +

+

+ (jakarta OR apache) AND website +

+

+ This eliminates any confusion and makes sure you that website must exist and either term jakarta or apache may exist. Field Grouping +

+

+ Escaping Special Characters +

+

+ Lucene supports escaping special characters that are part of the query syntax. The current list special characters are +

+

+ + - && || ! ( ) { } [ ] ^ " ~ * ? : \ +

+

+ To escape these character use the \ before the character. For example to search for (1+1):2 use the query: +

+

+ \(1\+1\)\:2 +

+ +
+
+
+ + +
+
+
+

Namespaces

+ +
+
+
+ +
+ +
+

XOWA

+ +
+ +
+

Getting started

+ +
+ +
+

Android

+
+ +
+
+ +
+

Help

+
+ +
+
+ +
+

Blog

+
+ +
+
+ + + +
+

Donate

+
+ +
+
+ +
+ + \ No newline at end of file diff --git a/home/wiki/App/Full-text_search/Lucene/Search_indexes/Building.html b/home/wiki/App/Full-text_search/Lucene/Search_indexes/Building.html new file mode 100644 index 000000000..8f368a93a --- /dev/null +++ b/home/wiki/App/Full-text_search/Lucene/Search_indexes/Building.html @@ -0,0 +1,187 @@ + + + + + App/Full-text search/Lucene/Search indexes/Building - XOWA + + + + + +
+
+
+

App/Full-text search/Lucene/Search indexes/Building

+
+
From XOWA: the free, open-source, offline wiki application
+
+
+ +

+ XOWA can generate full-text search indexes for existing Download Central wikis +

+

+ Purpose +

+

+ There are two reasons why one would want to build their own search index: +

+
    +
  • + Old Download Central wiki: Wikis built before 2017-04 will not have search indexes. Rather than wait for a new version, or download a new one, you can build one for the existing wiki +
  • +
  • + Building a custom index: Download Central imposes 2 restrictions to keep the disk usage low for search indexes: You may want to build a custom index in order to work around the following two limitations: +
      +
    • + Main namespace only: The Project, Portal, Category and other namespaces are not indexed. For example, some Wikisources have an Author and an Index index. +
    • +
    • + Proximity queries are not supported: Lucene supports proximity queries such as "word1 word2"~8 which means find pages where word1 and word2 are within 8 words of each other. This support can be added, but it uses significantly more space. For English Wikipedia, the index size can go from 9 GB to 40 GB. +
    • +
    +
  • +
+

+ Requirements +

+

+ Indexes can only be built for wikis downloaded from Download Central. +

+

+ If your wiki isn't yet on Download Central, please contact me through Help/Feedback and I'll add your wiki to the queue. +

+

+ Process +

+
    +
  • + Go to Special:XowaSearchBuilder +
  • +
  • + Choose the domain for your wiki. For example, en.wiktionary.org +
  • +
  • + Choose namespaces for your wiki. For example, 0,4,14. For more info, see https://en.wikipedia.org/wiki/Wikipedia:Namespace +
  • +
  • + Choose index options. +
      +
    • + Documents: This index uses the least amount of space. However, it's not as accurate as "Documents / Frequencies" +
    • +
    • + Documents / Frequencies: This is the default index option used for all of XOWA wikis. It is slightly more accurate, as it tracks the number of words page. For example, if you're searching for "earth" and Page1 has "earth" 1 time, Page2 has "earth" 10 times, and Page3 has "earth" 20 times, then "Documents / Frequencies" returns the pages in the following order: Page3, Page2, Page1. "Documents" would list them in a random order. +
    • +
    • + Documents / Frequencies / Positions: This index option allows proximity queries such as "word1 word2"~8. However, it can use 4 to 5 times as much space +
    • +
    • + Documents / Frequencies / Positions / Offsets: This index option is primarily used for Lucene highlighting. XOWA uses its own highlighter in order to save space. At the moment, there's no reason to choose this option, but it may be useful to some power Lucene users. +
    • +
    +
  • +
+ +
+
+
+ + +
+
+
+

Namespaces

+ +
+
+
+ +
+ +
+

XOWA

+ +
+ +
+

Getting started

+ +
+ +
+

Android

+
+ +
+
+ +
+

Help

+
+ +
+
+ +
+

Blog

+
+ +
+
+ + + +
+

Donate

+
+ +
+
+ +
+ + \ No newline at end of file diff --git a/home/wiki/App/Full-text_search/Lucene/Search_indexes/Getting.html b/home/wiki/App/Full-text_search/Lucene/Search_indexes/Getting.html new file mode 100644 index 000000000..5775a18e3 --- /dev/null +++ b/home/wiki/App/Full-text_search/Lucene/Search_indexes/Getting.html @@ -0,0 +1,189 @@ + + + + + App/Full-text search/Lucene/Search indexes/Getting - XOWA + + + + + +
+
+
+

App/Full-text search/Lucene/Search indexes/Getting

+
+
From XOWA: the free, open-source, offline wiki application
+
+
+ + +

+ Overview +

+

+ Full-text search requires custom files in order to work. +

+

+ Currently, there are two ways of getting these files +

+

+ Downloading from archive.org for 2017-03 English Wikipedia +

+

+ For 2017-03 English Wikipedia, the search index must be downloaded manually from archive.org +

+ +

+ Downloading from Download Central for 2017-04 wikis and later +

+

+ Full-text search indexes will be automatically part of any new wiki on Download Central uploaded on 2017-04 or later. +

+

+ As this feature is quite new, it will take some time for these wikis to be updated. +

+

+ If your wiki isn't yet on Download Central, please contact me through Help/Feedback and I'll add your wiki to the queue. +

+

+ Building indexes for already-existing Download Central wikis +

+

+ Full-text search indexes can also be generated within application. For more information, see App/Full-text_search/Lucene/Search_indexes/Building +

+ +
+
+
+ + +
+
+
+

Namespaces

+ +
+
+
+ +
+ +
+

XOWA

+ +
+ +
+

Getting started

+ +
+ +
+

Android

+
+ +
+
+ +
+

Help

+
+ +
+
+ +
+

Blog

+
+ +
+
+ + + +
+

Donate

+
+ +
+
+ +
+ + \ No newline at end of file diff --git a/home/wiki/App/Import/English_Wikipedia.html b/home/wiki/App/Import/English_Wikipedia.html index a0733bb42..f8f361157 100644 --- a/home/wiki/App/Import/English_Wikipedia.html +++ b/home/wiki/App/Import/English_Wikipedia.html @@ -102,7 +102,7 @@

@@ -130,7 +130,7 @@

- By default, a simple white on black theme is chosen. Exact colors can be chosen through Special:XowaCfg?grp=xowa.gui.nightmode. + By default, a simple white on black theme is chosen. Exact colors can be chosen through Special:XowaCfg?grp=xowa.gui.nightmode.

CSS diff --git a/home/wiki/Blog.html b/home/wiki/Blog.html index 0c5a37a6c..c04fdec44 100644 --- a/home/wiki/Blog.html +++ b/home/wiki/Blog.html @@ -78,44 +78,191 @@ +

+ Release: v4.5.0.1703 (2017-03-29 16:00 Wed) +

+

+ The PC version is a major release. It adds full-text search for the Wikipedias, redesigns Special:XowaSearch, and fixes parsing errors in 2017-03 Russian Wikipedia. +

+

+ The Android version is a major release. It also adds full-text search for the Wikipedias. +

+

+ (Wiki) Publish 2017-03 English Wikipedia, 2017-03 Russian, 2017-03 Hindi, and 2017-03 Tibetan wikis +

+

+ These wikis were uploaded over the course of the month. You can get them from Download Central or see the following links: +

+ +

+ (PC / Android) Add full-text search capability for all wikis. See: App/Full-text_search and App/Full-text_search/Lucene/Search_indexes/Getting +

+

+ XOWA finally supports full-text search. This was a complicated change involving a new Special page (Special:XowaSearch) and a new Java library (Lucene). There will be more changes in future releases, but the current version should work well enough for PCs as well as Android devices. +

+

+ Right now, full-text search indexes are only available for download for 2017-03 English Wikipedia. To get it, see App/Full-text_search/Lucene/Search_indexes/Getting. Note that future wikis will have full-text search indexes automatically included with them. +

+

+ You can also build your own full-text search indexes for existing Download Central wikis. To try it, see App/Full-text_search/Lucene/Search_indexes/Building +

+

+ For more details see App/Full-text_search +

+

+ (PC) Redesign full-text search Special Page. See: Special:XowaSearch +

+

+ A basic version of Special:XowaSearch was released to allow full-text search for personal wikis. The current version cleans up the UI and adds features like paging and highlighted snips. +

+

+ (PC) Add search and allpages button +

+

+ In tandem with the above, XOWA now has two separate buttons: +

+ +

+ For those who find the two buttons cluttering, they can be selectively shown / hidden at Special:XowaCfg?grp=xowa.gui.general +

+

+ (PC) Fix wikibase "attempt to call nil" errors for 2017-03 Russian wikis +

+

+ The 2017-03 Russian Wikipedia had a bunch of Script errors with "attempt to call nil". Most of these involved many Wikibase changes introduced over the past year, but finally used in a Module within Russian Wikipedia. These errors have been fixed with the current version +

+

+ (PC) Fix minor issues including page_sync requiring double refresh, long directory names for images, and rare import errors +

+

+ There are basically three issues worth highlighting: +

+ +

+ (PC) Add minor GUI changes including custom url formats, direct HTML from SWT browser, and options link +

+

+ These are a few minor changes worth detailing: +

+ +

+ Next release +

+ +

+
+

Release: v4.4.0.1703 (2017-03-07 18:00 Mon)

@@ -136,20 +283,20 @@

(PC) Add night mode

- XOWA now has night mode. To enable it, do Menu -> View -> Toggle Night mode. More info is at App/UI/Night_mode + XOWA now has night mode. To enable it, do Menu -> View -> Toggle Night mode. More info is at App/UI/Night_mode

- I implemented this feature over the past few days, so there may be some spots I missed. Also, if you have any suggestions about colors, CSS, or icons, please do contact me at Help/Feedback. + I implemented this feature over the past few days, so there may be some spots I missed. Also, if you have any suggestions about colors, CSS, or icons, please do contact me at Help/Feedback.

(PC) Add page backup feature @@ -162,7 +309,7 @@

- 2017-02 English Wikipedia is officially up. See Wiki_setup/English_wikis + 2017-02 English Wikipedia is officially up. See Wiki_setup/English_wikis

In addition, I reuploaded the entire English Wikipedia file database set. This is a periodic task which is necessary to keep the image databases small for new users. @@ -263,7 +263,7 @@ Copy the personal wiki file from the first machine to the second machine

  • - Go to Special:XowaWikiDirectory on the second machine + Go to Special:XowaWikiDirectory on the second machine
  • Click the Import button. It's a white sheet of papers with a white arrow pointing rightwards. @@ -300,7 +300,7 @@ Navigate to page using the curid argument. For example, en.wikipedia.org/wiki/?curid=303 will navigate to the Alabama page
  • - A new special page to easily run SQL within XOWA: Special:XowaSql. This is mainly intended for any future troubleshooting. + A new special page to easily run SQL within XOWA: Special:XowaSql. This is mainly intended for any future troubleshooting.
  • Changes to some default keyboard shortcuts. This requires a longer explanation: diff --git a/home/wiki/Blog/2017-03.html b/home/wiki/Blog/2017-03.html index a16531aaa..17db92d7e 100644 --- a/home/wiki/Blog/2017-03.html +++ b/home/wiki/Blog/2017-03.html @@ -78,44 +78,191 @@ +

    + Release: v4.5.0.1703 (2017-03-29 16:00 Wed) +

    +

    + The PC version is a major release. It adds full-text search for the Wikipedias, redesigns Special:XowaSearch, and fixes parsing errors in 2017-03 Russian Wikipedia. +

    +

    + The Android version is a major release. It also adds full-text search for the Wikipedias. +

    +

    + (Wiki) Publish 2017-03 English Wikipedia, 2017-03 Russian, 2017-03 Hindi, and 2017-03 Tibetan wikis +

    +

    + These wikis were uploaded over the course of the month. You can get them from Download Central or see the following links: +

    + +

    + (PC / Android) Add full-text search capability for all wikis. See: App/Full-text_search and App/Full-text_search/Lucene/Search_indexes/Getting +

    +

    + XOWA finally supports full-text search. This was a complicated change involving a new Special page (Special:XowaSearch) and a new Java library (Lucene). There will be more changes in future releases, but the current version should work well enough for PCs as well as Android devices. +

    +

    + Right now, full-text search indexes are only available for download for 2017-03 English Wikipedia. To get it, see App/Full-text_search/Lucene/Search_indexes/Getting. Note that future wikis will have full-text search indexes automatically included with them. +

    +

    + You can also build your own full-text search indexes for existing Download Central wikis. To try it, see App/Full-text_search/Lucene/Search_indexes/Building +

    +

    + For more details see App/Full-text_search +

    +

    + (PC) Redesign full-text search Special Page. See: Special:XowaSearch +

    +

    + A basic version of Special:XowaSearch was released to allow full-text search for personal wikis. The current version cleans up the UI and adds features like paging and highlighted snips. +

    +

    + (PC) Add search and allpages button +

    +

    + In tandem with the above, XOWA now has two separate buttons: +

    + +

    + For those who find the two buttons cluttering, they can be selectively shown / hidden at Special:XowaCfg?grp=xowa.gui.general +

    +

    + (PC) Fix wikibase "attempt to call nil" errors for 2017-03 Russian wikis +

    +

    + The 2017-03 Russian Wikipedia had a bunch of Script errors with "attempt to call nil". Most of these involved many Wikibase changes introduced over the past year, but finally used in a Module within Russian Wikipedia. These errors have been fixed with the current version +

    +

    + (PC) Fix minor issues including page_sync requiring double refresh, long directory names for images, and rare import errors +

    +

    + There are basically three issues worth highlighting: +

    + +

    + (PC) Add minor GUI changes including custom url formats, direct HTML from SWT browser, and options link +

    +

    + These are a few minor changes worth detailing: +

    + +

    + Next release +

    + +

    +
    +

    Release: v4.4.0.1703 (2017-03-07 18:00 Mon)

    @@ -136,20 +283,20 @@

    (PC) Add night mode

    - XOWA now has night mode. To enable it, do Menu -> View -> Toggle Night mode. More info is at App/UI/Night_mode + XOWA now has night mode. To enable it, do Menu -> View -> Toggle Night mode. More info is at App/UI/Night_mode

    - I implemented this feature over the past few days, so there may be some spots I missed. Also, if you have any suggestions about colors, CSS, or icons, please do contact me at Help/Feedback. + I implemented this feature over the past few days, so there may be some spots I missed. Also, if you have any suggestions about colors, CSS, or icons, please do contact me at Help/Feedback.

    (PC) Add page backup feature @@ -162,7 +309,7 @@

    - Links: Special:XowaSearch + Links: Special:XowaSearch

    - Wiki + Wiki

    - Links: Wiki_setup/English_wikis + Links: Wiki_setup/English_wikis
    - Links: Wiki_setup/Gujarati_wikis + Links: Wiki_setup/Gujarati_wikis

    - PC + PC

    major @@ -365,7 +613,7 @@

    - Links: App/Personal_wikis/Default_Main_Page#Category + Links: App/Personal_wikis/Default_Main_Page#Category
    - Links: Special:XowaWikiDirectory + Links: Special:XowaWikiDirectory
    - Links: Special:XowaSql + Links: Special:XowaSql

    @@ -453,7 +701,7 @@ v4.2.0.1702 (2017-02-12)

    - PC + PC

    major @@ -465,7 +713,7 @@

    - Links: Special:XowaWikiItem + Links: Special:XowaWikiItem

    @@ -508,7 +756,7 @@

  • - PC + PC

    major @@ -520,7 +768,7 @@

    - Links: App/Setup/Update/In-app + Links: App/Setup/Update/In-app

    @@ -595,7 +843,7 @@

    - Links: Special:XowaCfg?grp=xowa.files.general + Links: Special:XowaCfg?grp=xowa.files.general

    - PC + PC

    major @@ -713,7 +961,7 @@

    - Links: Options + Links: Options
    - Links: Wiki_setup/English_wikis + Links: Wiki_setup/English_wikis
    - Links: Wiki_setup/English_wikis + Links: Wiki_setup/English_wikis
    - Links: Dev/Command-line/Dumps + Links: Dev/Command-line/Dumps

    @@ -5051,7 +5051,7 @@

    diff --git a/home/wiki/Change_log/v3.10.3.1.html b/home/wiki/Change_log/v3.10.3.1.html index b095c6a81..e8813a2fd 100644 --- a/home/wiki/Change_log/v3.10.3.1.html +++ b/home/wiki/Change_log/v3.10.3.1.html @@ -64,7 +64,7 @@ Resolved by: Include latest download central database.

    - Links: Wiki_setup/English_wikis Wiki_setup/German_wikis + Links: Wiki_setup/English_wikis Wiki_setup/German_wikis

    @@ -80,7 +80,7 @@
    - Links: Wiki_setup/English_wikis + Links: Wiki_setup/English_wikis
    - Links: Wiki_setup/English_wikis + Links: Wiki_setup/English_wikis
    - Links: Dev/Command-line/Dumps + Links: Dev/Command-line/Dumps
    - Links: Special:XowaWikiItem + Links: Special:XowaWikiItem

    diff --git a/home/wiki/Change_log/v4.3.0.1702.html b/home/wiki/Change_log/v4.3.0.1702.html index ec7627238..fd460a18f 100644 --- a/home/wiki/Change_log/v4.3.0.1702.html +++ b/home/wiki/Change_log/v4.3.0.1702.html @@ -30,7 +30,7 @@

    - Links: Wiki_setup/English_wikis + Links: Wiki_setup/English_wikis
    - Links: Special:XowaWikiDirectory + Links: Special:XowaWikiDirectory
    - Links: Special:XowaSql + Links: Special:XowaSql

    diff --git a/home/wiki/Change_log/v4.4.0.1703.html b/home/wiki/Change_log/v4.4.0.1703.html index bfe68e552..489bcc9ba 100644 --- a/home/wiki/Change_log/v4.4.0.1703.html +++ b/home/wiki/Change_log/v4.4.0.1703.html @@ -40,7 +40,7 @@

    - Links: Wiki_setup/French_wikis + Links: Wiki_setup/French_wikis

    diff --git a/home/wiki/Change_log/v4.5.0.1703.html b/home/wiki/Change_log/v4.5.0.1703.html new file mode 100644 index 000000000..c97685fa8 --- /dev/null +++ b/home/wiki/Change_log/v4.5.0.1703.html @@ -0,0 +1,379 @@ + + + + + Change log/v4.5.0.1703 - XOWA + + + + + +
    +
    +
    +

    Change log/v4.5.0.1703

    +
    +
    From XOWA: the free, open-source, offline wiki application
    +
    +
    + +
    +
    +

    + Contents +

    +
    + +
    +

    + v4.5.0.1703 (2017-03-29) +

    +

    + Wiki +

    +
      +
    • + Package: Publish 2017-03 English Wikipedia. +
    • +
    +
    +
    + Links: Wiki_setup/English_wikis +
    +
    +
      +
    • + Package: Publish 2017-03 Russian wikis. +
    • +
    +
    +
    + Links: Wiki_setup/Russian_wikis +
    +
    +
      +
    • + Package: Publish 2017-03 Hindi wikis. {requested by anonymous} +
    • +
    +
    +
    + Links: Wiki_setup/Hindi_wikis +
    +
    +
      +
    • + Package: Publish 2017-03 Tibetan wikis. {requested by anonymous} +
    • +
    +
    +
    + Links: Wiki_setup/Tibetan_wikis +
    +
    +

    + PC +

    +

    + major +

    +
      +
    • + Full-text search: Add Full-text search for Wikipedias. +
    • +
    +
    +
    + Links: App/Full-text_search +
    +
    +
      +
    • + Full-text search: Redesign Search UI including highlighting matches in snips and ignoring HTML tags. +
    • +
    +
      +
    • + Gui: Add search and allpages button. {requested by Ope30} +
    • +
    +
      +
    • + Wikibase: Fix "Module:Wikidata:813 attempt to call nil" on many ru.w pages. +
    • +
    +
    +
    + Message: Module:Wikidata:813 attempt to call nil +
    +
    + Resolved by: Synchronize latest of mw.wikibase.lua and mw.wikibase.entity.lua. +
    +
    + Example: /xowa/bin/any/xowa/xtns/Scribunto/engines/LuaCommon/lualib/mw.wikibase.lua|mw.wikibase.entity.lua. +
    +
    + Links: https://ru.wikipedia.org/wiki/Армения https://ru.wikipedia.org/wiki/Пайк,_Роберт +
    +
    +
      +
    • + Wikibase: Fix 'mw.wikibase.entity.lua:56 attempt to call nil' on several dozen ru.w pages. +
    • +
    +
    +
    + Message: mw.wikibase.entity.lua:56 attempt to call nil +
    +
    + Links: https://ru.wikipedia.org/wiki/Бейлина,_Нина_Михайловна +
    +
    +

    + minor +

    +
      +
    • + Page_sync: Show synced page immediately, not after another refresh. {detected by khanhhung2512 } +
    • +
    +
      +
    • + Category: Fix fatal page load error when page_cat_db_id is invalid. {detected by Ope30} +
    • +
    +
    +
    + Links: https://en.wikipedia.org/wiki/Seven_Wells_Hill +
    +
    +
      +
    • + File: Handle long directory names on Windows systems. {detected by Ope30} +
    • +
    +
    +
    + Links: https://de.wikipedia.org/wiki/Wikipedia:Quiz/Geschichte +
    +
    +
      +
    • + Wikibase: Fix missing image on some ru.w pages. {detected by Ope30} +
    • +
    +
    +
    + Resolved by: Add 'datatype' property to 'Property:' pages. +
    +
    + Links: https://ru.wikipedia.org/wiki/Маргарян,_Андраник_Наапетович +
    +
    +
      +
    • + Import: Fix file selector not working on Import offline. {detected by anonymous} +
    • +
    +
    +
    + Links: Dashboard/Import/Offline +
    +
    +
      +
    • + Gui: Add option to display actual HTML in SWT browser. +
    • +
    +
    +
    + Links: Special:XowaCfg?grp=xowa.wiki.hdumps +
    +
    +
      +
    • + Options: Add 'options link' to get direct call to option group. +
    • +
    +
    +
    + Links: Special:XowaCfg +
    +
    +
      +
    • + Gui: Add url_box format for displaying custom urls like 'English Wikipedia/Earth'. {requested by Ope30} +
    • +
    +
    +
    + Links: Special:XowaCfg?grp=xowa.gui.url bar +
    +
    +
      +
    • + Gui: Change back-color of Options.Shortcut.Bindings window from gray to white. +
    • +
    +
      +
    • + Personal_wikis: Fix perpetual "Do you want to upgrade your search databases" when using Search field for personal wikis. +
    • +
    +

    + trivial +

    +
      +
    • + Html: Upgrade oojs-ui to show XowaSearch magnifying glass on Safari. +
    • +
    +
      +
    • + Mass_parse: Fix critical import failure when importing ru.wikinews.org. +
    • +
    +
    +
    + Resolved by: Ignore duplicate page titles. +
    +
    +
      +
    • + Mass_parse: Do not fail if no images in wiki. +
    • +
    +

    + Android +

    +

    + major +

    +
      +
    • + Full-text search: Add Full-text search for Wikipedias. +
    • +
    +
    +
    + Links: App/Full-text_search +
    +
    + +
    +
    +
    + + +
    +
    +
    +

    Namespaces

    + +
    +
    +
    + +
    + + + + + +
    +

    Android

    +
    + +
    +
    + +
    +

    Help

    +
    + +
    +
    + +
    +

    Blog

    +
    + +
    +
    + + + +
    +

    Donate

    +
    + +
    +
    + +
    + + \ No newline at end of file diff --git a/home/wiki/Dashboard/Import/Online.html b/home/wiki/Dashboard/Import/Online.html index a828c922d..595f15147 100644 --- a/home/wiki/Dashboard/Import/Online.html +++ b/home/wiki/Dashboard/Import/Online.html @@ -51,7 +51,7 @@ dump size
    - (as of 2016-10-13) + (as of 2017-03-28) download time
    @@ -80,16 +80,16 @@ Commons - 5.669 GB + 6.118 GB - 01h 41m 26s + 01h 49m 29s - 6086895489 + 6569571006 - 2016-12-03 02:30 + 2017-03-23 12:08 @@ -107,16 +107,16 @@ Wikidata - 10.704 GB + 12.459 GB - 03h 11m 33s + 03h 42m 57s - 11493192482 + 13377333135 - 2016-12-04 08:30 + 2017-03-24 18:53 @@ -134,16 +134,16 @@ MediaWiki - 84.190 MB + 87.647 MB - 01m 28s + 01m 31s - 88279416 + 91904309 - 2016-12-02 06:13 + 2017-03-20 15:29 @@ -161,16 +161,16 @@ Wikispecies - 105.162 MB + 110.159 MB - 01m 50s + 01m 55s - 110270833 + 115509762 - 2016-12-02 06:16 + 2017-03-20 15:45 @@ -188,16 +188,16 @@ Meta - 261.202 MB + 280.236 MB - 04m 33s + 04m 53s - 273889836 + 293848484 - 2016-12-02 07:59 + 2017-03-22 14:06 @@ -215,16 +215,16 @@ Incubator - 64.356 MB + 68.884 MB - 01m 07s + 01m 12s - 67482261 + 72229620 - 2016-12-02 05:55 + 2017-03-20 15:21 @@ -242,16 +242,16 @@ Wikimedia Foundation - 6.175 MB + 6.193 MB 06s - 6475204 + 6493910 - 2016-12-02 05:16 + 2017-03-20 14:38 @@ -270,16 +270,16 @@ Wikipedia - 12.574 GB + 12.868 GB - 03h 45m 01s + 03h 50m 16s - 13501628237 + 13816783154 - 2016-12-03 06:09 + 2017-03-22 05:47 @@ -298,16 +298,16 @@ Wiktionary - 557.326 MB + 571.579 MB - 09m 44s + 09m 59s - 584399115 + 599344101 - 2016-12-02 09:15 + 2017-03-20 19:13 @@ -326,16 +326,16 @@ Wikisource - 1.654 GB + 1.677 GB - 29m 36s + 30m 01s - 1776444168 + 1801142733 - 2016-12-02 07:00 + 2017-03-20 16:19 @@ -354,16 +354,16 @@ Wikibooks - 133.706 MB + 135.043 MB - 02m 20s + 02m 21s - 140200810 + 141602600 - 2016-12-02 05:39 + 2017-03-20 15:14 @@ -382,16 +382,16 @@ Wikiversity - 66.490 MB + 67.865 MB - 01m 09s + 01m 11s - 69719803 + 71161999 - 2016-12-02 05:31 + 2017-03-20 15:11 @@ -410,16 +410,16 @@ Wikiquote - 96.640 MB + 98.484 MB - 01m 41s + 01m 43s - 101333961 + 103267483 - 2016-12-02 05:31 + 2017-03-20 15:12 @@ -438,16 +438,16 @@ Wikinews - 37.718 MB + 38.050 MB 39s - 39550542 + 39898351 - 2016-12-02 05:55 + 2017-03-20 15:12 @@ -466,16 +466,16 @@ Wikivoyage - 76.910 MB + 78.066 MB - 01m 20s + 01m 21s - 80646413 + 81857793 - 2016-12-02 05:28 + 2017-03-20 15:13 @@ -494,16 +494,16 @@ Wikipedia - 4.039 GB + 4.135 GB - 01h 12m 16s + 01h 14m 00s - 4336455377 + 4440345959 - 2016-12-02 11:47 + 2017-03-22 18:41 @@ -522,16 +522,16 @@ Wiktionary - 113.797 MB + 117.438 MB - 01m 59s + 02m 03s - 119325280 + 123142872 - 2016-12-02 06:20 + 2017-03-20 15:40 @@ -550,16 +550,16 @@ Wikisource - 385.347 MB + 390.975 MB - 06m 44s + 06m 49s - 404065492 + 409966673 - 2016-12-02 05:56 + 2017-03-20 15:29 @@ -578,16 +578,16 @@ Wikibooks - 46.501 MB + 47.116 MB - 48s + 49s - 48760210 + 49404464 - 2016-12-02 05:08 + 2017-03-20 15:00 @@ -606,16 +606,16 @@ Wikiversity - 18.298 MB + 18.591 MB 19s - 19186805 + 19494021 - 2016-12-02 05:00 + 2017-03-20 14:23 @@ -634,16 +634,16 @@ Wikiquote - 6.620 MB + 6.621 MB 06s - 6941471 + 6942921 - 2016-12-02 04:33 + 2017-03-20 14:32 @@ -662,16 +662,16 @@ Wikinews - 15.184 MB + 15.301 MB - 15s + 16s - 15921991 + 16044349 - 2016-12-02 04:58 + 2017-03-20 14:54 @@ -690,16 +690,16 @@ Wikivoyage - 40.782 MB + 41.636 MB - 42s + 43s - 42763110 + 43658177 - 2016-12-02 05:13 + 2017-03-20 15:01 @@ -718,16 +718,16 @@ Wikipedia - 2.318 GB + 2.378 GB - 41m 28s + 42m 33s - 2488681432 + 2553809222 - 2016-12-02 10:33 + 2017-03-22 17:48 @@ -746,16 +746,16 @@ Wiktionary - 67.163 MB + 67.677 MB 01m 10s - 70425888 + 70964894 - 2016-12-02 06:20 + 2017-03-20 15:36 @@ -774,16 +774,16 @@ Wikisource - 171.023 MB + 171.934 MB - 02m 59s + 03m 00s - 179331035 + 180285452 - 2016-12-02 05:16 + 2017-03-20 15:08 @@ -802,16 +802,16 @@ Wikibooks - 19.756 MB + 21.261 MB - 20s + 22s - 20715552 + 22293633 - 2016-12-02 05:00 + 2017-03-20 14:45 @@ -830,16 +830,16 @@ Wikiversity - 4.911 MB + 4.995 MB 05s - 5149405 + 5238064 - 2016-12-02 04:32 + 2017-03-20 13:56 @@ -858,16 +858,16 @@ Wikiquote - 12.194 MB + 12.330 MB 12s - 12786802 + 12928464 - 2016-12-02 04:50 + 2017-03-20 14:49 @@ -886,16 +886,16 @@ Wikinews - 11.367 MB + 11.695 MB - 11s + 12s - 11918939 + 12262636 - 2016-12-02 04:58 + 2017-03-20 14:42 @@ -914,16 +914,16 @@ Wikivoyage - 5.814 MB + 5.920 MB 06s - 6095940 + 6207895 - 2016-12-02 04:22 + 2017-03-20 14:33 @@ -942,16 +942,16 @@ Wikipedia - 3.274 GB + 3.363 GB - 58m 35s + 01h 00m 10s - 3515026337 + 3610971807 - 2016-12-02 11:33 + 2017-03-22 18:24 @@ -970,16 +970,16 @@ Wiktionary - 306.094 MB + 313.286 MB - 05m 20s + 05m 28s - 320962846 + 328504406 - 2016-12-02 08:05 + 2017-03-20 17:12 @@ -998,16 +998,16 @@ Wikisource - 1.138 GB + 1.186 GB - 20m 21s + 21m 13s - 1221748335 + 1273863493 - 2016-12-02 06:46 + 2017-03-20 16:14 @@ -1026,16 +1026,16 @@ Wikibooks - 21.405 MB + 21.949 MB - 22s + 23s - 22444806 + 23014980 - 2016-12-02 05:01 + 2017-03-20 14:57 @@ -1054,16 +1054,16 @@ Wikiversity - 18.991 MB + 20.338 MB - 19s + 21s - 19913033 + 21325577 - 2016-12-02 04:57 + 2017-03-20 14:39 @@ -1082,16 +1082,16 @@ Wikiquote - 9.332 MB + 9.460 MB 09s - 9785307 + 9919394 - 2016-12-02 04:48 + 2017-03-20 14:14 @@ -1110,16 +1110,16 @@ Wikinews - 17.652 MB + 18.037 MB 18s - 18509087 + 18912857 - 2016-12-02 04:58 + 2017-03-20 14:55 @@ -1138,16 +1138,16 @@ Wikivoyage - 12.989 MB + 13.372 MB - 13s + 14s - 13620466 + 14021044 - 2016-12-02 04:40 + 2017-03-20 14:44 @@ -1166,16 +1166,16 @@ Wikipedia - 2.115 GB + 2.168 GB - 37m 51s + 38m 48s - 2271256928 + 2328392650 - 2016-12-02 09:51 + 2017-03-22 16:16 @@ -1194,16 +1194,16 @@ Wiktionary - 36.197 MB + 36.756 MB - 37s + 38s - 37955003 + 38541846 - 2016-12-02 05:37 + 2017-03-20 15:21 @@ -1222,16 +1222,16 @@ Wikisource - 193.750 MB + 200.715 MB - 03m 23s + 03m 30s - 203161915 + 210465183 - 2016-12-02 05:36 + 2017-03-20 15:19 @@ -1250,16 +1250,16 @@ Wikibooks - 22.568 MB + 23.155 MB - 23s + 24s - 23664065 + 24279721 - 2016-12-02 04:32 + 2017-03-20 14:20 @@ -1278,16 +1278,16 @@ Wikiversity - 10.294 MB + 11.175 MB - 10s + 11s - 10794155 + 11717774 - 2016-12-02 04:18 + 2017-03-20 13:55 @@ -1306,16 +1306,16 @@ Wikiquote - 39.117 MB + 40.251 MB - 41s + 42s - 41016817 + 42206249 - 2016-12-02 05:17 + 2017-03-20 15:02 @@ -1334,16 +1334,16 @@ Wikinews - 10.835 MB + 10.961 MB 11s - 11361211 + 11493383 - 2016-12-02 04:58 + 2017-03-20 14:58 @@ -1362,16 +1362,16 @@ Wikivoyage - 14.359 MB + 15.092 MB 15s - 15056660 + 15824613 - 2016-12-02 04:42 + 2017-03-20 14:58 @@ -1390,16 +1390,16 @@ Wikipedia - 2.242 GB + 2.294 GB - 40m 07s + 41m 02s - 2407303667 + 2462875139 - 2016-12-02 09:20 + 2017-03-22 17:05 @@ -1418,16 +1418,16 @@ Wiktionary - 33.063 MB + 33.955 MB - 34s + 35s - 34669201 + 35604232 - 2016-12-02 05:18 + 2017-03-20 14:32 @@ -1446,16 +1446,16 @@ Wikisource - 26.094 MB + 26.868 MB - 27s + 28s - 27361442 + 28172833 - 2016-12-02 04:51 + 2017-03-20 14:32 @@ -1474,16 +1474,16 @@ Wikibooks - 11.422 MB + 11.668 MB - 11s + 12s - 11977183 + 12234365 - 2016-12-02 04:42 + 2017-03-20 14:36 @@ -1502,16 +1502,16 @@ Wikiversity - 1,009.477 KB + 1,014.407 KB 01s - 1033704 + 1038753 - 2016-12-02 05:01 + 2017-03-20 13:49 @@ -1530,16 +1530,16 @@ Wikiquote - 1.181 MB + 1.200 MB 01s - 1238187 + 1257938 - 2016-12-02 05:18 + 2017-03-20 14:23 @@ -1558,16 +1558,16 @@ Wikinews - 7.067 MB + 7.128 MB 07s - 7410114 + 7473893 - 2016-12-02 05:00 + 2017-03-20 13:46 @@ -1586,16 +1586,16 @@ Wikipedia - 1.109 GB + 1.131 GB - 19m 51s + 20m 13s - 1191000326 + 1213887244 - 2016-12-02 09:07 + 2017-03-22 15:12 @@ -1614,16 +1614,16 @@ Wiktionary - 54.225 MB + 56.784 MB - 56s + 59s - 56859438 + 59542857 - 2016-12-02 06:02 + 2017-03-20 15:28 @@ -1642,16 +1642,16 @@ Wikisource - 20.654 MB + 20.787 MB 21s - 21657034 + 21796616 - 2016-12-02 04:26 + 2017-03-20 13:48 @@ -1670,16 +1670,16 @@ Wikibooks - 11.823 MB + 11.968 MB 12s - 12397362 + 12548892 - 2016-12-02 04:50 + 2017-03-20 14:36 @@ -1698,16 +1698,16 @@ Wikiquote - 1.419 MB + 1.430 MB 01s - 1487575 + 1499304 - 2016-12-02 04:25 + 2017-03-20 14:20 @@ -1726,16 +1726,16 @@ Wikinews - 1,017.587 KB + 1,013.488 KB 01s - 1042009 + 1037812 - 2016-12-02 05:18 + 2017-03-20 14:07 @@ -1754,16 +1754,16 @@ Wikivoyage - 4.508 MB + 4.588 MB 04s - 4726609 + 4810655 - 2016-12-02 05:24 + 2017-03-20 14:25 @@ -1782,16 +1782,16 @@ Wikimedia - 2.124 MB + 2.143 MB 02s - 2226746 + 2247222 - 2016-12-02 05:19 + 2017-03-20 14:01 @@ -1810,16 +1810,16 @@ Wikipedia - 1.403 GB + 1.440 GB - 25m 06s + 25m 46s - 1506671259 + 1546268690 - 2016-12-02 08:45 + 2017-03-22 15:24 @@ -1838,16 +1838,16 @@ Wiktionary - 90.926 MB + 94.903 MB - 01m 35s + 01m 39s - 95343190 + 99513059 - 2016-12-02 06:16 + 2017-03-20 15:39 @@ -1866,16 +1866,16 @@ Wikisource - 185.355 MB + 197.487 MB - 03m 14s + 03m 27s - 194358642 + 207079794 - 2016-12-02 05:47 + 2017-03-20 15:18 @@ -1894,16 +1894,16 @@ Wikibooks - 10.885 MB + 11.060 MB 11s - 11413729 + 11596746 - 2016-12-02 04:29 + 2017-03-20 14:34 @@ -1922,16 +1922,16 @@ Wikiquote - 23.997 MB + 24.503 MB 25s - 25162708 + 25693632 - 2016-12-02 04:47 + 2017-03-20 14:40 @@ -1950,16 +1950,16 @@ Wikinews - 11.958 MB + 11.997 MB 12s - 12538520 + 12580028 - 2016-12-02 04:59 + 2017-03-20 14:45 @@ -1978,16 +1978,16 @@ Wikivoyage - 3.307 MB + 3.439 MB 03s - 3467368 + 3606417 - 2016-12-02 04:27 + 2017-03-20 14:41 @@ -2006,16 +2006,16 @@ Wikimedia - 3.504 MB + 3.620 MB 03s - 3674481 + 3795965 - 2016-12-02 04:16 + 2017-03-20 14:03 @@ -2034,16 +2034,16 @@ Wikipedia - 1.222 GB + 1.258 GB - 21m 51s + 22m 30s - 1311908687 + 1350510216 - 2016-12-02 08:59 + 2017-03-22 15:22 @@ -2062,16 +2062,16 @@ Wiktionary - 39.243 MB + 40.164 MB - 41s + 42s - 41149298 + 42114840 - 2016-12-02 05:38 + 2017-03-20 15:18 @@ -2090,16 +2090,16 @@ Wikisource - 52.389 MB + 52.612 MB - 54s + 55s - 54934370 + 55167917 - 2016-12-02 05:05 + 2017-03-20 14:54 @@ -2118,16 +2118,16 @@ Wikibooks - 14.315 MB + 14.555 MB 15s - 15010011 + 15262465 - 2016-12-02 05:26 + 2017-03-20 14:59 @@ -2146,16 +2146,16 @@ Wikiversity - 6.845 MB + 7.043 MB 07s - 7177692 + 7384994 - 2016-12-02 05:25 + 2017-03-20 14:38 @@ -2174,16 +2174,16 @@ Wikiquote - 6.979 MB + 7.108 MB 07s - 7318124 + 7452838 - 2016-12-02 04:52 + 2017-03-20 14:05 @@ -2202,16 +2202,16 @@ Wikinews - 11.490 MB + 11.856 MB 12s - 12047685 + 12431935 - 2016-12-02 05:23 + 2017-03-20 14:36 @@ -2230,16 +2230,16 @@ Wikivoyage - 3.852 MB + 3.928 MB 04s - 4038625 + 4119011 - 2016-12-02 04:31 + 2017-03-20 13:49 @@ -2258,16 +2258,16 @@ Wikipedia - 2.779 GB + 2.861 GB - 49m 43s + 51m 11s - 2983785334 + 3071531440 - 2016-12-02 11:07 + 2017-03-22 19:53 @@ -2286,16 +2286,16 @@ Wiktionary - 139.752 MB + 144.743 MB - 02m 26s + 02m 31s - 146540658 + 151773686 - 2016-12-02 06:57 + 2017-03-20 16:08 @@ -2314,16 +2314,16 @@ Wikisource - 453.379 MB + 461.965 MB - 07m 55s + 08m 04s - 475402117 + 484404922 - 2016-12-02 06:17 + 2017-03-20 15:45 @@ -2342,16 +2342,16 @@ Wikibooks - 9.952 MB + 10.071 MB 10s - 10435133 + 10560225 - 2016-12-02 04:33 + 2017-03-20 14:44 @@ -2370,16 +2370,16 @@ Wikiversity - 7.172 MB + 7.167 MB 07s - 7520437 + 7515345 - 2016-12-02 04:58 + 2017-03-20 14:11 @@ -2398,16 +2398,16 @@ Wikiquote - 22.831 MB + 23.288 MB - 23s + 24s - 23939833 + 24419708 - 2016-12-02 04:54 + 2017-03-20 14:54 @@ -2426,16 +2426,16 @@ Wikinews - 19.942 MB + 20.962 MB - 20s + 21s - 20910655 + 21980350 - 2016-12-02 05:17 + 2017-03-20 15:04 @@ -2454,16 +2454,16 @@ Wikivoyage - 12.736 MB + 13.302 MB 13s - 13354148 + 13947854 - 2016-12-02 04:42 + 2017-03-20 14:48 @@ -2482,16 +2482,16 @@ Wikimedia - 2.719 MB + 2.822 MB 02s - 2850798 + 2959355 - 2016-12-02 04:38 + 2017-03-20 14:12 @@ -2510,16 +2510,16 @@ Wikipedia - 496.916 MB + 524.918 MB - 08m 41s + 09m 10s - 521054504 + 550416918 - 2016-12-02 07:57 + 2017-03-20 18:17 @@ -2538,16 +2538,16 @@ Wiktionary - 8.212 MB + 8.257 MB 08s - 8610825 + 8658397 - 2016-12-02 05:16 + 2017-03-20 15:01 @@ -2566,16 +2566,16 @@ Wikisource - 187.366 MB + 188.008 MB - 03m 16s + 03m 17s - 196467431 + 197140961 - 2016-12-02 05:33 + 2017-03-20 15:07 @@ -2594,16 +2594,16 @@ Wikibooks - 4.862 MB + 4.528 MB - 05s + 04s - 5097767 + 4748295 - 2016-12-02 04:24 + 2017-03-20 14:55 @@ -2622,16 +2622,16 @@ Wikiversity - 2.261 MB + 2.337 MB 02s - 2371042 + 2450486 - 2016-12-02 04:46 + 2017-03-20 13:49 @@ -2650,16 +2650,16 @@ Wikiquote - 2.053 MB + 2.093 MB 02s - 2152655 + 2194332 - 2016-12-02 04:49 + 2017-03-20 13:58 @@ -2678,16 +2678,16 @@ Wikinews - 2.684 MB + 2.981 MB - 02s + 03s - 2814178 + 3125905 - 2016-12-02 05:03 + 2017-03-20 14:17 @@ -2706,16 +2706,16 @@ Wikimedia - 14.312 KB + 14.289 KB 00s - 14656 + 14632 - 2016-12-02 05:17 + 2017-03-20 13:56 @@ -2734,16 +2734,16 @@ Wikipedia - 666.131 MB + 684.418 MB - 11m 38s + 11m 57s - 698489391 + 717664598 - 2016-12-02 07:14 + 2017-03-20 16:28 @@ -2762,16 +2762,16 @@ Wiktionary - 18.010 MB + 19.255 MB - 18s + 20s - 18885329 + 20190756 - 2016-12-02 05:17 + 2017-03-20 15:06 @@ -2790,16 +2790,16 @@ Wikisource - 13.618 MB + 13.707 MB 14s - 14279971 + 14373194 - 2016-12-02 05:06 + 2017-03-20 13:46 @@ -2818,16 +2818,16 @@ Wikibooks - 3.659 MB + 3.742 MB 03s - 3836765 + 3923889 - 2016-12-02 04:30 + 2017-03-20 14:28 @@ -2846,16 +2846,16 @@ Wikiquote - 2.831 MB + 3.296 MB - 02s + 03s - 2969034 + 3456196 - 2016-12-02 04:32 + 2017-03-20 14:19 @@ -2874,16 +2874,16 @@ Wikinews - 2.862 MB + 2.964 MB 03s - 3001282 + 3108004 - 2016-12-02 04:59 + 2017-03-20 13:41 @@ -2902,16 +2902,16 @@ Wikimedia - 357.122 KB + 438.280 KB 00s - 365693 + 448799 - 2016-12-02 04:15 + 2017-03-20 14:16 @@ -2930,16 +2930,16 @@ Wikipedia - 582.567 MB + 601.394 MB - 10m 10s + 10m 30s - 610865310 + 630607814 - 2016-12-02 06:52 + 2017-03-20 16:03 @@ -2958,16 +2958,16 @@ Wiktionary - 20.986 MB + 22.251 MB - 22s + 23s - 22005505 + 23331646 - 2016-12-02 05:08 + 2017-03-20 14:59 @@ -2986,16 +2986,16 @@ Wikisource - 58.783 MB + 59.474 MB - 01m 01s + 01m 02s - 61638908 + 62363151 - 2016-12-02 04:31 + 2017-03-20 14:55 @@ -3014,16 +3014,16 @@ Wikibooks - 2.983 MB + 3.096 MB 03s - 3128386 + 3246544 - 2016-12-02 04:22 + 2017-03-20 14:03 @@ -3042,16 +3042,16 @@ Wikiversity - 5.784 MB + 5.998 MB 06s - 6064737 + 6289120 - 2016-12-02 04:46 + 2017-03-20 14:27 @@ -3070,16 +3070,16 @@ Wikiquote - 3.571 MB + 3.653 MB 03s - 3744318 + 3830238 - 2016-12-02 04:44 + 2017-03-20 14:39 @@ -3098,16 +3098,16 @@ Wikinews - 2.566 MB + 2.764 MB 02s - 2691018 + 2897769 - 2016-12-02 04:57 + 2017-03-20 14:12 @@ -3126,16 +3126,16 @@ Wikipedia - 249.601 MB + 256.865 MB - 04m 21s + 04m 29s - 261725773 + 269342153 - 2016-12-02 06:24 + 2017-03-20 15:39 @@ -3154,16 +3154,16 @@ Wiktionary - 6.720 MB + 6.987 MB 07s - 7046393 + 7326230 - 2016-12-02 04:29 + 2017-03-20 14:27 @@ -3182,16 +3182,16 @@ Wikisource - 12.218 MB + 12.543 MB - 12s + 13s - 12811737 + 13152668 - 2016-12-02 04:34 + 2017-03-20 14:30 @@ -3210,16 +3210,16 @@ Wikibooks - 3.215 MB + 3.228 MB 03s - 3371640 + 3384680 - 2016-12-02 04:27 + 2017-03-20 13:39 @@ -3238,16 +3238,16 @@ Wikiquote - 667.896 KB + 672.345 KB 00s - 683925 + 688481 - 2016-12-02 05:24 + 2017-03-20 13:49 @@ -3266,16 +3266,16 @@ Wikipedia - 193.506 MB + 196.757 MB - 03m 22s + 03m 26s - 202906102 + 206314586 - 2016-12-02 06:19 + 2017-03-20 15:37 @@ -3294,16 +3294,16 @@ Wiktionary - 9.944 MB + 14.733 MB - 10s + 15s - 10426537 + 15448149 - 2016-12-02 04:49 + 2017-03-20 14:51 @@ -3322,16 +3322,16 @@ Wikisource - 8.295 MB + 8.324 MB 08s - 8698114 + 8728706 - 2016-12-02 05:25 + 2017-03-20 15:02 @@ -3350,16 +3350,16 @@ Wikibooks - 1.191 MB + 1.213 MB 01s - 1248356 + 1272390 - 2016-12-02 04:20 + 2017-03-20 14:13 @@ -3378,16 +3378,16 @@ Wikiquote - 815.617 KB + 850.202 KB 00s - 835192 + 870607 - 2016-12-02 04:34 + 2017-03-20 13:58 @@ -3406,16 +3406,16 @@ Wikinews - 974.201 KB + 986.479 KB - 00s + 01s - 997582 + 1010155 - 2016-12-02 04:29 + 2017-03-20 14:48 @@ -3434,16 +3434,16 @@ Wikipedia - 465.611 MB + 486.459 MB - 08m 08s + 08m 30s - 488228594 + 510089133 - 2016-12-02 08:02 + 2017-03-20 18:08 @@ -3462,16 +3462,16 @@ Wiktionary - 11.802 MB + 11.866 MB 12s - 12375397 + 12442364 - 2016-12-02 05:19 + 2017-03-20 15:03 @@ -3490,16 +3490,16 @@ Wikisource - 25.280 MB + 25.773 MB - 26s + 27s - 26507555 + 27024782 - 2016-12-02 05:06 + 2017-03-20 14:19 @@ -3518,16 +3518,16 @@ Wikibooks - 4.221 MB + 4.425 MB 04s - 4425796 + 4639638 - 2016-12-02 04:48 + 2017-03-20 13:41 @@ -3546,16 +3546,16 @@ Wikiquote - 5.365 MB + 6.099 MB - 05s + 06s - 5625237 + 6395495 - 2016-12-02 05:20 + 2017-03-20 15:05 @@ -3574,16 +3574,16 @@ Wikinews - 2.276 MB + 2.280 MB 02s - 2386065 + 2390787 - 2016-12-02 04:19 + 2017-03-20 14:42 @@ -3602,16 +3602,16 @@ Wikivoyage - 3.294 MB + 3.357 MB 03s - 3453606 + 3520261 - 2016-12-02 05:05 + 2017-03-20 14:32 @@ -3630,16 +3630,16 @@ Wikipedia - 511.971 MB + 524.171 MB - 08m 56s + 09m 09s - 536840625 + 549633006 - 2016-12-02 06:47 + 2017-03-20 15:59 @@ -3658,16 +3658,16 @@ Wiktionary - 45.760 MB + 46.776 MB - 47s + 49s - 47982889 + 49048700 - 2016-12-02 05:35 + 2017-03-20 15:26 @@ -3686,16 +3686,16 @@ Wikisource - 16.826 MB + 16.944 MB 17s - 17643693 + 17766979 - 2016-12-02 05:05 + 2017-03-20 14:46 @@ -3714,16 +3714,16 @@ Wikibooks - 4.813 MB + 4.978 MB 05s - 5046795 + 5219384 - 2016-12-02 05:01 + 2017-03-20 14:43 @@ -3742,16 +3742,16 @@ Wikiversity - 3.518 MB + 3.666 MB 03s - 3688396 + 3844354 - 2016-12-02 04:28 + 2017-03-20 14:16 @@ -3770,16 +3770,16 @@ Wikiquote - 1.579 MB + 2.102 MB - 01s + 02s - 1655248 + 2203589 - 2016-12-02 04:24 + 2017-03-20 14:00 @@ -3798,16 +3798,16 @@ Wikinews - 1.540 MB + 1.543 MB 01s - 1614780 + 1617595 - 2016-12-02 04:38 + 2017-03-20 14:35 @@ -3826,16 +3826,16 @@ Wikimedia - 247.613 KB + 252.041 KB 00s - 253556 + 258090 - 2016-12-02 04:14 + 2017-03-20 14:37 @@ -3854,16 +3854,16 @@ Wikipedia - 641.350 MB + 658.292 MB - 11m 12s + 11m 30s - 672504090 + 690268914 - 2016-12-02 07:08 + 2017-03-20 16:09 @@ -3882,16 +3882,16 @@ Wiktionary - 40.777 MB + 41.651 MB - 42s + 43s - 42757505 + 43674201 - 2016-12-02 05:41 + 2017-03-20 15:15 @@ -3910,16 +3910,16 @@ Wikisource - 28.660 MB + 28.797 MB 30s - 30052307 + 30195983 - 2016-12-02 05:06 + 2017-03-20 14:15 @@ -3938,16 +3938,16 @@ Wikibooks - 17.604 MB + 18.033 MB 18s - 18458702 + 18908500 - 2016-12-02 04:49 + 2017-03-20 14:02 @@ -3966,16 +3966,16 @@ Wikiquote - 2.807 MB + 2.817 MB 02s - 2943438 + 2954323 - 2016-12-02 04:40 + 2017-03-20 13:46 @@ -3994,16 +3994,16 @@ Wikinews - 1.151 MB + 1.150 MB 01s - 1207097 + 1206189 - 2016-12-02 05:18 + 2017-03-20 13:59 @@ -4022,16 +4022,16 @@ Wikipedia - 358.919 MB + 378.515 MB - 06m 16s + 06m 36s - 376353489 + 396902150 - 2016-12-02 06:45 + 2017-03-20 16:01 @@ -4050,16 +4050,16 @@ Wiktionary - 19.384 MB + 19.524 MB 20s - 20325725 + 20472622 - 2016-12-02 05:24 + 2017-03-20 15:09 @@ -4078,16 +4078,16 @@ Wikisource - 9.866 MB + 9.874 MB 10s - 10344871 + 10353581 - 2016-12-02 04:55 + 2017-03-20 13:42 @@ -4106,16 +4106,16 @@ Wikibooks - 3.325 MB + 3.338 MB 03s - 3486887 + 3500399 - 2016-12-02 04:52 + 2017-03-20 14:21 @@ -4134,16 +4134,16 @@ Wikiquote - 830.646 KB + 839.023 KB 00s - 850582 + 859160 - 2016-12-02 04:43 + 2017-03-20 14:16 @@ -4162,16 +4162,16 @@ Wikipedia - 95.463 MB + 96.230 MB 01m 40s - 100100284 + 100904009 - 2016-12-02 06:05 + 2017-03-20 15:28 @@ -4190,16 +4190,16 @@ Wiktionary - 1.176 MB + 1.195 MB 01s - 1233045 + 1252776 - 2016-12-02 04:54 + 2017-03-20 14:39 @@ -4218,16 +4218,16 @@ Wikibooks - 546.313 KB + 567.439 KB 00s - 559425 + 581058 - 2016-12-02 04:38 + 2017-03-20 14:40 @@ -4246,16 +4246,16 @@ Wikiquote - 13.402 KB + 13.403 KB 00s - 13724 + 13725 - 2016-12-02 04:33 + 2017-03-20 14:37 @@ -4274,16 +4274,16 @@ Wikipedia - 451.276 MB + 466.326 MB - 07m 53s + 08m 08s - 473196956 + 488977802 - 2016-12-02 07:12 + 2017-03-20 16:10 @@ -4302,16 +4302,16 @@ Wiktionary - 36.115 MB + 36.788 MB - 37s + 38s - 37869667 + 38574516 - 2016-12-02 05:41 + 2017-03-20 15:21 @@ -4330,16 +4330,16 @@ Wikisource - 96.463 MB + 98.124 MB - 01m 41s + 01m 42s - 101149118 + 102890128 - 2016-12-02 05:00 + 2017-03-20 14:58 @@ -4358,16 +4358,16 @@ Wikibooks - 3.284 MB + 3.344 MB 03s - 3443902 + 3506774 - 2016-12-02 04:47 + 2017-03-20 14:50 @@ -4386,16 +4386,16 @@ Wikiversity - 898.483 KB + 941.033 KB 00s - 920047 + 963618 - 2016-12-02 04:37 + 2017-03-20 14:44 @@ -4414,16 +4414,16 @@ Wikiquote - 971.788 KB + 996.493 KB - 00s + 01s - 995111 + 1020409 - 2016-12-02 04:38 + 2017-03-20 14:16 @@ -4442,16 +4442,16 @@ Wikinews - 665.089 KB + 694.793 KB 00s - 681051 + 711468 - 2016-12-02 04:28 + 2017-03-20 14:37 @@ -4470,16 +4470,16 @@ Wikipedia - 140.504 MB + 142.284 MB - 02m 27s + 02m 29s - 147329211 + 149196057 - 2016-12-02 05:50 + 2017-03-20 15:30 @@ -4498,16 +4498,16 @@ Wiktionary - 37.499 MB + 37.577 MB 39s - 39321073 + 39402404 - 2016-12-02 05:59 + 2017-03-20 15:27 @@ -4532,10 +4532,10 @@ 01s - 1940128 + 1939836 - 2016-12-02 04:30 + 2017-03-20 14:25 @@ -4554,16 +4554,16 @@ Wikibooks - 1.042 MB + 1.043 MB 01s - 1092158 + 1093621 - 2016-12-02 04:44 + 2017-03-20 13:48 @@ -4582,16 +4582,16 @@ Wikiquote - 1.256 MB + 1.280 MB 01s - 1316884 + 1341997 - 2016-12-02 04:18 + 2017-03-20 14:20 @@ -4610,16 +4610,16 @@ Wikipedia - 484.053 MB + 495.750 MB - 08m 27s + 08m 39s - 507566198 + 519831690 - 2016-12-02 06:54 + 2017-03-20 16:09 @@ -4638,16 +4638,16 @@ Wiktionary - 12.409 MB + 12.599 MB 13s - 13011547 + 13210770 - 2016-12-02 05:11 + 2017-03-20 15:03 @@ -4666,16 +4666,16 @@ Wikisource - 35.263 MB + 35.336 MB - 36s + 37s - 36975978 + 37052302 - 2016-12-02 04:47 + 2017-03-20 13:57 @@ -4694,16 +4694,16 @@ Wikibooks - 2.322 MB + 2.321 MB 02s - 2435028 + 2433509 - 2016-12-02 04:59 + 2017-03-20 14:18 @@ -4722,16 +4722,16 @@ Wikiquote - 795.361 KB + 835.887 KB 00s - 814450 + 855948 - 2016-12-02 04:40 + 2017-03-20 13:43 @@ -4750,16 +4750,16 @@ Wikinews - 847.859 KB + 851.969 KB 00s - 868208 + 872416 - 2016-12-02 04:45 + 2017-03-20 14:19 @@ -4778,16 +4778,16 @@ Wikimedia - 717.983 KB + 779.529 KB 00s - 735215 + 798238 - 2016-12-02 05:02 + 2017-03-20 13:49 @@ -4806,16 +4806,16 @@ Wikipedia - 349.590 MB + 354.920 MB - 06m 06s + 06m 12s - 366571951 + 372161100 - 2016-12-02 07:03 + 2017-03-20 16:17 @@ -4834,16 +4834,16 @@ Wiktionary - 22.482 MB + 22.592 MB 23s - 23574605 + 23688950 - 2016-12-02 05:12 + 2017-03-20 15:04 @@ -4862,16 +4862,16 @@ Wikisource - 37.885 MB + 37.928 MB 39s - 39725704 + 39770442 - 2016-12-02 04:41 + 2017-03-20 14:03 @@ -4890,16 +4890,16 @@ Wikibooks - 1.776 MB + 1.817 MB 01s - 1862475 + 1905716 - 2016-12-02 04:57 + 2017-03-20 14:07 @@ -4918,16 +4918,16 @@ Wikiquote - 735.604 KB + 751.358 KB 00s - 753259 + 769391 - 2016-12-02 04:55 + 2017-03-20 13:53 @@ -4946,16 +4946,16 @@ Wikinews - 1.494 MB + 1.488 MB 01s - 1566259 + 1560757 - 2016-12-02 05:02 + 2017-03-20 13:56 @@ -4974,16 +4974,16 @@ Wikivoyage - 901.701 KB + 893.780 KB 00s - 923342 + 915231 - 2016-12-02 04:54 + 2017-03-20 13:42 @@ -5002,16 +5002,16 @@ Wikipedia - 176.820 MB + 180.453 MB - 03m 05s + 03m 09s - 185409107 + 189218272 - 2016-12-02 06:11 + 2017-03-20 15:31 @@ -5030,16 +5030,16 @@ Wiktionary - 2.462 MB + 2.740 MB 02s - 2582012 + 2872910 - 2016-12-02 04:47 + 2017-03-20 13:45 @@ -5058,16 +5058,16 @@ Wikisource - 1.045 MB + 1.041 MB 01s - 1096116 + 1091870 - 2016-12-02 04:44 + 2017-03-20 14:29 @@ -5086,16 +5086,16 @@ Wikibooks - 1.665 MB + 1.530 MB 01s - 1745843 + 1604495 - 2016-12-02 05:19 + 2017-03-20 14:10 @@ -5114,16 +5114,16 @@ Wikiquote - 1.954 MB + 1.962 MB 02s - 2048615 + 2056999 - 2016-12-02 04:31 + 2017-03-20 14:24 @@ -5142,16 +5142,16 @@ Wikipedia - 320.026 MB + 332.699 MB - 05m 35s + 05m 48s - 335571986 + 348859742 - 2016-12-02 06:44 + 2017-03-20 16:10 @@ -5170,16 +5170,16 @@ Wiktionary - 36.181 MB + 36.696 MB - 37s + 38s - 37938284 + 38478137 - 2016-12-02 05:18 + 2017-03-20 15:13 @@ -5198,16 +5198,16 @@ Wikisource - 29.289 MB + 29.796 MB - 30s + 31s - 30711375 + 31242899 - 2016-12-02 04:42 + 2017-03-20 14:15 @@ -5226,16 +5226,16 @@ Wikibooks - 1.341 MB + 1.348 MB 01s - 1405755 + 1413622 - 2016-12-02 04:51 + 2017-03-20 13:57 @@ -5254,16 +5254,16 @@ Wikiquote - 792.468 KB + 792.823 KB 00s - 811487 + 811851 - 2016-12-02 05:14 + 2017-03-20 14:48 @@ -5282,16 +5282,16 @@ Wikinews - 30.446 MB + 30.495 MB 31s - 31924642 + 31976142 - 2016-12-02 05:31 + 2017-03-20 15:13 @@ -5310,16 +5310,16 @@ Wikipedia - 1.300 GB + 1.317 GB - 23m 16s + 23m 33s - 1396348987 + 1413787441 - 2016-12-02 11:29 + 2017-03-20 23:16 @@ -5338,16 +5338,16 @@ Wiktionary - 45.928 MB + 47.480 MB - 48s + 49s - 48159300 + 49786080 - 2016-12-02 05:58 + 2017-03-20 15:31 @@ -5366,16 +5366,16 @@ Wikisource - 49.521 MB + 50.257 MB - 51s + 52s - 51926813 + 52698402 - 2016-12-02 04:55 + 2017-03-20 14:57 @@ -5394,16 +5394,16 @@ Wikibooks - 3.123 MB + 3.126 MB 03s - 3274253 + 3278275 - 2016-12-02 04:39 + 2017-03-20 14:46 @@ -5422,16 +5422,16 @@ Wikiversity - 929.307 KB + 971.282 KB 00s - 951610 + 994593 - 2016-12-02 05:09 + 2017-03-20 13:55 @@ -5450,16 +5450,16 @@ Wikiquote - 1.062 MB + 1.072 MB 01s - 1113297 + 1124151 - 2016-12-02 04:52 + 2017-03-20 13:41 @@ -5478,16 +5478,16 @@ Wikinews - 1.900 MB + 1.902 MB 01s - 1991816 + 1994367 - 2016-12-02 05:17 + 2017-03-20 14:13 @@ -5506,16 +5506,16 @@ Wikivoyage - 2.026 MB + 2.031 MB 02s - 2124144 + 2129921 - 2016-12-02 05:00 + 2017-03-20 14:06 @@ -5534,16 +5534,16 @@ Wikipedia - 389.582 MB + 402.996 MB - 06m 48s + 07m 02s - 408506383 + 422572288 - 2016-12-02 06:49 + 2017-03-20 16:01 @@ -5562,16 +5562,16 @@ Wiktionary - 32.812 MB + 33.247 MB 34s - 34405727 + 34862190 - 2016-12-02 05:44 + 2017-03-20 15:15 @@ -5590,16 +5590,16 @@ Wikisource - 14.560 MB + 14.597 MB 15s - 15267369 + 15305875 - 2016-12-02 05:23 + 2017-03-20 14:18 @@ -5618,16 +5618,16 @@ Wikibooks - 2.771 MB + 2.805 MB 02s - 2905443 + 2941594 - 2016-12-02 05:21 + 2017-03-20 14:16 @@ -5646,16 +5646,16 @@ Wikiquote - 4.367 MB + 4.468 MB 04s - 4578894 + 4685077 - 2016-12-02 04:51 + 2017-03-20 13:45 @@ -5674,16 +5674,16 @@ Wikinews - 1.512 MB + 1.530 MB 01s - 1585846 + 1604068 - 2016-12-02 05:22 + 2017-03-20 14:19 @@ -5702,16 +5702,16 @@ Wikimedia - 82.051 KB + 78.612 KB 00s - 84020 + 80499 - 2016-12-02 05:09 + 2017-03-20 13:39 @@ -5730,16 +5730,16 @@ Wikipedia - 908.057 MB + 951.829 MB - 15m 52s + 16m 38s - 952166628 + 998065070 - 2016-12-02 07:40 + 2017-03-20 17:13 @@ -5758,16 +5758,16 @@ Wiktionary - 6.806 MB + 6.841 MB 07s - 7136488 + 7173348 - 2016-12-02 04:55 + 2017-03-20 14:25 @@ -5786,16 +5786,16 @@ Wikisource - 18.449 MB + 20.618 MB - 19s + 21s - 19344659 + 21619313 - 2016-12-02 04:50 + 2017-03-20 13:47 @@ -5814,16 +5814,16 @@ Wikibooks - 7.090 MB + 1.885 MB - 07s + 01s - 7434766 + 1976569 - 2016-12-02 04:14 + 2017-03-20 14:35 @@ -5842,16 +5842,16 @@ Wikiquote - 4.472 MB + 4.730 MB 04s - 4689494 + 4960066 - 2016-12-02 04:39 + 2017-03-20 13:45 @@ -5870,16 +5870,16 @@ Wikinews - 2.077 MB + 2.106 MB 02s - 2178267 + 2208213 - 2016-12-02 04:39 + 2017-03-20 14:15 @@ -5898,16 +5898,16 @@ Wikivoyage - 1.071 MB + 1.091 MB 01s - 1123545 + 1144382 - 2016-12-02 05:14 + 2017-03-20 13:42 @@ -5926,16 +5926,16 @@ Wikipedia - 446.814 MB + 459.772 MB - 07m 48s + 08m 02s - 468518595 + 482105997 - 2016-12-02 07:46 + 2017-03-20 17:09 @@ -5954,16 +5954,16 @@ Wiktionary - 29.821 MB + 29.877 MB 31s - 31269582 + 31328071 - 2016-12-02 05:33 + 2017-03-20 15:08 @@ -5982,16 +5982,16 @@ Wikisource - 15.565 MB + 15.571 MB 16s - 16321330 + 16327704 - 2016-12-02 04:18 + 2017-03-20 14:42 @@ -6010,16 +6010,16 @@ Wikibooks - 3.003 MB + 2.551 MB - 03s + 02s - 3149113 + 2675126 - 2016-12-02 04:49 + 2017-03-20 13:51 @@ -6038,16 +6038,16 @@ Wikiquote - 1.770 MB + 1.803 MB 01s - 1855481 + 1890190 - 2016-12-02 04:48 + 2017-03-20 14:07 @@ -6066,16 +6066,16 @@ Wikivoyage - 2.772 MB + 2.785 MB 02s - 2906594 + 2920764 - 2016-12-02 05:18 + 2017-03-20 14:47 @@ -6094,16 +6094,16 @@ Wikipedia - 1.248 GB + 1.291 GB - 22m 19s + 23m 06s - 1339871716 + 1386641782 - 2016-12-02 09:17 + 2017-03-22 15:26 @@ -6122,16 +6122,16 @@ Wiktionary - 92.677 MB + 93.101 MB 01m 37s - 97179238 + 97623793 - 2016-12-02 06:32 + 2017-03-20 15:49 @@ -6150,16 +6150,16 @@ Wikisource - 1.202 GB + 1.214 GB - 21m 31s + 21m 43s - 1291004236 + 1303287205 - 2016-12-02 05:45 + 2017-03-20 15:33 @@ -6178,16 +6178,16 @@ Wikibooks - 5.187 MB + 5.915 MB - 05s + 06s - 5438478 + 6202030 - 2016-12-02 05:04 + 2017-03-20 14:30 @@ -6206,16 +6206,16 @@ Wikiquote - 3.542 MB + 3.628 MB 03s - 3714283 + 3803760 - 2016-12-02 04:33 + 2017-03-20 14:26 @@ -6234,16 +6234,16 @@ Wikinews - 5.539 MB + 5.696 MB 05s - 5808257 + 5972842 - 2016-12-02 04:48 + 2017-03-20 14:33 @@ -6262,16 +6262,16 @@ Wikivoyage - 5.127 MB + 5.385 MB 05s - 5375779 + 5646789 - 2016-12-02 05:05 + 2017-03-20 14:22 @@ -6290,16 +6290,16 @@ Wikipedia - 262.747 MB + 269.978 MB - 04m 35s + 04m 43s - 275510691 + 283092276 - 2016-12-02 06:35 + 2017-03-20 15:50 @@ -6318,16 +6318,16 @@ Wiktionary - 32.528 MB + 32.593 MB 34s - 34108396 + 34175729 - 2016-12-02 06:40 + 2017-03-20 15:45 @@ -6346,16 +6346,16 @@ Wikisource - 3.576 MB + 4.020 MB - 03s + 04s - 3749527 + 4215106 - 2016-12-02 04:59 + 2017-03-20 14:13 @@ -6374,16 +6374,16 @@ Wikibooks - 931.468 KB + 936.104 KB 00s - 953823 + 958571 - 2016-12-02 05:20 + 2017-03-20 14:26 @@ -6402,16 +6402,16 @@ Wikiquote - 4.620 MB + 4.637 MB 04s - 4844199 + 4861778 - 2016-12-02 04:48 + 2017-03-20 13:54 @@ -6430,16 +6430,16 @@ Wikinews - 1.487 MB + 1.532 MB 01s - 1559393 + 1606133 - 2016-12-02 05:24 + 2017-03-20 13:50 @@ -6458,16 +6458,16 @@ Wikipedia - 236.940 MB + 246.493 MB - 04m 08s + 04m 18s - 248450012 + 258466386 - 2016-12-02 06:15 + 2017-03-20 15:33 @@ -6486,16 +6486,16 @@ Wiktionary - 38.649 MB + 39.246 MB - 40s + 41s - 40526728 + 41152253 - 2016-12-02 05:56 + 2017-03-20 15:25 @@ -6514,16 +6514,16 @@ Wikisource - 37.611 MB + 37.806 MB 39s - 39438130 + 39642640 - 2016-12-02 05:01 + 2017-03-20 14:46 @@ -6542,16 +6542,16 @@ Wikibooks - 3.654 MB + 3.865 MB - 03s + 04s - 3831338 + 4052740 - 2016-12-02 04:14 + 2017-03-20 14:41 @@ -6570,16 +6570,16 @@ Wikiversity - 1.211 MB + 1.243 MB 01s - 1269428 + 1303892 - 2016-12-02 04:23 + 2017-03-20 14:50 @@ -6598,16 +6598,16 @@ Wikiquote - 1.448 MB + 1.453 MB 01s - 1518629 + 1523230 - 2016-12-02 04:47 + 2017-03-20 13:52 @@ -6626,16 +6626,16 @@ Wikinews - 2.010 MB + 2.050 MB 02s - 2107158 + 2149702 - 2016-12-02 04:31 + 2017-03-20 13:47 @@ -6654,16 +6654,16 @@ Wikivoyage - 1.558 MB + 1.579 MB 01s - 1633195 + 1655823 - 2016-12-02 04:27 + 2017-03-20 14:30 @@ -6682,16 +6682,16 @@ Wikipedia - 141.239 MB + 145.959 MB - 02m 28s + 02m 33s - 148099333 + 153049561 - 2016-12-02 06:01 + 2017-03-20 15:23 @@ -6710,16 +6710,16 @@ Wiktionary - 15.612 MB + 15.825 MB 16s - 16369932 + 16594202 - 2016-12-02 05:12 + 2017-03-20 15:03 @@ -6738,16 +6738,16 @@ Wikisource - 8.809 MB + 9.761 MB - 09s + 10s - 9236397 + 10235102 - 2016-12-02 04:42 + 2017-03-20 14:22 @@ -6766,16 +6766,16 @@ Wikibooks - 348.847 KB + 357.100 KB 00s - 357219 + 365670 - 2016-12-02 05:21 + 2017-03-20 14:00 @@ -6794,16 +6794,16 @@ Wikiquote - 375.083 KB + 380.888 KB 00s - 384085 + 390029 - 2016-12-02 04:18 + 2017-03-20 13:52 @@ -6822,16 +6822,16 @@ Wikimedia - 112.498 KB + 112.920 KB 00s - 115198 + 115630 - 2016-12-02 05:22 + 2017-03-20 14:43 @@ -6850,16 +6850,16 @@ Wikipedia - 141.571 MB + 146.779 MB - 02m 28s + 02m 33s - 148447462 + 153908698 - 2016-12-02 06:26 + 2017-03-20 15:40 @@ -6878,16 +6878,16 @@ Wiktionary - 7.037 MB + 7.119 MB 07s - 7378530 + 7464616 - 2016-12-02 04:46 + 2017-03-20 13:56 @@ -6906,16 +6906,16 @@ Wikibooks - 2.183 MB + 2.164 MB 02s - 2289280 + 2269414 - 2016-12-02 04:29 + 2017-03-20 14:18 @@ -6934,16 +6934,16 @@ Wikiquote - 279.502 KB + 278.746 KB 00s - 286210 + 285436 - 2016-12-02 04:44 + 2017-03-20 14:46 @@ -6962,16 +6962,16 @@ Wikipedia - 167.936 MB + 174.174 MB - 02m 56s + 03m 02s - 176093769 + 182634614 - 2016-12-02 06:05 + 2017-03-20 15:28 @@ -6990,16 +6990,16 @@ Wiktionary - 7.674 MB + 7.998 MB 08s - 8046346 + 8386855 - 2016-12-02 04:43 + 2017-03-20 14:29 @@ -7018,16 +7018,16 @@ Wikisource - 1.763 MB + 1.861 MB 01s - 1848787 + 1951918 - 2016-12-02 04:35 + 2017-03-20 14:04 @@ -7046,16 +7046,16 @@ Wikibooks - 1.236 MB + 1.240 MB 01s - 1295564 + 1300431 - 2016-12-02 04:24 + 2017-03-20 14:33 @@ -7074,16 +7074,16 @@ Wikiquote - 867.510 KB + 875.188 KB 00s - 888330 + 896193 - 2016-12-02 04:45 + 2017-03-20 14:52 @@ -7102,16 +7102,16 @@ Wikipedia - 438.491 MB + 452.506 MB - 07m 39s + 07m 54s - 459791305 + 474487455 - 2016-12-02 06:53 + 2017-03-20 16:06 @@ -7130,16 +7130,16 @@ Wiktionary - 6.764 MB + 6.981 MB 07s - 7092223 + 7320443 - 2016-12-02 04:46 + 2017-03-20 14:20 @@ -7158,16 +7158,16 @@ Wikisource - 173.724 MB + 179.267 MB - 03m 02s + 03m 07s - 182162608 + 187974926 - 2016-12-02 05:50 + 2017-03-20 15:23 @@ -7186,16 +7186,16 @@ Wikibooks - 7.057 MB + 7.102 MB 07s - 7399764 + 7446912 - 2016-12-02 04:47 + 2017-03-20 13:55 @@ -7214,16 +7214,16 @@ Wikiquote - 4.843 MB + 4.949 MB 05s - 5077764 + 5189125 - 2016-12-02 05:00 + 2017-03-20 14:12 @@ -7242,16 +7242,16 @@ Wikinews - 1.210 MB + 1.215 MB 01s - 1269110 + 1274058 - 2016-12-02 04:28 + 2017-03-20 14:25 @@ -7270,16 +7270,16 @@ Wikivoyage - 4.379 MB + 4.641 MB 04s - 4592170 + 4865992 - 2016-12-02 04:30 + 2017-03-20 14:05 @@ -7298,16 +7298,16 @@ Wikipedia - 201.114 MB + 204.007 MB - 03m 30s + 03m 33s - 210883692 + 213916570 - 2016-12-02 06:05 + 2017-03-20 15:27 @@ -7326,16 +7326,16 @@ Wiktionary - 5.353 MB + 5.426 MB 05s - 5613274 + 5690004 - 2016-12-02 04:57 + 2017-03-20 14:21 @@ -7354,16 +7354,16 @@ Wikisource - 20.120 MB + 20.354 MB 21s - 21097658 + 21342599 - 2016-12-02 05:02 + 2017-03-20 14:24 @@ -7382,16 +7382,16 @@ Wikibooks - 1,021.393 KB + 1.115 MB 01s - 1045906 + 1169057 - 2016-12-02 04:47 + 2017-03-20 14:18 @@ -7410,16 +7410,16 @@ Wikiquote - 1.148 MB + 1.177 MB 01s - 1203422 + 1234156 - 2016-12-02 04:34 + 2017-03-20 13:55 @@ -7438,16 +7438,16 @@ Wikipedia - 148.759 MB + 152.517 MB - 02m 35s + 02m 39s - 155984847 + 159925731 - 2016-12-02 06:17 + 2017-03-20 15:31 @@ -7466,16 +7466,16 @@ Wiktionary - 3.213 MB + 3.397 MB 03s - 3369322 + 3561522 - 2016-12-02 04:14 + 2017-03-20 14:01 @@ -7494,16 +7494,16 @@ Wikibooks - 783.558 KB + 787.448 KB 00s - 802363 + 806347 - 2016-12-02 04:42 + 2017-03-20 14:15 @@ -7522,16 +7522,16 @@ Wikipedia - 97.141 MB + 99.113 MB - 01m 41s + 01m 43s - 101859937 + 103926996 - 2016-12-02 05:52 + 2017-03-20 15:23 @@ -7550,16 +7550,16 @@ Wiktionary - 1.379 MB + 1.387 MB 01s - 1445727 + 1454422 - 2016-12-02 04:28 + 2017-03-20 13:46 @@ -7578,16 +7578,16 @@ Wikiquote - 556.893 KB + 560.921 KB 00s - 570258 + 574383 - 2016-12-02 04:45 + 2017-03-20 14:24 @@ -7606,16 +7606,16 @@ Wikipedia - 324.941 MB + 328.162 MB - 05m 40s + 05m 44s - 340725277 + 344102680 - 2016-12-02 08:46 + 2017-03-20 22:42 @@ -7634,16 +7634,16 @@ Wiktionary - 56.435 MB + 56.573 MB 59s - 59175889 + 59320633 - 2016-12-02 06:11 + 2017-03-20 15:37 @@ -7662,16 +7662,16 @@ Wikipedia - 116.547 MB + 118.948 MB - 02m 02s + 02m 04s - 122208280 + 124726145 - 2016-12-02 05:47 + 2017-03-20 15:23 @@ -7690,16 +7690,16 @@ Wiktionary - 5.108 MB + 5.134 MB 05s - 5355843 + 5383046 - 2016-12-02 04:52 + 2017-03-20 14:28 @@ -7718,16 +7718,16 @@ Wikibooks - 402.600 KB + 389.732 KB 00s - 412262 + 399086 - 2016-12-02 04:46 + 2017-03-20 13:47 @@ -7746,16 +7746,16 @@ Wikiquote - 1.349 MB + 1.336 MB 01s - 1414613 + 1401025 - 2016-12-02 04:54 + 2017-03-20 14:01 @@ -7774,16 +7774,16 @@ Wikipedia - 160.275 MB + 163.575 MB - 02m 48s + 02m 51s - 168060339 + 171521058 - 2016-12-02 06:02 + 2017-03-20 15:28 @@ -7802,16 +7802,16 @@ Wiktionary - 2.159 MB + 2.182 MB 02s - 2263908 + 2287590 - 2016-12-02 04:24 + 2017-03-20 13:43 @@ -7830,16 +7830,16 @@ Wikisource - 87.155 MB + 88.165 MB - 01m 31s + 01m 32s - 91388302 + 92447823 - 2016-12-02 04:53 + 2017-03-20 14:56 @@ -7858,16 +7858,16 @@ Wikibooks - 1.269 MB + 1.259 MB 01s - 1330136 + 1320082 - 2016-12-02 05:15 + 2017-03-20 14:08 @@ -7886,16 +7886,16 @@ Wikiversity - 2.712 MB + 2.796 MB 02s - 2843740 + 2932281 - 2016-12-02 05:19 + 2017-03-20 14:31 @@ -7914,16 +7914,16 @@ Wikiquote - 999.819 KB + 1.035 MB 01s - 1023815 + 1085081 - 2016-12-02 04:52 + 2017-03-20 13:45 @@ -7942,16 +7942,16 @@ Wikipedia - 194.611 MB + 199.746 MB - 03m 24s + 03m 29s - 204064501 + 209448813 - 2016-12-02 05:59 + 2017-03-20 15:36 @@ -7970,16 +7970,16 @@ Wiktionary - 15.152 MB + 15.503 MB - 15s + 16s - 15888237 + 16255966 - 2016-12-02 05:12 + 2017-03-20 15:00 @@ -7998,16 +7998,16 @@ Wikisource - 28.815 MB + 32.606 MB - 30s + 34s - 30214823 + 34190095 - 2016-12-02 04:54 + 2017-03-20 14:36 @@ -8026,16 +8026,16 @@ Wikibooks - 2.115 MB + 2.385 MB 02s - 2217780 + 2500569 - 2016-12-02 04:55 + 2017-03-20 13:55 @@ -8054,16 +8054,16 @@ Wikiquote - 1.357 MB + 1.465 MB 01s - 1422884 + 1536201 - 2016-12-02 05:14 + 2017-03-20 14:03 @@ -8082,16 +8082,16 @@ Wikinews - 241.141 KB + 237.262 KB 00s - 246928 + 242956 - 2016-12-02 05:09 + 2017-03-20 13:51 @@ -8110,16 +8110,16 @@ Wikipedia - 18.631 MB + 18.618 MB 19s - 19535871 + 19522188 - 2016-12-02 05:33 + 2017-03-20 15:17 @@ -8138,16 +8138,16 @@ Wiktionary - 1.951 MB + 1.949 MB 02s - 2045674 + 2043478 - 2016-12-02 04:34 + 2017-03-20 13:58 @@ -8166,16 +8166,16 @@ Wikibooks - 160.802 KB + 160.670 KB 00s - 164661 + 164526 - 2016-12-02 05:11 + 2017-03-20 14:33 @@ -8194,16 +8194,16 @@ Wikiquote - 4.965 KB + 4.966 KB 00s - 5084 + 5085 - 2016-12-02 05:10 + 2017-03-20 14:08 @@ -8222,16 +8222,16 @@ Wikipedia - 103.633 MB + 106.665 MB - 01m 48s + 01m 51s - 108667127 + 111845979 - 2016-12-02 06:01 + 2017-03-20 15:25 @@ -8250,16 +8250,16 @@ Wiktionary - 30.079 MB + 30.966 MB - 31s + 32s - 31540333 + 32469778 - 2016-12-02 05:12 + 2017-03-20 14:41 @@ -8278,16 +8278,16 @@ Wikibooks - 2.648 MB + 3.128 MB - 02s + 03s - 2776940 + 3279946 - 2016-12-02 04:33 + 2017-03-20 13:51 @@ -8306,16 +8306,16 @@ Wikiquote - 990.756 KB + 1,005.738 KB 01s - 1014534 + 1029876 - 2016-12-02 04:35 + 2017-03-20 15:04 @@ -8334,16 +8334,16 @@ Wikipedia - 6.111 MB + 6.201 MB 06s - 6407953 + 6502072 - 2016-12-02 04:34 + 2017-03-20 14:48 @@ -8362,16 +8362,16 @@ Wiktionary - 7.122 MB + 7.126 MB 07s - 7468194 + 7471975 - 2016-12-02 04:56 + 2017-03-20 14:04 @@ -8390,16 +8390,16 @@ Wikibooks - 1.069 MB + 1.072 MB 01s - 1121419 + 1124475 - 2016-12-02 04:22 + 2017-03-20 14:08 @@ -8418,16 +8418,16 @@ Wikipedia - 65.870 MB + 66.774 MB - 01m 09s + 01m 10s - 69069649 + 70017117 - 2016-12-02 05:50 + 2017-03-20 15:15 @@ -8446,16 +8446,16 @@ Wiktionary - 4.034 MB + 4.289 MB 04s - 4229687 + 4496931 - 2016-12-02 05:04 + 2017-03-20 14:29 @@ -8474,16 +8474,16 @@ Wikisource - 29.954 MB + 30.146 MB 31s - 31408894 + 31610771 - 2016-12-02 05:06 + 2017-03-20 14:16 @@ -8502,16 +8502,16 @@ Wikibooks - 162.979 KB + 165.707 KB 00s - 166890 + 169684 - 2016-12-02 04:35 + 2017-03-20 14:37 @@ -8530,16 +8530,16 @@ Wikiquote - 197.744 KB + 200.087 KB 00s - 202490 + 204889 - 2016-12-02 04:56 + 2017-03-20 14:03 @@ -8558,16 +8558,16 @@ Wikipedia - 32.817 KB + 32.761 KB 00s - 33605 + 33547 - 2016-12-02 05:16 + 2017-03-20 13:59 @@ -8586,16 +8586,16 @@ Wiktionary - 23.363 KB + 23.241 KB 00s - 23924 + 23799 - 2016-12-02 05:18 + 2017-03-20 14:42 @@ -8614,16 +8614,16 @@ Wikibooks - 4.813 KB + 4.613 KB 00s - 4929 + 4724 - 2016-12-02 05:01 + 2017-03-20 14:40 @@ -8642,16 +8642,16 @@ Wikipedia - 684.402 KB + 728.259 KB 00s - 700828 + 745737 - 2016-12-02 05:23 + 2017-03-20 14:12 @@ -8670,16 +8670,16 @@ Wiktionary - 43.721 KB + 43.704 KB 00s - 44770 + 44753 - 2016-12-02 05:00 + 2017-03-20 14:50 @@ -8698,16 +8698,16 @@ Wikipedia - 1.810 MB + 1.881 MB 01s - 1897562 + 1972576 - 2016-12-02 04:28 + 2017-03-20 13:43 @@ -8726,16 +8726,16 @@ Wikipedia - 219.524 KB + 227.635 KB 00s - 224793 + 233098 - 2016-12-02 04:17 + 2017-03-20 14:45 @@ -8754,16 +8754,16 @@ Wikipedia - 56.883 MB + 58.529 MB - 59s + 01m 01s - 59646543 + 61372252 - 2016-12-02 05:23 + 2017-03-20 15:11 @@ -8782,16 +8782,16 @@ Wiktionary - 3.167 MB + 3.208 MB 03s - 3320710 + 3364036 - 2016-12-02 04:56 + 2017-03-20 14:24 @@ -8810,16 +8810,16 @@ Wikibooks - 74.403 KB + 74.477 KB 00s - 76189 + 76264 - 2016-12-02 04:36 + 2017-03-20 13:56 @@ -8838,16 +8838,16 @@ Wikiquote - 141.946 KB + 144.325 KB 00s - 145353 + 147789 - 2016-12-02 04:43 + 2017-03-20 13:42 @@ -8866,16 +8866,16 @@ Wikipedia - 230.682 KB + 238.820 KB 00s - 236218 + 244552 - 2016-12-02 04:43 + 2017-03-20 14:05 @@ -8894,16 +8894,16 @@ Wiktionary - 4.060 KB + 4.046 KB 00s - 4157 + 4143 - 2016-12-02 05:16 + 2017-03-20 13:53 @@ -8922,16 +8922,16 @@ Wikibooks - 19.861 KB + 19.815 KB 00s - 20338 + 20291 - 2016-12-02 05:18 + 2017-03-20 14:01 @@ -8950,16 +8950,16 @@ Wikipedia - 35.758 MB + 36.988 MB - 37s + 38s - 37494997 + 38785030 - 2016-12-02 05:08 + 2017-03-20 15:00 @@ -8978,16 +8978,16 @@ Wiktionary - 94.406 KB + 93.924 KB 00s - 96672 + 96178 - 2016-12-02 05:18 + 2017-03-20 13:53 @@ -9006,16 +9006,16 @@ Wikibooks - 7.653 KB + 7.494 KB 00s - 7837 + 7674 - 2016-12-02 04:29 + 2017-03-20 14:11 @@ -9034,16 +9034,16 @@ Wikiquote - 4.448 KB + 4.302 KB 00s - 4555 + 4405 - 2016-12-02 04:15 + 2017-03-20 14:15 @@ -9062,16 +9062,16 @@ Wikipedia - 4.747 MB + 4.820 MB - 04s + 05s - 4978078 + 5053639 - 2016-12-02 04:48 + 2017-03-20 14:51 @@ -9090,16 +9090,16 @@ Wiktionary - 535.916 KB + 549.563 KB 00s - 548778 + 562753 - 2016-12-02 04:42 + 2017-03-20 14:39 @@ -9127,7 +9127,7 @@ 34991 - 2016-12-02 04:15 + 2017-03-20 14:20 @@ -9146,16 +9146,16 @@ Wikipedia - 25.005 MB + 25.222 MB 26s - 26219631 + 26447258 - 2016-12-02 05:22 + 2017-03-20 15:05 @@ -9174,16 +9174,16 @@ Wiktionary - 698.606 KB + 704.563 KB 00s - 715373 + 721473 - 2016-12-02 04:15 + 2017-03-20 14:10 @@ -9202,16 +9202,16 @@ Wikipedia - 3.152 MB + 3.172 MB 03s - 3304854 + 3325672 - 2016-12-02 05:22 + 2017-03-20 14:34 @@ -9230,16 +9230,16 @@ Wiktionary - 605.531 KB + 611.917 KB 00s - 620064 + 626603 - 2016-12-02 04:27 + 2017-03-20 13:49 @@ -9258,16 +9258,16 @@ Wikisource - 9.401 KB + 9.479 KB 00s - 9627 + 9706 - 2016-12-02 05:17 + 2017-03-20 14:10 @@ -9286,16 +9286,16 @@ Wikibooks - 325.672 KB + 321.733 KB 00s - 333488 + 329455 - 2016-12-02 05:17 + 2017-03-20 14:42 @@ -9314,16 +9314,16 @@ Wikiquote - 49.370 KB + 46.595 KB 00s - 50555 + 47713 - 2016-12-02 04:12 + 2017-03-20 14:17 @@ -9342,16 +9342,16 @@ Wikipedia - 784.663 KB + 790.610 KB 00s - 803495 + 809585 - 2016-12-02 04:32 + 2017-03-20 14:04 @@ -9370,16 +9370,16 @@ Wikipedia - 13.645 MB + 14.137 MB 14s - 14308055 + 14824123 - 2016-12-02 05:27 + 2017-03-20 15:05 @@ -9398,16 +9398,16 @@ Wikipedia - 15.861 MB + 16.142 MB 16s - 16631245 + 16926082 - 2016-12-02 05:08 + 2017-03-20 14:35 @@ -9426,16 +9426,16 @@ Wiktionary - 46.834 KB + 46.766 KB 00s - 47958 + 47888 - 2016-12-02 04:37 + 2017-03-20 14:12 @@ -9454,16 +9454,16 @@ Wikisource - 2.663 MB + 2.689 MB 02s - 2792610 + 2819125 - 2016-12-02 05:18 + 2017-03-20 13:46 @@ -9482,16 +9482,16 @@ Wikibooks - 4.743 KB + 4.737 KB 00s - 4857 + 4851 - 2016-12-02 05:18 + 2017-03-20 14:14 @@ -9510,16 +9510,16 @@ Wikipedia - 53.683 MB + 54.480 MB - 56s + 57s - 56291001 + 57126603 - 2016-12-02 05:15 + 2017-03-20 14:57 @@ -9538,16 +9538,16 @@ Wiktionary - 2.285 MB + 2.309 MB 02s - 2395724 + 2421162 - 2016-12-02 04:45 + 2017-03-20 13:42 @@ -9566,16 +9566,16 @@ Wikibooks - 21.008 KB + 21.011 KB 00s - 21512 + 21515 - 2016-12-02 05:07 + 2017-03-20 14:06 @@ -9594,16 +9594,16 @@ Wikiquote - 30.127 KB + 30.132 KB 00s - 30850 + 30855 - 2016-12-02 04:21 + 2017-03-20 14:33 @@ -9622,16 +9622,16 @@ Wikipedia - 3.087 MB + 3.164 MB 03s - 3236917 + 3317553 - 2016-12-02 04:28 + 2017-03-20 13:44 @@ -9650,16 +9650,16 @@ Wiktionary - 4.956 KB + 4.977 KB 00s - 5075 + 5096 - 2016-12-02 04:15 + 2017-03-20 14:21 @@ -9678,16 +9678,16 @@ Wikipedia - 1.413 MB + 1.489 MB 01s - 1481411 + 1561401 - 2016-12-02 04:27 + 2017-03-20 14:48 @@ -9706,16 +9706,16 @@ Wiktionary - 190.678 KB + 194.321 KB 00s - 195254 + 198985 - 2016-12-02 04:23 + 2017-03-20 14:28 @@ -9734,16 +9734,16 @@ Wikibooks - 3.596 KB + 3.588 KB 00s - 3682 + 3674 - 2016-12-02 05:19 + 2017-03-20 14:08 @@ -9762,16 +9762,16 @@ Wikipedia - 101.478 MB + 106.343 MB - 01m 46s + 01m 51s - 106407169 + 111508848 - 2016-12-02 05:53 + 2017-03-20 15:27 @@ -9790,16 +9790,16 @@ Wiktionary - 8.334 MB + 8.526 MB 08s - 8738713 + 8940449 - 2016-12-02 04:38 + 2017-03-20 14:36 @@ -9818,16 +9818,16 @@ Wikisource - 8.386 MB + 8.424 MB 08s - 8793845 + 8833655 - 2016-12-02 04:26 + 2017-03-20 14:16 @@ -9846,16 +9846,16 @@ Wikibooks - 1.714 MB + 1.724 MB 01s - 1797393 + 1807714 - 2016-12-02 04:24 + 2017-03-20 14:03 @@ -9874,16 +9874,16 @@ Wikiquote - 1.014 MB + 1.188 MB 01s - 1063686 + 1245459 - 2016-12-02 04:53 + 2017-03-20 14:07 @@ -9902,16 +9902,16 @@ Wikipedia - 7.517 MB + 8.561 MB - 07s + 08s - 7882348 + 8976475 - 2016-12-02 04:52 + 2017-03-20 14:08 @@ -9930,16 +9930,16 @@ Wikipedia - 28.485 MB + 31.886 MB - 29s + 33s - 29868420 + 33435033 - 2016-12-02 05:12 + 2017-03-20 15:03 @@ -9958,16 +9958,16 @@ Wikibooks - 4.706 KB + 4.703 KB 00s - 4819 + 4816 - 2016-12-02 05:19 + 2017-03-20 13:59 @@ -9986,16 +9986,16 @@ Wikipedia - 22.767 MB + 23.287 MB - 23s + 24s - 23872875 + 24417792 - 2016-12-02 05:08 + 2017-03-20 14:50 @@ -10014,16 +10014,16 @@ Wikipedia - 3.458 MB + 3.526 MB 03s - 3625945 + 3697237 - 2016-12-02 04:40 + 2017-03-20 14:43 @@ -10042,16 +10042,16 @@ Wikipedia - 3.200 MB + 3.258 MB 03s - 3355794 + 3416320 - 2016-12-02 05:05 + 2017-03-20 14:34 @@ -10070,16 +10070,16 @@ Wikipedia - 127.560 MB + 139.066 MB - 02m 13s + 02m 25s - 133755906 + 145821083 - 2016-12-02 05:58 + 2017-03-20 15:32 @@ -10098,16 +10098,16 @@ Wiktionary - 886.302 KB + 913.864 KB 00s - 907573 + 935797 - 2016-12-02 04:15 + 2017-03-20 14:00 @@ -10126,16 +10126,16 @@ Wikisource - 5.154 MB + 5.345 MB 05s - 5403994 + 5604811 - 2016-12-02 05:22 + 2017-03-20 14:11 @@ -10154,16 +10154,16 @@ Wikibooks - 133.852 KB + 136.521 KB 00s - 137064 + 139797 - 2016-12-02 05:22 + 2017-03-20 14:28 @@ -10182,16 +10182,16 @@ Wikiquote - 247.040 KB + 293.001 KB 00s - 252969 + 300033 - 2016-12-02 05:23 + 2017-03-20 13:49 @@ -10210,16 +10210,16 @@ Wikimedia - 538.712 KB + 588.927 KB 00s - 551641 + 603061 - 2016-12-02 04:14 + 2017-03-20 14:10 @@ -10238,16 +10238,16 @@ Wikipedia - 58.428 MB + 59.119 MB 01m 01s - 61266224 + 61990241 - 2016-12-02 05:40 + 2017-03-20 15:18 @@ -10266,16 +10266,16 @@ Wikipedia - 7.198 MB + 7.830 MB - 07s + 08s - 7547744 + 8210655 - 2016-12-02 05:08 + 2017-03-20 14:40 @@ -10294,16 +10294,16 @@ Wiktionary - 43.557 KB + 43.453 KB 00s - 44602 + 44496 - 2016-12-02 05:19 + 2017-03-20 13:56 @@ -10322,16 +10322,16 @@ Wikipedia - 304.242 KB + 335.178 KB 00s - 311544 + 343222 - 2016-12-02 04:45 + 2017-03-20 14:51 @@ -10350,16 +10350,16 @@ Wiktionary - 42.365 KB + 42.294 KB 00s - 43382 + 43309 - 2016-12-02 04:12 + 2017-03-20 14:07 @@ -10378,16 +10378,16 @@ Wikibooks - 5.308 KB + 5.300 KB 00s - 5435 + 5427 - 2016-12-02 04:16 + 2017-03-20 14:46 @@ -10406,16 +10406,16 @@ Wikipedia - 1.715 MB + 1.723 MB 01s - 1798296 + 1806640 - 2016-12-02 04:58 + 2017-03-20 13:56 @@ -10434,16 +10434,16 @@ Wikipedia - 345.622 KB + 347.413 KB 00s - 353917 + 355751 - 2016-12-02 04:18 + 2017-03-20 14:25 @@ -10462,16 +10462,16 @@ Wiktionary - 6.458 KB + 6.444 KB 00s - 6613 + 6599 - 2016-12-02 04:12 + 2017-03-20 14:42 @@ -10490,16 +10490,16 @@ Wikibooks - 8.933 KB + 8.948 KB 00s - 9147 + 9163 - 2016-12-02 05:21 + 2017-03-20 13:44 @@ -10518,16 +10518,16 @@ Wikiquote - 5.062 KB + 5.077 KB 00s - 5184 + 5199 - 2016-12-02 05:19 + 2017-03-20 14:17 @@ -10546,16 +10546,16 @@ Wikipedia - 89.058 MB + 97.200 MB - 01m 33s + 01m 41s - 93384513 + 101921173 - 2016-12-02 06:07 + 2017-03-20 15:27 @@ -10574,16 +10574,16 @@ Wiktionary - 1.157 MB + 1.190 MB 01s - 1212965 + 1247371 - 2016-12-02 05:24 + 2017-03-20 14:27 @@ -10602,16 +10602,16 @@ Wikisource - 368.350 MB + 371.637 MB - 06m 26s + 06m 29s - 386242811 + 389689151 - 2016-12-02 05:52 + 2017-03-20 15:19 @@ -10630,16 +10630,16 @@ Wikibooks - 1.223 MB + 1.372 MB 01s - 1282818 + 1439160 - 2016-12-02 05:21 + 2017-03-20 14:19 @@ -10658,16 +10658,16 @@ Wikipedia - 5.864 MB + 9.599 MB - 06s + 10s - 6149310 + 10065328 - 2016-12-02 05:04 + 2017-03-20 14:33 @@ -10686,16 +10686,16 @@ Wiktionary - 39.660 KB + 39.543 KB 00s - 40612 + 40492 - 2016-12-02 04:12 + 2017-03-20 13:51 @@ -10723,7 +10723,7 @@ 5833 - 2016-12-02 05:17 + 2017-03-20 14:03 @@ -10742,16 +10742,16 @@ Wikipedia - 4.314 MB + 4.324 MB 04s - 4523043 + 4533808 - 2016-12-02 04:53 + 2017-03-20 14:54 @@ -10770,16 +10770,16 @@ Wikipedia - 38.804 MB + 39.515 MB - 40s + 41s - 40688830 + 41434323 - 2016-12-02 05:30 + 2017-03-20 15:08 @@ -10798,16 +10798,16 @@ Wiktionary - 5.835 MB + 6.022 MB 06s - 6117934 + 6314739 - 2016-12-02 04:50 + 2017-03-20 14:14 @@ -10826,16 +10826,16 @@ Wikisource - 15.735 MB + 16.007 MB 16s - 16499320 + 16784533 - 2016-12-02 05:20 + 2017-03-20 14:13 @@ -10854,16 +10854,16 @@ Wikiquote - 118.103 KB + 118.256 KB 00s - 120937 + 121094 - 2016-12-02 04:13 + 2017-03-20 14:28 @@ -10882,16 +10882,16 @@ Wikimedia - 1.646 MB + 1.650 MB 01s - 1725466 + 1730019 - 2016-12-02 04:16 + 2017-03-20 14:19 @@ -10910,16 +10910,16 @@ Wikipedia - 83.783 MB + 86.049 MB - 01m 27s + 01m 30s - 87852939 + 90228483 - 2016-12-02 05:56 + 2017-03-20 15:22 @@ -10938,16 +10938,16 @@ Wiktionary - 1.345 MB + 1.338 MB 01s - 1410783 + 1402613 - 2016-12-02 04:58 + 2017-03-20 14:40 @@ -10966,16 +10966,16 @@ Wikisource - 4.265 MB + 4.245 MB 04s - 4471679 + 4451005 - 2016-12-02 04:25 + 2017-03-20 14:12 @@ -10994,16 +10994,16 @@ Wikibooks - 187.254 KB + 185.170 KB 00s - 191748 + 189614 - 2016-12-02 05:19 + 2017-03-20 14:17 @@ -11022,16 +11022,16 @@ Wikiquote - 2.753 MB + 2.845 MB 02s - 2886320 + 2983063 - 2016-12-02 04:31 + 2017-03-20 13:43 @@ -11050,16 +11050,16 @@ Wikinews - 401.176 KB + 419.019 KB 00s - 410804 + 429075 - 2016-12-02 04:51 + 2017-03-20 14:14 @@ -11078,16 +11078,16 @@ Wikipedia - 1.457 MB + 1.462 MB 01s - 1527453 + 1533270 - 2016-12-02 04:50 + 2017-03-20 14:04 @@ -11106,16 +11106,16 @@ Wikipedia - 2.599 MB + 2.646 MB 02s - 2725446 + 2775049 - 2016-12-02 04:21 + 2017-03-20 14:11 @@ -11134,16 +11134,16 @@ Wikipedia - 1.863 MB + 1.904 MB 01s - 1953739 + 1996769 - 2016-12-02 05:03 + 2017-03-20 14:29 @@ -11162,16 +11162,16 @@ Wikipedia - 1.510 MB + 1.522 MB 01s - 1582936 + 1595506 - 2016-12-02 04:55 + 2017-03-20 15:03 @@ -11190,16 +11190,16 @@ Wikipedia - 29.346 MB + 30.529 MB - 30s + 32s - 30771459 + 32011808 - 2016-12-02 05:50 + 2017-03-20 15:21 @@ -11218,16 +11218,16 @@ Wikipedia - 767.588 MB + 1.118 GB - 13m 24s + 19m 59s - 804874615 + 1199946835 - 2016-12-02 10:41 + 2017-03-20 21:05 @@ -11246,16 +11246,16 @@ Wikipedia - 611.386 KB + 614.607 KB 00s - 626059 + 629358 - 2016-12-02 04:26 + 2017-03-20 14:23 @@ -11274,16 +11274,16 @@ Wiktionary - 3.328 KB + 3.326 KB 00s - 3408 + 3406 - 2016-12-02 05:22 + 2017-03-20 13:44 @@ -11302,16 +11302,16 @@ Wikibooks - 6.612 KB + 6.622 KB 00s - 6771 + 6781 - 2016-12-02 04:22 + 2017-03-20 14:13 @@ -11330,16 +11330,16 @@ Wikipedia - 16.334 KB + 16.316 KB 00s - 16726 + 16708 - 2016-12-02 04:43 + 2017-03-20 14:26 @@ -11358,16 +11358,16 @@ Wikipedia - 1.308 MB + 1.309 MB 01s - 1371983 + 1372188 - 2016-12-02 04:29 + 2017-03-20 13:52 @@ -11386,16 +11386,16 @@ Wiktionary - 15.726 MB + 15.821 MB 16s - 16490132 + 16589921 - 2016-12-02 05:12 + 2017-03-20 15:00 @@ -11414,16 +11414,16 @@ Wikipedia - 251.168 KB + 254.915 KB 00s - 257196 + 261033 - 2016-12-02 04:17 + 2017-03-20 14:27 @@ -11442,16 +11442,16 @@ Wikipedia - 15.036 MB + 15.640 MB - 15s + 16s - 15766110 + 16399840 - 2016-12-02 05:18 + 2017-03-20 15:04 @@ -11470,16 +11470,16 @@ Wikipedia - 2.680 MB + 2.715 MB 02s - 2810365 + 2846860 - 2016-12-02 05:03 + 2017-03-20 14:46 @@ -11498,16 +11498,16 @@ Wiktionary - 1.432 MB + 1.438 MB 01s - 1501510 + 1507489 - 2016-12-02 04:17 + 2017-03-20 14:26 @@ -11535,7 +11535,7 @@ 60420 - 2016-12-02 04:17 + 2017-03-20 13:54 @@ -11554,16 +11554,16 @@ Wikiquote - 23.975 KB + 23.960 KB 00s - 24550 + 24535 - 2016-12-02 04:13 + 2017-03-20 14:05 @@ -11582,16 +11582,16 @@ Wikimedia - 222.235 KB + 227.676 KB 00s - 227569 + 233140 - 2016-12-02 05:23 + 2017-03-20 14:17 @@ -11610,16 +11610,16 @@ Wikipedia - 244.210 KB + 250.445 KB 00s - 250071 + 256456 - 2016-12-02 04:19 + 2017-03-20 14:32 @@ -11638,16 +11638,16 @@ Wiktionary - 4.447 KB + 4.450 KB 00s - 4554 + 4557 - 2016-12-02 04:17 + 2017-03-20 14:03 @@ -11666,16 +11666,16 @@ Wikiquote - 4.329 KB + 4.332 KB 00s - 4433 + 4436 - 2016-12-02 05:17 + 2017-03-20 13:57 @@ -11694,16 +11694,16 @@ Wikipedia - 1.837 MB + 1.885 MB 01s - 1926757 + 1976433 - 2016-12-02 04:50 + 2017-03-20 13:55 @@ -11722,16 +11722,16 @@ Wikipedia - 1.537 MB + 1.550 MB 01s - 1611175 + 1625578 - 2016-12-02 05:05 + 2017-03-20 14:05 @@ -11750,16 +11750,16 @@ Wiktionary - 358.660 KB + 358.688 KB 00s - 367268 + 367296 - 2016-12-02 04:45 + 2017-03-20 13:54 @@ -11778,16 +11778,16 @@ Wikipedia - 472.663 KB + 473.895 KB 00s - 484007 + 485268 - 2016-12-02 04:31 + 2017-03-20 13:58 @@ -11806,16 +11806,16 @@ Wikipedia - 15.093 MB + 16.567 MB - 15s + 17s - 15826297 + 17371555 - 2016-12-02 05:00 + 2017-03-20 15:00 @@ -11834,16 +11834,16 @@ Wikibooks - 1.018 MB + 1.022 MB 01s - 1067273 + 1071906 - 2016-12-02 05:22 + 2017-03-20 13:45 @@ -11862,16 +11862,16 @@ Wikipedia - 50.311 MB + 55.023 MB - 52s + 57s - 52755019 + 57695339 - 2016-12-02 05:45 + 2017-03-20 15:25 @@ -11890,16 +11890,16 @@ Wiktionary - 3.203 MB + 3.215 MB 03s - 3358469 + 3371279 - 2016-12-02 05:02 + 2017-03-20 14:13 @@ -11918,16 +11918,16 @@ Wikisource - 1.665 MB + 1.720 MB 01s - 1745991 + 1803074 - 2016-12-02 05:20 + 2017-03-20 13:43 @@ -11946,16 +11946,16 @@ Wikibooks - 63.862 KB + 63.129 KB 00s - 65395 + 64644 - 2016-12-02 04:19 + 2017-03-20 14:25 @@ -11974,16 +11974,16 @@ Wikiquote - 268.088 KB + 270.988 KB 00s - 274522 + 277492 - 2016-12-02 05:20 + 2017-03-20 14:24 @@ -12002,16 +12002,16 @@ Wikipedia - 5.566 MB + 5.818 MB - 05s + 06s - 5836553 + 6101004 - 2016-12-02 04:54 + 2017-03-20 14:34 @@ -12030,16 +12030,16 @@ Wikipedia - 3.045 MB + 3.055 MB 03s - 3192999 + 3203419 - 2016-12-02 04:47 + 2017-03-20 14:10 @@ -12058,16 +12058,16 @@ Wikipedia - 3.869 MB + 3.873 MB 04s - 4057252 + 4061418 - 2016-12-02 04:56 + 2017-03-20 14:06 @@ -12086,16 +12086,16 @@ Wiktionary - 202.789 KB + 204.629 KB 00s - 207656 + 209540 - 2016-12-02 04:13 + 2017-03-20 14:44 @@ -12114,16 +12114,16 @@ Wikipedia - 215.999 KB + 220.788 KB 00s - 221183 + 226087 - 2016-12-02 04:29 + 2017-03-20 14:29 @@ -12142,16 +12142,16 @@ Wiktionary - 42.999 KB + 42.948 KB 00s - 44031 + 43979 - 2016-12-02 05:22 + 2017-03-20 13:46 @@ -12170,16 +12170,16 @@ Wikipedia - 370.850 KB + 368.250 KB 00s - 379750 + 377088 - 2016-12-02 05:21 + 2017-03-20 13:49 @@ -12198,16 +12198,16 @@ Wikipedia - 5.475 MB + 5.705 MB 05s - 5740958 + 5982101 - 2016-12-02 04:50 + 2017-03-20 14:46 @@ -12226,16 +12226,16 @@ Wikipedia - 1.959 MB + 1.978 MB 02s - 2053637 + 2074285 - 2016-12-02 04:41 + 2017-03-20 14:31 @@ -12254,16 +12254,16 @@ Wikipedia - 229.112 KB + 241.069 KB 00s - 234611 + 246855 - 2016-12-02 04:31 + 2017-03-20 14:30 @@ -12282,16 +12282,16 @@ Wikipedia - 1.643 MB + 1.646 MB 01s - 1722890 + 1725647 - 2016-12-02 04:36 + 2017-03-20 14:54 @@ -12310,16 +12310,16 @@ Wikipedia - 193.004 KB + 189.042 KB 00s - 197636 + 193579 - 2016-12-02 05:24 + 2017-03-20 14:03 @@ -12338,16 +12338,16 @@ Wiktionary - 2.780 MB + 2.830 MB 02s - 2915398 + 2967186 - 2016-12-02 05:05 + 2017-03-20 14:30 @@ -12366,16 +12366,16 @@ Wikipedia - 11.724 MB + 11.895 MB 12s - 12293855 + 12472676 - 2016-12-02 04:52 + 2017-03-20 14:32 @@ -12394,16 +12394,16 @@ Wiktionary - 287.927 KB + 293.195 KB 00s - 294837 + 300232 - 2016-12-02 04:21 + 2017-03-20 13:58 @@ -12422,16 +12422,16 @@ Wikisource - 112.565 KB + 115.729 KB 00s - 115267 + 118506 - 2016-12-02 04:20 + 2017-03-20 13:54 @@ -12450,16 +12450,16 @@ Wikipedia - 1.395 MB + 1.420 MB 01s - 1462927 + 1488928 - 2016-12-02 04:57 + 2017-03-20 14:27 @@ -12478,16 +12478,16 @@ Wikipedia - 4.135 MB + 4.343 MB 04s - 4335456 + 4554479 - 2016-12-02 04:37 + 2017-03-20 14:10 @@ -12506,16 +12506,16 @@ Wikipedia - 1.895 MB + 1.887 MB 01s - 1986575 + 1978405 - 2016-12-02 04:48 + 2017-03-20 14:10 @@ -12534,16 +12534,16 @@ Wikipedia - 31.988 MB + 33.244 MB - 33s + 34s - 33541787 + 34859165 - 2016-12-02 05:15 + 2017-03-20 15:04 @@ -12562,16 +12562,16 @@ Wiktionary - 1.858 MB + 1.885 MB 01s - 1948764 + 1976362 - 2016-12-02 04:47 + 2017-03-20 13:42 @@ -12590,16 +12590,16 @@ Wikibooks - 101.364 KB + 104.155 KB 00s - 103797 + 106655 - 2016-12-02 05:23 + 2017-03-20 14:22 @@ -12618,16 +12618,16 @@ Wikipedia - 16.516 MB + 16.836 MB 17s - 17318277 + 17653805 - 2016-12-02 05:06 + 2017-03-20 14:51 @@ -12646,16 +12646,16 @@ Wiktionary - 955.653 KB + 960.394 KB 00s - 978589 + 983443 - 2016-12-02 04:38 + 2017-03-20 14:09 @@ -12674,16 +12674,16 @@ Wikibooks - 6.444 KB + 6.448 KB 00s - 6599 + 6603 - 2016-12-02 04:30 + 2017-03-20 14:51 @@ -12702,16 +12702,16 @@ Wikiquote - 6.506 KB + 6.489 KB 00s - 6662 + 6645 - 2016-12-02 04:13 + 2017-03-20 14:08

    05s

    @@ -12733,16 +12733,16 @@ Wikipedia - 2.994 MB + 3.004 MB 03s - 3139071 + 3149855 - 2016-12-02 04:26 + 2017-03-20 14:38 @@ -12761,16 +12761,16 @@ Wikipedia - 6.712 MB + 6.920 MB 07s - 7037547 + 7256317 - 2016-12-02 04:31 + 2017-03-20 14:26 @@ -12789,16 +12789,16 @@ Wiktionary - 996.226 KB + 1,000.469 KB 01s - 1020135 + 1024480 - 2016-12-02 04:14 + 2017-03-20 14:04 @@ -12817,16 +12817,16 @@ Wikipedia - 1.759 MB + 1.791 MB 01s - 1844458 + 1877702 - 2016-12-02 04:45 + 2017-03-20 14:01 @@ -12845,16 +12845,16 @@ Wikipedia - 2.251 MB + 2.280 MB 02s - 2360334 + 2390558 - 2016-12-02 04:49 + 2017-03-20 13:45 @@ -12873,16 +12873,16 @@ Wiktionary - 361.912 KB + 370.580 KB 00s - 370598 + 379474 - 2016-12-02 05:25 + 2017-03-20 14:14

    05s

    @@ -12904,16 +12904,16 @@ Wikipedia - 5.066 MB + 5.198 MB 05s - 5311619 + 5450139 - 2016-12-02 05:25 + 2017-03-20 14:24

    04s

    @@ -12935,16 +12935,16 @@ Wikibooks - 6.380 KB + 6.314 KB 00s - 6533 + 6466 - 2016-12-02 05:24 + 2017-03-20 13:59 @@ -12963,16 +12963,16 @@ Wikipedia - 22.136 MB + 22.519 MB 23s - 23211406 + 23612930 - 2016-12-02 05:02 + 2017-03-20 14:58 @@ -12991,16 +12991,16 @@ Wiktionary - 650.886 KB + 651.375 KB 00s - 666507 + 667008 - 2016-12-02 05:03 + 2017-03-20 13:40 @@ -13019,16 +13019,16 @@ Wikisource - 8.112 MB + 8.704 MB - 08s + 09s - 8505543 + 9126681 - 2016-12-02 04:49 + 2017-03-20 14:39 @@ -13047,16 +13047,16 @@ Wikibooks - 7.264 KB + 7.268 KB 00s - 7438 + 7442 - 2016-12-02 04:44 + 2017-03-20 13:53 @@ -13081,10 +13081,10 @@ 01s - 1062542 + 1061964 - 2016-12-02 05:20 + 2017-03-20 14:06 @@ -13103,16 +13103,16 @@ Wikipedia - 4.612 MB + 4.627 MB 04s - 4836080 + 4851372 - 2016-12-02 04:52 + 2017-03-20 14:30 @@ -13131,16 +13131,16 @@ Wiktionary - 232.010 KB + 235.389 KB 00s - 237578 + 241038 - 2016-12-02 05:24 + 2017-03-20 14:34 @@ -13159,16 +13159,16 @@ Wikipedia - 664.669 KB + 673.094 KB 00s - 680621 + 689248 - 2016-12-02 04:36 + 2017-03-20 14:05 @@ -13187,16 +13187,16 @@ Wiktionary - 152.899 KB + 155.804 KB 00s - 156569 + 159543 - 2016-12-02 05:10 + 2017-03-20 13:52 @@ -13215,16 +13215,16 @@ Wikipedia - 2.327 MB + 2.443 MB 02s - 2439801 + 2561484 - 2016-12-02 04:58 + 2017-03-20 14:05 @@ -13243,16 +13243,16 @@ Wikipedia - 424.302 KB + 431.392 KB 00s - 434485 + 441745 - 2016-12-02 04:31 + 2017-03-20 14:39 @@ -13271,16 +13271,16 @@ Wikipedia - 3.729 MB + 3.756 MB 03s - 3910578 + 3938383 - 2016-12-02 05:23 + 2017-03-20 14:04 @@ -13299,16 +13299,16 @@ Wikipedia - 8.527 KB + 8.533 KB 00s - 8732 + 8738 - 2016-12-02 04:31 + 2017-03-20 14:39 @@ -13327,16 +13327,16 @@ Wikipedia - 7.698 MB + 7.846 MB 08s - 8072076 + 8227318 - 2016-12-02 04:54 + 2017-03-20 14:23 @@ -13355,16 +13355,16 @@ Wiktionary - 2.088 MB + 2.089 MB 02s - 2189076 + 2190264 - 2016-12-02 04:35 + 2017-03-20 15:02 @@ -13383,16 +13383,16 @@ Wikipedia - 5.238 MB + 5.381 MB 05s - 5492834 + 5642087 - 2016-12-02 05:00 + 2017-03-20 14:29 @@ -13411,16 +13411,16 @@ Wikisource - 122.804 KB + 122.573 KB 00s - 125751 + 125515 - 2016-12-02 05:02 + 2017-03-20 14:45 @@ -13439,16 +13439,16 @@ Wikipedia - 170.506 MB + 181.363 MB - 02m 58s + 03m 10s - 178788886 + 190172724 - 2016-12-02 06:32 + 2017-03-20 15:44 @@ -13467,16 +13467,16 @@ Wiktionary - 19.467 MB + 22.070 MB - 20s + 23s - 20412735 + 23142173 - 2016-12-02 05:20 + 2017-03-20 15:07 @@ -13495,16 +13495,16 @@ Wikisource - 45.025 MB + 46.709 MB - 47s + 48s - 47212532 + 48978215 - 2016-12-02 04:23 + 2017-03-20 14:18 @@ -13523,16 +13523,16 @@ Wikibooks - 322.314 KB + 325.938 KB 00s - 330050 + 333761 - 2016-12-02 04:18 + 2017-03-20 13:59 @@ -13551,16 +13551,16 @@ Wikiquote - 1.783 MB + 1.857 MB 01s - 1869381 + 1947021 - 2016-12-02 04:32 + 2017-03-20 14:07 @@ -13579,16 +13579,16 @@ Wikipedia - 6.516 KB + 6.510 KB 00s - 6672 + 6666 - 2016-12-02 04:31 + 2017-03-20 14:31 @@ -13607,16 +13607,16 @@ Wikipedia - 1.147 MB + 1.198 MB 01s - 1202214 + 1255679 - 2016-12-02 04:52 + 2017-03-20 13:54 @@ -13635,16 +13635,16 @@ Wiktionary - 445.003 KB + 445.610 KB 00s - 455683 + 456305 - 2016-12-02 04:46 + 2017-03-20 13:50 @@ -13663,16 +13663,16 @@ Wikibooks - 83.223 KB + 83.259 KB 00s - 85220 + 85257 - 2016-12-02 04:23 + 2017-03-20 13:58 @@ -13691,16 +13691,16 @@ Wikipedia - 634.626 KB + 647.467 KB 00s - 649857 + 663006 - 2016-12-02 04:43 + 2017-03-20 14:21 @@ -13719,16 +13719,16 @@ Wikipedia - 21.673 KB + 21.111 KB 00s - 22193 + 21618 - 2016-12-02 04:24 + 2017-03-20 14:20 @@ -13747,16 +13747,16 @@ Wikipedia - 186.024 KB + 189.110 KB 00s - 190489 + 193649 - 2016-12-02 04:37 + 2017-03-20 14:48 @@ -13775,16 +13775,16 @@ Wiktionary - 70.713 KB + 70.712 KB 00s - 72410 + 72409 - 2016-12-02 04:46 + 2017-03-20 13:50 @@ -13803,16 +13803,16 @@ Wikipedia - 11.729 MB + 12.023 MB 12s - 12298348 + 12607358 - 2016-12-02 04:44 + 2017-03-20 14:46 @@ -13831,16 +13831,16 @@ Wikipedia - 9.743 MB + 9.735 MB 10s - 10216693 + 10207818 - 2016-12-02 04:58 + 2017-03-20 14:53 @@ -13859,16 +13859,16 @@ Wiktionary - 27.617 MB + 28.013 MB - 28s + 29s - 28958726 + 29374055 - 2016-12-02 05:41 + 2017-03-20 15:21 @@ -13887,16 +13887,16 @@ Wikipedia - 32.308 MB + 32.971 MB - 33s + 34s - 33877665 + 34572543 - 2016-12-02 05:23 + 2017-03-20 15:06 @@ -13915,16 +13915,16 @@ Wiktionary - 3.510 MB + 3.545 MB 03s - 3680451 + 3716936 - 2016-12-02 05:24 + 2017-03-20 13:52 @@ -13943,16 +13943,16 @@ Wikisource - 5.864 MB + 5.848 MB 06s - 6148982 + 6132336 - 2016-12-02 04:41 + 2017-03-20 13:48 @@ -13971,16 +13971,16 @@ Wikibooks - 1.416 MB + 1.452 MB 01s - 1484515 + 1522644 - 2016-12-02 04:52 + 2017-03-20 14:04 @@ -13999,16 +13999,16 @@ Wikiquote - 247.437 KB + 251.242 KB 00s - 253375 + 257272 - 2016-12-02 04:34 + 2017-03-20 14:36 @@ -14027,16 +14027,16 @@ Wikipedia - 208.584 KB + 212.477 KB 00s - 213590 + 217576 - 2016-12-02 04:30 + 2017-03-20 14:04 @@ -14055,16 +14055,16 @@ Wiktionary - 125.227 KB + 126.051 KB 00s - 128232 + 129076 - 2016-12-02 04:32 + 2017-03-20 14:09 @@ -14083,16 +14083,16 @@ Wikipedia - 694.720 KB + 710.313 KB 00s - 711393 + 727361 - 2016-12-02 04:27 + 2017-03-20 14:41 @@ -14111,16 +14111,16 @@ Wikipedia - 912.928 KB + 921.377 KB 00s - 934838 + 943490 - 2016-12-02 04:46 + 2017-03-20 14:33 @@ -14139,16 +14139,16 @@ Wiktionary - 173.973 KB + 177.729 KB 00s - 178148 + 181994 - 2016-12-02 04:46 + 2017-03-20 14:21 @@ -14167,16 +14167,16 @@ Wikipedia - 32.010 MB + 32.103 MB 33s - 33564656 + 33662437 - 2016-12-02 05:18 + 2017-03-20 15:05 @@ -14195,16 +14195,16 @@ Wiktionary - 3.915 MB + 3.923 MB 04s - 4104711 + 4113548 - 2016-12-02 05:08 + 2017-03-20 14:49 @@ -14223,16 +14223,16 @@ Wikipedia - 96.541 MB + 99.883 MB - 01m 41s + 01m 44s - 101230263 + 104734792 - 2016-12-02 06:01 + 2017-03-20 15:22

    00s 00s 18s 04s 01s

    @@ -14254,16 +14254,16 @@ Wikipedia - 1.410 MB + 1.458 MB 01s - 1478352 + 1528433 - 2016-12-02 05:22 + 2017-03-20 14:13 @@ -14282,16 +14282,16 @@ Wikipedia - 360.166 KB + 363.592 KB 00s - 368810 + 372318 - 2016-12-02 05:21 + 2017-03-20 14:15

    00s 00s 18s 04s 00s 00s 01s

    @@ -14313,16 +14313,16 @@ Wikipedia - 60.179 MB + 60.868 MB 01m 03s - 63102642 + 63825218 - 2016-12-02 05:11 + 2017-03-20 15:02 @@ -14341,16 +14341,16 @@ Wiktionary - 16.763 MB + 16.814 MB 17s - 17577052 + 17630261 - 2016-12-02 05:16 + 2017-03-20 14:56 @@ -14369,16 +14369,16 @@ Wikisource - 19.823 MB + 22.763 MB - 20s + 23s - 20785887 + 23869124 - 2016-12-02 04:40 + 2017-03-20 14:06 @@ -14397,16 +14397,16 @@ Wikibooks - 9.828 KB + 9.858 KB 00s - 10064 + 10095 - 2016-12-02 04:33 + 2017-03-20 14:01

    00s 00s 00s 00s

    @@ -14428,16 +14428,16 @@ Wikipedia - 2.758 MB + 2.770 MB 02s - 2892073 + 2904370 - 2016-12-02 05:36 + 2017-03-20 14:22 @@ -14456,16 +14456,16 @@ Wikipedia - 235.479 KB + 238.039 KB 00s - 241131 + 243752 - 2016-12-02 04:37 + 2017-03-20 13:56 @@ -14484,16 +14484,16 @@ Wiktionary - 164.572 KB + 164.800 KB 00s - 168522 + 168755 - 2016-12-02 04:37 + 2017-03-20 14:35 @@ -14512,16 +14512,16 @@ Wikibooks - 7.634 KB + 7.626 KB 00s - 7817 + 7809 - 2016-12-02 05:05 + 2017-03-20 13:50 @@ -14549,7 +14549,7 @@ 7218 - 2016-12-02 04:25 + 2017-03-20 14:16 @@ -14568,16 +14568,16 @@ Wikipedia - 2.816 MB + 2.828 MB 02s - 2952526 + 2965344 - 2016-12-02 04:33 + 2017-03-20 14:29 @@ -14596,16 +14596,16 @@ Wikipedia - 13.333 MB + 13.768 MB - 13s + 14s - 13981117 + 14436659 - 2016-12-02 05:06 + 2017-03-20 14:53 @@ -14624,16 +14624,16 @@ Wiktionary - 40.514 MB + 41.014 MB - 42s + 43s - 42481868 + 43006644 - 2016-12-02 05:42 + 2017-03-20 15:22 @@ -14652,16 +14652,16 @@ Wikibooks - 477.877 KB + 482.810 KB 00s - 489346 + 494397 - 2016-12-02 04:28 + 2017-03-20 13:46 @@ -14680,16 +14680,16 @@ Wikiquote - 248.484 KB + 253.699 KB 00s - 254448 + 259788 - 2016-12-02 04:27 + 2017-03-20 14:28 @@ -14708,16 +14708,16 @@ Wikipedia - 2.520 MB + 2.581 MB 02s - 2641905 + 2706645 - 2016-12-02 05:03 + 2017-03-20 13:53 @@ -14736,16 +14736,16 @@ Wikipedia - 1.316 MB + 1.355 MB 01s - 1379786 + 1420331 - 2016-12-02 05:00 + 2017-03-20 13:48 @@ -14764,16 +14764,16 @@ Wiktionary - 222.318 KB + 225.064 KB 00s - 227654 + 230466 - 2016-12-02 04:39 + 2017-03-20 14:37 @@ -14792,16 +14792,16 @@ Wikiquote - 5.716 KB + 5.698 KB 00s - 5853 + 5835 - 2016-12-02 04:39 + 2017-03-20 14:14 @@ -14820,16 +14820,16 @@ Wikipedia - 23.552 MB + 26.152 MB - 24s + 27s - 24695881 + 27422748 - 2016-12-02 04:55 + 2017-03-20 14:52 @@ -14848,16 +14848,16 @@ Wiktionary - 4.246 MB + 4.735 MB 04s - 4451946 + 4965497 - 2016-12-02 05:25 + 2017-03-20 14:37 @@ -14876,16 +14876,16 @@ Wikibooks - 679.837 KB + 681.623 KB 00s - 696153 + 697982 - 2016-12-02 04:11 + 2017-03-20 14:35 @@ -14904,16 +14904,16 @@ Wikiquote - 85.849 KB + 82.136 KB 00s - 87909 + 84107 - 2016-12-02 04:25 + 2017-03-20 14:50 @@ -14932,16 +14932,16 @@ Wikipedia - 2.281 MB + 2.485 MB 02s - 2391786 + 2605750 - 2016-12-02 04:25 + 2017-03-20 14:28 @@ -14960,16 +14960,16 @@ Wikipedia - 35.122 MB + 35.849 MB - 36s + 37s - 36828586 + 37590872 - 2016-12-02 05:21 + 2017-03-20 15:06 @@ -14988,16 +14988,16 @@ Wiktionary - 1.504 MB + 1.508 MB 01s - 1576943 + 1581446 - 2016-12-02 04:44 + 2017-03-20 13:41 @@ -15016,16 +15016,16 @@ Wikibooks - 6.785 KB + 6.766 KB 00s - 6948 + 6928 - 2016-12-02 04:39 + 2017-03-20 14:20 @@ -15044,16 +15044,16 @@ Wikiquote - 38.900 KB + 38.894 KB 00s - 39834 + 39827 - 2016-12-02 04:52 + 2017-03-20 13:57 @@ -15072,16 +15072,16 @@ Wikipedia - 865.951 KB + 887.037 KB 00s - 886734 + 908326 - 2016-12-02 04:20 + 2017-03-20 13:54 @@ -15100,16 +15100,16 @@ Wikipedia - 3.056 MB + 3.351 MB 03s - 3204038 + 3513798 - 2016-12-02 04:56 + 2017-03-20 14:00 @@ -15128,16 +15128,16 @@ Wikipedia - 560.788 KB + 1.321 MB - 00s + 01s - 574247 + 1385421 - 2016-12-02 04:39 + 2017-03-20 13:44 @@ -15156,16 +15156,16 @@ Wikipedia - 10.696 MB + 10.847 MB 11s - 11215106 + 11373505 - 2016-12-02 05:07 + 2017-03-20 14:57 @@ -15184,16 +15184,16 @@ Wiktionary - 7.791 MB + 7.825 MB 08s - 8169924 + 8204779 - 2016-12-02 05:04 + 2017-03-20 14:59 @@ -15212,16 +15212,16 @@ Wikisource - 742.689 KB + 746.864 KB 00s - 760514 + 764789 - 2016-12-02 04:29 + 2017-03-20 13:40

    03s

    @@ -15243,16 +15243,16 @@ Wikiquote - 170.344 KB + 170.311 KB 00s - 174432 + 174398 - 2016-12-02 04:41 + 2017-03-20 14:32 @@ -15271,16 +15271,16 @@ Wikipedia - 1.844 MB + 1.845 MB 01s - 1933156 + 1934279 - 2016-12-02 04:35 + 2017-03-20 14:15 @@ -15299,16 +15299,16 @@ Wikipedia - 16.910 MB + 17.129 MB 17s - 17731939 + 17961356 - 2016-12-02 05:09 + 2017-03-20 15:00 @@ -15327,16 +15327,16 @@ Wikipedia - 1.389 MB + 1.397 MB 01s - 1456754 + 1464596 - 2016-12-02 04:16 + 2017-03-20 14:40 @@ -15355,16 +15355,16 @@ Wiktionary - 179.371 KB + 182.223 KB 00s - 183676 + 186596 - 2016-12-02 04:41 + 2017-03-20 13:44 @@ -15383,16 +15383,16 @@ Wikibooks - 7.153 KB + 6.909 KB 00s - 7325 + 7075 - 2016-12-02 04:28 + 2017-03-20 14:26

    03s

    @@ -15414,16 +15414,16 @@ Wiktionary - 5.384 MB + 5.412 MB 05s - 5645242 + 5674526 - 2016-12-02 05:08 + 2017-03-20 14:33

    03s

    @@ -15445,16 +15445,16 @@ Wikipedia - 654.883 KB + 659.533 KB 00s - 670600 + 675362 - 2016-12-02 04:44 + 2017-03-20 13:47 @@ -15473,16 +15473,16 @@ Wikipedia - 89.419 MB + 92.097 MB - 01m 33s + 01m 36s - 93762414 + 96570703 - 2016-12-02 05:39 + 2017-03-20 15:18 @@ -15501,16 +15501,16 @@ Wiktionary - 1.905 MB + 1.911 MB - 01s + 02s - 1997939 + 2004239 - 2016-12-02 04:48 + 2017-03-20 14:38 @@ -15529,16 +15529,16 @@ Wikibooks - 73.108 KB + 73.113 KB 00s - 74863 + 74868 - 2016-12-02 04:40 + 2017-03-20 14:48 @@ -15557,16 +15557,16 @@ Wikipedia - 4.880 MB + 6.953 MB - 05s + 07s - 5116862 + 7291002 - 2016-12-02 04:50 + 2017-03-20 13:47 @@ -15585,16 +15585,16 @@ Wikipedia - 3.897 MB + 3.908 MB 04s - 4086546 + 4097595 - 2016-12-02 04:30 + 2017-03-20 14:37 @@ -15613,16 +15613,16 @@ Wikipedia - 705.674 KB + 818.861 KB 00s - 722610 + 838514 - 2016-12-02 04:27 + 2017-03-20 14:22 @@ -15641,16 +15641,16 @@ Wikipedia - 19.369 MB + 19.688 MB 20s - 20309857 + 20644776 - 2016-12-02 05:31 + 2017-03-20 15:05 @@ -15669,16 +15669,16 @@ Wiktionary - 246.824 MB + 248.086 MB - 04m 18s + 04m 20s - 258814130 + 260136799 - 2016-12-02 07:47 + 2017-03-20 17:14 @@ -15697,16 +15697,16 @@ Wikibooks - 74.973 KB + 74.977 KB 00s - 76772 + 76776 - 2016-12-02 04:39 + 2017-03-20 14:31 @@ -15725,16 +15725,16 @@ Wikipedia - 17.871 KB + 17.878 KB 00s - 18300 + 18307 - 2016-12-02 04:50 + 2017-03-20 14:44 @@ -15753,16 +15753,16 @@ Wiktionary - 5.584 KB + 5.580 KB 00s - 5718 + 5714 - 2016-12-02 05:17 + 2017-03-20 14:26 @@ -15781,16 +15781,16 @@ Wikipedia - 4.052 MB + 4.119 MB 04s - 4248420 + 4319163 - 2016-12-02 04:35 + 2017-03-20 14:03 @@ -15809,16 +15809,16 @@ Wikipedia - 1.640 MB + 1.639 MB 01s - 1720181 + 1719099 - 2016-12-02 04:35 + 2017-03-20 14:40 @@ -15837,16 +15837,16 @@ Wiktionary - 353.888 KB + 358.552 KB 00s - 362381 + 367157 - 2016-12-02 04:11 + 2017-03-20 13:50 @@ -15865,16 +15865,16 @@ Wikibooks - 7.905 KB + 7.926 KB 00s - 8095 + 8116 - 2016-12-02 04:40 + 2017-03-20 13:42 @@ -15893,16 +15893,16 @@ Wikipedia - 17.404 MB + 17.453 MB 18s - 18249243 + 18300316 - 2016-12-02 05:24 + 2017-03-20 15:08 @@ -15921,16 +15921,16 @@ Wikipedia - 105.789 MB + 108.529 MB - 01m 50s + 01m 53s - 110927713 + 113800782 - 2016-12-02 05:42 + 2017-03-20 15:19 @@ -15949,16 +15949,16 @@ Wiktionary - 963.528 KB + 943.604 KB 00s - 986653 + 966250 - 2016-12-02 04:21 + 2017-03-20 13:50 @@ -15977,16 +15977,16 @@ Wikisource - 3.461 MB + 3.408 MB 03s - 3629024 + 3573411 - 2016-12-02 04:48 + 2017-03-20 14:17 @@ -16005,16 +16005,16 @@ Wikibooks - 2.112 MB + 2.113 MB 02s - 2215111 + 2215489 - 2016-12-02 04:38 + 2017-03-20 13:57 @@ -16033,16 +16033,16 @@ Wikimedia - 154.162 KB + 154.297 KB 00s - 157862 + 158000 - 2016-12-02 04:40 + 2017-03-20 14:15 @@ -16061,16 +16061,16 @@ Wikipedia - 78.577 MB + 81.733 MB - 01m 22s + 01m 25s - 82394445 + 85702853 - 2016-12-02 05:53 + 2017-03-20 15:18 @@ -16089,16 +16089,16 @@ Wiktionary - 11.502 MB + 11.525 MB 12s - 12060721 + 12084398 - 2016-12-02 05:05 + 2017-03-20 15:00 @@ -16117,16 +16117,16 @@ Wikisource - 20.909 MB + 21.028 MB - 21s + 22s - 21924163 + 22048991 - 2016-12-02 04:41 + 2017-03-20 14:08 @@ -16145,16 +16145,16 @@ Wikibooks - 525.187 KB + 527.784 KB 00s - 537791 + 540451 - 2016-12-02 04:38 + 2017-03-20 14:22 @@ -16173,16 +16173,16 @@ Wikiquote - 744.957 KB + 741.189 KB 00s - 762836 + 758978 - 2016-12-02 04:50 + 2017-03-20 14:46 @@ -16201,16 +16201,16 @@ Wikipedia - 21.553 MB + 22.345 MB - 22s + 23s - 22600031 + 23429974 - 2016-12-02 05:01 + 2017-03-20 14:57 @@ -16229,16 +16229,16 @@ Wiktionary - 6.545 MB + 6.582 MB 06s - 6862687 + 6901601 - 2016-12-02 04:23 + 2017-03-20 14:20 @@ -16257,16 +16257,16 @@ Wikibooks - 11.019 KB + 11.031 KB 00s - 11283 + 11296 - 2016-12-02 04:35 + 2017-03-20 14:12 @@ -16285,16 +16285,16 @@ Wikipedia - 397.640 KB + 396.972 KB 00s - 407183 + 406499 - 2016-12-02 04:42 + 2017-03-20 14:16 @@ -16313,16 +16313,16 @@ Wiktionary - 51.346 KB + 51.229 KB 00s - 52578 + 52458 - 2016-12-02 04:27 + 2017-03-20 14:02 @@ -16341,16 +16341,16 @@ Wikipedia - 35.016 MB + 36.918 MB - 36s + 38s - 36716665 + 38710935 - 2016-12-02 05:36 + 2017-03-20 15:10 @@ -16369,16 +16369,16 @@ Wiktionary - 1.052 MB + 1.053 MB 01s - 1103358 + 1103896 - 2016-12-02 04:49 + 2017-03-20 13:48 @@ -16397,16 +16397,16 @@ Wikisource - 5.613 MB + 5.711 MB 05s - 5886140 + 5987999 - 2016-12-02 04:57 + 2017-03-20 13:51 @@ -16425,16 +16425,16 @@ Wikibooks - 197.964 KB + 194.837 KB 00s - 202715 + 199513 - 2016-12-02 04:36 + 2017-03-20 14:38 @@ -16453,16 +16453,16 @@ Wikiquote - 198.382 KB + 204.178 KB 00s - 203143 + 209078 - 2016-12-02 04:27 + 2017-03-20 14:43 @@ -16481,16 +16481,16 @@ Wikipedia - 2.483 MB + 2.501 MB 02s - 2603648 + 2622380 - 2016-12-02 05:18 + 2017-03-20 14:01 @@ -16509,16 +16509,16 @@ Wikipedia - 7.292 MB + 7.310 MB 07s - 7645716 + 7665247 - 2016-12-02 04:36 + 2017-03-20 14:42 @@ -16537,16 +16537,16 @@ Wiktionary - 411.349 KB + 415.059 KB 00s - 421221 + 425020 - 2016-12-02 04:28 + 2017-03-20 14:51 @@ -16565,16 +16565,16 @@ Wikipedia - 4.276 KB + 4.290 KB 00s - 4379 + 4393 - 2016-12-02 04:41 + 2017-03-20 14:40 @@ -16593,16 +16593,16 @@ Wikipedia - 7.522 MB + 7.621 MB 07s - 7886901 + 7990722 - 2016-12-02 05:18 + 2017-03-20 14:09 @@ -16621,16 +16621,16 @@ Wikipedia - 24.794 MB + 26.057 MB - 25s + 27s - 25998626 + 27322673 - 2016-12-02 05:03 + 2017-03-20 14:58 @@ -16649,16 +16649,16 @@ Wiktionary - 11.869 MB + 11.895 MB 12s - 12445217 + 12472618 - 2016-12-02 05:06 + 2017-03-20 14:40 @@ -16677,16 +16677,16 @@ Wikibooks - 4.389 KB + 4.392 KB 00s - 4494 + 4497 - 2016-12-02 04:48 + 2017-03-20 14:31 @@ -16705,16 +16705,16 @@ Wikipedia - 1.880 MB + 3.438 MB - 01s + 03s - 1971078 + 3604912 - 2016-12-02 05:22 + 2017-03-20 14:01 @@ -16733,16 +16733,16 @@ Wikipedia - 5.304 MB + 5.330 MB 05s - 5561663 + 5589116 - 2016-12-02 04:46 + 2017-03-20 13:59 @@ -16761,16 +16761,16 @@ Wikipedia - 371.672 KB + 370.434 KB 00s - 380592 + 379324 - 2016-12-02 04:33 + 2017-03-20 13:42 @@ -16789,16 +16789,16 @@ Wiktionary - 268.203 KB + 272.492 KB 00s - 274640 + 279032 - 2016-12-02 04:44 + 2017-03-20 14:08 @@ -16817,16 +16817,16 @@ Wikibooks - 9.301 KB + 9.296 KB 00s - 9524 + 9519 - 2016-12-02 04:40 + 2017-03-20 14:46 @@ -16845,16 +16845,16 @@ Wikiquote - 4.088 KB + 4.093 KB 00s - 4186 + 4191 - 2016-12-02 04:36 + 2017-03-20 14:35 @@ -16873,16 +16873,16 @@ Wikipedia - 4.291 MB + 3.951 MB 04s - 4499173 + 4142853 - 2016-12-02 04:38 + 2017-03-20 14:43 @@ -16901,16 +16901,16 @@ Wiktionary - 1.045 MB + 1.048 MB 01s - 1095477 + 1098797 - 2016-12-02 04:45 + 2017-03-20 13:53 @@ -16938,7 +16938,7 @@ 5796 - 2016-12-02 04:41 + 2017-03-20 14:48 @@ -16957,16 +16957,16 @@ Wikipedia - 4.574 MB + 4.582 MB 04s - 4796518 + 4804811 - 2016-12-02 05:23 + 2017-03-20 14:45 @@ -16985,16 +16985,16 @@ Wikipedia - 23.548 MB + 23.852 MB - 24s + 25s - 24691554 + 25010630 - 2016-12-02 05:07 + 2017-03-20 14:24 @@ -17013,16 +17013,16 @@ Wiktionary - 4.034 MB + 4.047 MB 04s - 4229483 + 4243885 - 2016-12-02 05:01 + 2017-03-20 14:24 @@ -17041,16 +17041,16 @@ Wikibooks - 9.410 KB + 9.420 KB 00s - 9636 + 9646 - 2016-12-02 04:42 + 2017-03-20 14:21 @@ -17069,16 +17069,16 @@ Wikiquote - 3.280 KB + 3.296 KB 00s - 3359 + 3375 - 2016-12-02 05:13 + 2017-03-20 14:33 @@ -17097,16 +17097,16 @@ Wikipedia - 5.831 MB + 5.871 MB 06s - 6114185 + 6156269 - 2016-12-02 04:24 + 2017-03-20 14:48 @@ -17125,16 +17125,16 @@ Wikipedia - 22.229 MB + 22.762 MB 23s - 23309258 + 23867238 - 2016-12-02 05:08 + 2017-03-20 14:59 @@ -17153,16 +17153,16 @@ Wiktionary - 2.560 MB + 2.559 MB 02s - 2683935 + 2683346 - 2016-12-02 04:53 + 2017-03-20 13:44 @@ -17181,16 +17181,16 @@ Wikibooks - 891.494 KB + 940.349 KB 00s - 912890 + 962917 - 2016-12-02 04:44 + 2017-03-20 14:12 @@ -17209,16 +17209,16 @@ Wikipedia - 14.170 MB + 14.225 MB 14s - 14858361 + 14916499 - 2016-12-02 05:30 + 2017-03-20 15:06 @@ -17237,16 +17237,16 @@ Wikipedia - 81.416 KB + 81.431 KB 00s - 83370 + 83385 - 2016-12-02 05:06 + 2017-03-20 14:11 @@ -17265,16 +17265,16 @@ Wikipedia - 916.703 KB + 917.354 KB 00s - 938704 + 939371 - 2016-12-02 05:19 + 2017-03-20 14:38 @@ -17293,16 +17293,16 @@ Wikipedia - 1.159 MB + 1.152 MB 01s - 1215249 + 1207822 - 2016-12-02 04:21 + 2017-03-20 13:51 @@ -17321,16 +17321,16 @@ Wikipedia - 1.844 MB + 1.843 MB 01s - 1933476 + 1932078 - 2016-12-02 04:56 + 2017-03-20 14:13 @@ -17349,16 +17349,16 @@ Wikipedia - 1.237 MB + 1.332 MB 01s - 1297060 + 1396853 - 2016-12-02 04:38 + 2017-03-20 13:45 @@ -17377,16 +17377,16 @@ Wikipedia - 297.396 KB + 303.700 KB 00s - 304533 + 310989 - 2016-12-02 04:14 + 2017-03-20 14:41 @@ -17405,16 +17405,16 @@ Wikipedia - 58.612 MB + 60.129 MB - 01m 01s + 01m 03s - 61459629 + 63049599 - 2016-12-02 05:26 + 2017-03-20 15:11 @@ -17433,16 +17433,16 @@ Wiktionary - 4.958 MB + 5.441 MB 05s - 5198473 + 5705700 - 2016-12-02 04:29 + 2017-03-20 14:42 @@ -17461,16 +17461,16 @@ Wikibooks - 179.595 KB + 182.295 KB 00s - 183905 + 186670 - 2016-12-02 04:48 + 2017-03-20 13:40 @@ -17488,16 +17488,16 @@ Wikipedia - 838.513 KB + 915.836 KB 00s - 858637 + 937816 - 2016-12-02 04:16 + 2017-03-20 14:51 @@ -17516,16 +17516,16 @@ Wikipedia - 921.188 KB + 938.306 KB 00s - 943296 + 960825 - 2016-12-02 04:44 + 2017-03-20 14:31 @@ -17544,16 +17544,16 @@ Wiktionary - 139.691 KB + 140.262 KB 00s - 143044 + 143628 - 2016-12-02 04:43 + 2017-03-20 13:44 @@ -17572,16 +17572,16 @@ Wikipedia - 16.755 MB + 18.232 MB - 17s + 19s - 17569103 + 19117631 - 2016-12-02 04:54 + 2017-03-20 14:55 @@ -17600,16 +17600,16 @@ Wiktionary - 13.571 MB + 13.583 MB 14s - 14229888 + 14242535 - 2016-12-02 04:39 + 2017-03-20 14:43 @@ -17628,16 +17628,16 @@ Wikisource - 4.967 MB + 5.407 MB 05s - 5207761 + 5669220 - 2016-12-02 05:14 + 2017-03-20 14:52 @@ -17656,16 +17656,16 @@ Wikipedia - 5.114 MB + 5.149 MB 05s - 5362423 + 5399014 - 2016-12-02 05:11 + 2017-03-20 15:00 @@ -17684,16 +17684,16 @@ Wikipedia - 24.963 MB + 26.169 MB - 26s + 27s - 26175731 + 27440496 - 2016-12-02 05:07 + 2017-03-20 14:25 @@ -17712,16 +17712,16 @@ Wiktionary - 379.511 KB + 482.808 KB 00s - 388619 + 494395 - 2016-12-02 04:49 + 2017-03-20 14:25 @@ -17740,16 +17740,16 @@ Wikibooks - 79.903 KB + 79.870 KB 00s - 81821 + 81787 - 2016-12-02 04:52 + 2017-03-20 14:45 @@ -17768,16 +17768,16 @@ Wikipedia - 1.043 MB + 1.072 MB 01s - 1093892 + 1123999 - 2016-12-02 05:13 + 2017-03-20 14:41 @@ -17796,16 +17796,16 @@ Wikipedia - 7.599 MB + 7.630 MB - 07s + 08s - 7968530 + 8000981 - 2016-12-02 04:47 + 2017-03-20 13:46 @@ -17824,16 +17824,16 @@ Wikipedia - 1.084 MB + 1.100 MB 01s - 1136342 + 1153957 - 2016-12-02 04:47 + 2017-03-20 13:56 @@ -17852,16 +17852,16 @@ Wikipedia - 2.940 MB + 3.028 MB 03s - 3082744 + 3175068 - 2016-12-02 05:16 + 2017-03-20 13:52 @@ -17880,16 +17880,16 @@ Wikipedia - 858.508 KB + 867.236 KB 00s - 879112 + 888050 - 2016-12-02 04:18 + 2017-03-20 14:28 @@ -17908,16 +17908,16 @@ Wikipedia - 2.406 MB + 2.763 MB 02s - 2522530 + 2897371 - 2016-12-02 05:25 + 2017-03-20 14:18 @@ -17936,16 +17936,16 @@ Wikipedia - 505.940 KB + 507.281 KB 00s - 518083 + 519456 - 2016-12-02 04:33 + 2017-03-20 14:24 @@ -17964,16 +17964,16 @@ Wiktionary - 4.705 KB + 4.698 KB 00s - 4818 + 4811 - 2016-12-02 04:50 + 2017-03-20 14:44 @@ -17992,16 +17992,16 @@ Wikipedia - 489.480 KB + 492.278 KB 00s - 501228 + 504093 - 2016-12-02 05:23 + 2017-03-20 14:47 @@ -18020,16 +18020,16 @@ Wikipedia - 10.547 MB + 10.619 MB 11s - 11059376 + 11134796 - 2016-12-02 05:11 + 2017-03-20 14:56 @@ -18048,16 +18048,16 @@ Wikipedia - 12.617 MB + 14.347 MB - 13s + 15s - 13230338 + 15044397 - 2016-12-02 04:52 + 2017-03-20 14:49 @@ -18076,16 +18076,16 @@ Wiktionary - 618.988 KB + 619.828 KB 00s - 633844 + 634704 - 2016-12-02 04:47 + 2017-03-20 14:24 @@ -18104,16 +18104,16 @@ Wikipedia - 408.350 KB + 418.152 KB 00s - 418150 + 428188 - 2016-12-02 05:03 + 2017-03-20 14:21 @@ -18132,16 +18132,16 @@ Wikipedia - 9.110 MB + 9.494 MB 09s - 9552236 + 9954742 - 2016-12-02 05:23 + 2017-03-20 14:21 @@ -18160,16 +18160,16 @@ Wiktionary - 2.706 MB + 2.709 MB 02s - 2837618 + 2840945 - 2016-12-02 04:17 + 2017-03-20 14:25 @@ -18188,16 +18188,16 @@ Wikibooks - 127.167 KB + 127.049 KB 00s - 130219 + 130098 - 2016-12-02 04:36 + 2017-03-20 15:03 @@ -18216,16 +18216,16 @@ Wikipedia - 8.857 MB + 9.061 MB 09s - 9287277 + 9500877 - 2016-12-02 05:05 + 2017-03-20 14:51 @@ -18244,16 +18244,16 @@ Wiktionary - 190.522 KB + 194.543 KB 00s - 195095 + 199212 - 2016-12-02 04:52 + 2017-03-20 14:42 @@ -18272,16 +18272,16 @@ Wikibooks - 9.736 KB + 9.728 KB 00s - 9970 + 9961 - 2016-12-02 04:51 + 2017-03-20 14:01 @@ -18300,16 +18300,16 @@ Wikiquote - 3.219 KB + 3.209 KB 00s - 3296 + 3286 - 2016-12-02 04:26 + 2017-03-20 14:11 @@ -18328,16 +18328,16 @@ Wikipedia - 3.818 MB + 4.043 MB 04s - 4003015 + 4239468 - 2016-12-02 04:43 + 2017-03-20 14:43 @@ -18356,16 +18356,16 @@ Wiktionary - 7.365 KB + 7.271 KB 00s - 7542 + 7446 - 2016-12-02 04:49 + 2017-03-20 14:32 @@ -18384,16 +18384,16 @@ Wikibooks - 5.700 KB + 5.715 KB 00s - 5837 + 5852 - 2016-12-02 04:51 + 2017-03-20 13:52 @@ -18412,16 +18412,16 @@ Wikipedia - 433.813 KB + 424.173 KB 00s - 444225 + 434353 - 2016-12-02 04:21 + 2017-03-20 14:18 @@ -18440,16 +18440,16 @@ Wikipedia - 230.857 KB + 234.470 KB 00s - 236398 + 240097 - 2016-12-02 04:45 + 2017-03-20 14:17 @@ -18468,16 +18468,16 @@ Wiktionary - 4.305 KB + 4.289 KB 00s - 4408 + 4392 - 2016-12-02 04:43 + 2017-03-20 14:49 @@ -18496,16 +18496,16 @@ Wikipedia - 810.258 KB + 816.324 KB 00s - 829704 + 835916 - 2016-12-02 05:12 + 2017-03-20 14:09 @@ -18524,16 +18524,16 @@ Wiktionary - 245.977 KB + 247.216 KB 00s - 251880 + 253149 - 2016-12-02 04:44 + 2017-03-20 14:52 @@ -18552,16 +18552,16 @@ Wikipedia - 5.174 MB + 5.176 MB 05s - 5425359 + 5427663 - 2016-12-02 04:23 + 2017-03-20 14:44 @@ -18580,16 +18580,16 @@ Wikipedia - 1.985 MB + 2.142 MB 02s - 2081870 + 2246290 - 2016-12-02 05:03 + 2017-03-20 14:06 @@ -18608,16 +18608,16 @@ Wikipedia - 733.996 KB + 746.374 KB 00s - 751612 + 764287 - 2016-12-02 05:03 + 2017-03-20 13:58 @@ -18636,16 +18636,16 @@ Wiktionary - 182.674 KB + 182.928 KB 00s - 187058 + 187318 - 2016-12-02 04:46 + 2017-03-20 13:47 @@ -18664,16 +18664,16 @@ Wikipedia - 12.082 MB + 12.226 MB 12s - 12668809 + 12820156 - 2016-12-02 04:54 + 2017-03-20 14:54 @@ -18692,16 +18692,16 @@ Wiktionary - 45.561 MB + 47.331 MB - 47s + 49s - 47774237 + 49630492 - 2016-12-02 05:35 + 2017-03-20 15:06 @@ -18720,16 +18720,16 @@ Wikisource - 66.526 MB + 75.023 MB - 01m 09s + 01m 18s - 69757908 + 78666863 - 2016-12-02 05:02 + 2017-03-20 14:45 @@ -18748,16 +18748,16 @@ Wikibooks - 4.367 MB + 4.379 MB 04s - 4578810 + 4592218 - 2016-12-02 04:51 + 2017-03-20 14:38 @@ -18776,16 +18776,16 @@ Wikiquote - 1.603 MB + 1.605 MB 01s - 1681147 + 1683202 - 2016-12-02 04:15 + 2017-03-20 14:13 @@ -18804,16 +18804,16 @@ Wikipedia - 8.973 MB + 9.285 MB 09s - 9408821 + 9735850 - 2016-12-02 04:50 + 2017-03-20 14:40 @@ -18832,16 +18832,16 @@ Wikisource - 1.021 MB + 1.031 MB 01s - 1070711 + 1080899 - 2016-12-02 04:44 + 2017-03-20 14:30 @@ -18860,16 +18860,16 @@ Wikipedia - 3.126 MB + 3.272 MB 03s - 3278143 + 3431440 - 2016-12-02 05:25 + 2017-03-20 14:05 @@ -18888,16 +18888,16 @@ Wiktionary - 11.223 KB + 11.207 KB 00s - 11492 + 11476 - 2016-12-02 04:43 + 2017-03-20 13:59 @@ -18916,16 +18916,16 @@ Wikipedia - 9.795 MB + 9.793 MB 10s - 10270781 + 10269013 - 2016-12-02 05:06 + 2017-03-20 14:56 @@ -18944,16 +18944,16 @@ Wiktionary - 2.968 MB + 2.984 MB 03s - 3111810 + 3129371 - 2016-12-02 04:53 + 2017-03-20 14:54 @@ -18972,16 +18972,16 @@ Wikipedia - 40.325 MB + 41.924 MB - 42s + 43s - 42284225 + 43960360 - 2016-12-02 05:16 + 2017-03-20 15:04 @@ -19000,16 +19000,16 @@ Wikipedia - 5.750 MB + 6.339 MB 06s - 6029333 + 6647146 - 2016-12-02 05:24 + 2017-03-20 14:31 @@ -19028,16 +19028,16 @@ Wiktionary - 785.022 KB + 831.560 KB 00s - 803863 + 851517 - 2016-12-02 04:56 + 2017-03-20 13:46 @@ -19056,16 +19056,16 @@ Wikinews - 308.356 KB + 304.302 KB 00s - 315757 + 311605 - 2016-12-02 04:49 + 2017-03-20 13:51 @@ -19084,16 +19084,16 @@ Wikipedia - 2.537 MB + 2.554 MB 02s - 2660269 + 2678420 - 2016-12-02 04:29 + 2017-03-20 14:10 @@ -19121,7 +19121,7 @@ 5887 - 2016-12-02 04:51 + 2017-03-20 14:10 @@ -19140,16 +19140,16 @@ Wikimedia - 3.654 MB + 3.788 MB 03s - 3831433 + 3972056 - 2016-12-02 04:19 + 2017-03-20 13:47 @@ -19168,16 +19168,16 @@ Wikipedia - 227.661 KB + 229.836 KB 00s - 233125 + 235352 - 2016-12-02 04:54 + 2017-03-20 14:27 @@ -19196,16 +19196,16 @@ Wiktionary - 95.198 KB + 95.284 KB 00s - 97483 + 97571 - 2016-12-02 04:51 + 2017-03-20 13:57 @@ -19224,16 +19224,16 @@ Wikipedia - 28.152 MB + 29.167 MB - 29s + 30s - 29519671 + 30584136 - 2016-12-02 05:04 + 2017-03-20 14:56 @@ -19252,16 +19252,16 @@ Wiktionary - 502.735 KB + 535.549 KB 00s - 514801 + 548402 - 2016-12-02 04:50 + 2017-03-20 13:55 @@ -19280,16 +19280,16 @@ Wikibooks - 16.788 MB + 16.792 MB 17s - 17603739 + 17607826 - 2016-12-02 05:20 + 2017-03-20 13:56 @@ -19308,16 +19308,16 @@ Wikipedia - 551.365 KB + 546.650 KB 00s - 564598 + 559770 - 2016-12-02 04:30 + 2017-03-20 14:33 @@ -19336,16 +19336,16 @@ Wiktionary - 963.557 KB + 968.144 KB 00s - 986682 + 991379 - 2016-12-02 04:36 + 2017-03-20 14:15 @@ -19364,16 +19364,16 @@ Wikipedia - 1.160 MB + 1.200 MB 01s - 1216831 + 1258599 - 2016-12-02 04:20 + 2017-03-20 14:10 @@ -19392,16 +19392,16 @@ Wiktionary - 42.625 KB + 42.507 KB 00s - 43648 + 43527 - 2016-12-02 05:20 + 2017-03-20 13:47 @@ -19420,16 +19420,16 @@ Wikipedia - 5.589 MB + 5.709 MB 05s - 5860662 + 5986075 - 2016-12-02 04:49 + 2017-03-20 13:44 @@ -19448,16 +19448,16 @@ Wiktionary - 560.088 KB + 561.159 KB 00s - 573530 + 574627 - 2016-12-02 04:55 + 2017-03-20 14:30 @@ -19476,16 +19476,16 @@ Wikipedia - 58.453 MB + 60.722 MB - 01m 01s + 01m 03s - 61292259 + 63671197 - 2016-12-02 05:25 + 2017-03-20 15:11 @@ -19504,16 +19504,16 @@ Wiktionary - 6.349 MB + 6.360 MB 06s - 6656924 + 6669170 - 2016-12-02 04:43 + 2017-03-20 13:55 @@ -19532,16 +19532,16 @@ Wikibooks - 6.512 MB + 6.525 MB 06s - 6828523 + 6842421 - 2016-12-02 04:32 + 2017-03-20 14:51 @@ -19560,16 +19560,16 @@ Wikiquote - 209.153 KB + 212.978 KB 00s - 214173 + 218089 - 2016-12-02 04:46 + 2017-03-20 14:29 @@ -19588,16 +19588,16 @@ Wikinews - 636.480 KB + 638.892 KB 00s - 651756 + 654225 - 2016-12-02 04:23 + 2017-03-20 14:50 @@ -19616,16 +19616,16 @@ Wikipedia - 574.727 KB + 575.699 KB 00s - 588520 + 589516 - 2016-12-02 04:58 + 2017-03-20 13:49 @@ -19644,16 +19644,16 @@ Wikipedia - 441.813 KB + 470.954 KB 00s - 452417 + 482257 - 2016-12-02 04:57 + 2017-03-20 14:07 @@ -19672,16 +19672,16 @@ Wiktionary - 157.986 KB + 160.435 KB 00s - 161778 + 164285 - 2016-12-02 04:49 + 2017-03-20 14:19 @@ -19700,16 +19700,16 @@ Wikipedia - 291.708 KB + 299.523 KB 00s - 298709 + 306712 - 2016-12-02 04:54 + 2017-03-20 15:01 @@ -19728,16 +19728,16 @@ Wiktionary - 157.629 KB + 157.314 KB 00s - 161412 + 161090 - 2016-12-02 04:50 + 2017-03-20 14:26 @@ -19756,16 +19756,16 @@ Wikipedia - 2.594 MB + 2.590 MB 02s - 2719788 + 2715609 - 2016-12-02 04:45 + 2017-03-20 14:08 @@ -19784,16 +19784,16 @@ Wikipedia - 15.080 MB + 15.106 MB 15s - 15812639 + 15839734 - 2016-12-02 04:47 + 2017-03-20 14:47 @@ -19812,16 +19812,16 @@ Wiktionary - 256.200 KB + 252.174 KB 00s - 262349 + 258226 - 2016-12-02 05:24 + 2017-03-20 13:43 @@ -19840,16 +19840,16 @@ Wikibooks - 28.942 KB + 28.888 KB 00s - 29637 + 29581 - 2016-12-02 04:50 + 2017-03-20 14:23 @@ -19868,16 +19868,16 @@ Wikiquote - 256.929 KB + 256.840 KB 00s - 263095 + 263004 - 2016-12-02 04:50 + 2017-03-20 13:48 @@ -19896,16 +19896,16 @@ Wikipedia - 20.191 MB + 20.729 MB 21s - 21172193 + 21735532 - 2016-12-02 05:12 + 2017-03-20 15:01 @@ -19924,16 +19924,16 @@ Wiktionary - 1.648 MB + 1.654 MB 01s - 1728125 + 1734741 - 2016-12-02 04:14 + 2017-03-20 14:41 @@ -19952,16 +19952,16 @@ Wikibooks - 71.396 KB + 71.289 KB 00s - 73109 + 73000 - 2016-12-02 04:44 + 2017-03-20 14:47 @@ -19980,16 +19980,16 @@ Wikipedia - 2.706 MB + 2.774 MB 02s - 2837791 + 2909094 - 2016-12-02 04:38 + 2017-03-20 13:48 @@ -20008,16 +20008,16 @@ Wikipedia - 102.323 MB + 105.314 MB - 01m 47s + 01m 50s - 107293688 + 110430190 - 2016-12-02 05:50 + 2017-03-20 15:21 @@ -20036,16 +20036,16 @@ Wiktionary - 30.182 MB + 30.447 MB 31s - 31648031 + 31926122 - 2016-12-02 05:39 + 2017-03-20 15:15 @@ -20064,16 +20064,16 @@ Wikisource - 184.438 MB + 184.646 MB 03m 13s - 193397228 + 193614959 - 2016-12-02 05:36 + 2017-03-20 15:09 @@ -20092,16 +20092,16 @@ Wikibooks - 775.270 KB + 782.719 KB 00s - 793876 + 801504 - 2016-12-02 04:58 + 2017-03-20 13:48 @@ -20120,16 +20120,16 @@ Wikiquote - 534.352 KB + 545.131 KB 00s - 547176 + 558214 - 2016-12-02 05:11 + 2017-03-20 13:41 @@ -20148,16 +20148,16 @@ Wikinews - 2.668 MB + 2.696 MB 02s - 2797956 + 2826962 - 2016-12-02 05:20 + 2017-03-20 14:26 @@ -20176,16 +20176,16 @@ Wikipedia - 842.827 KB + 999.868 KB - 00s + 01s - 863055 + 1023865 - 2016-12-02 04:53 + 2017-03-20 14:49 @@ -20204,16 +20204,16 @@ Wikipedia - 88.280 MB + 88.644 MB 01m 32s - 92567879 + 92950029 - 2016-12-02 05:43 + 2017-03-20 15:17 @@ -20232,16 +20232,16 @@ Wiktionary - 13.740 MB + 13.787 MB 14s - 14407879 + 14457068 - 2016-12-02 05:13 + 2017-03-20 15:02 @@ -20260,16 +20260,16 @@ Wikisource - 28.233 MB + 28.784 MB - 29s + 30s - 29604622 + 30182599 - 2016-12-02 05:07 + 2017-03-20 13:51 @@ -20288,16 +20288,16 @@ Wikibooks - 157.626 KB + 159.140 KB 00s - 161409 + 162959 - 2016-12-02 04:18 + 2017-03-20 14:33 @@ -20316,16 +20316,16 @@ Wikiquote - 706.994 KB + 720.546 KB 00s - 723962 + 737839 - 2016-12-02 04:56 + 2017-03-20 13:47 @@ -20344,16 +20344,16 @@ Wikipedia - 722.490 KB + 729.304 KB 00s - 739830 + 746807 - 2016-12-02 04:43 + 2017-03-20 15:03 @@ -20372,16 +20372,16 @@ Wikipedia - 19.851 MB + 20.767 MB - 20s + 21s - 20815080 + 21776128 - 2016-12-02 05:17 + 2017-03-20 15:04 @@ -20400,16 +20400,16 @@ Wiktionary - 3.246 MB + 3.986 MB - 03s + 04s - 3404017 + 4179872 - 2016-12-02 04:17 + 2017-03-20 14:10 @@ -20428,16 +20428,16 @@ Wikibooks - 80.586 KB + 211.657 KB 00s - 82520 + 216737 - 2016-12-02 04:52 + 2017-03-20 15:02 @@ -20456,16 +20456,16 @@ Wikipedia - 248.999 KB + 261.522 KB 00s - 254975 + 267799 - 2016-12-02 04:45 + 2017-03-20 14:51 @@ -20484,16 +20484,16 @@ Wiktionary - 116.410 KB + 116.606 KB 00s - 119204 + 119405 - 2016-12-02 04:53 + 2017-03-20 13:42 @@ -20512,16 +20512,16 @@ Wikipedia - 3.488 MB + 3.650 MB 03s - 3657808 + 3827361 - 2016-12-02 04:37 + 2017-03-20 14:18 @@ -20540,16 +20540,16 @@ Wiktionary - 602.849 KB + 605.308 KB 00s - 617317 + 619835 - 2016-12-02 05:01 + 2017-03-20 15:03 @@ -20568,16 +20568,16 @@ Wikibooks - 68.157 KB + 68.150 KB 00s - 69793 + 69786 - 2016-12-02 04:46 + 2017-03-20 14:36 @@ -20605,7 +20605,7 @@ 7085 - 2016-12-02 04:54 + 2017-03-20 13:58 @@ -20624,16 +20624,16 @@ Wikipedia - 36.370 MB + 37.257 MB - 38s + 39s - 38137120 + 39067008 - 2016-12-02 05:32 + 2017-03-20 15:12 @@ -20652,16 +20652,16 @@ Wiktionary - 3.278 MB + 3.289 MB 03s - 3436714 + 3448793 - 2016-12-02 04:34 + 2017-03-20 13:54 @@ -20680,16 +20680,16 @@ Wikibooks - 497.979 KB + 532.779 KB 00s - 509931 + 545566 - 2016-12-02 05:13 + 2017-03-20 13:52 @@ -20708,16 +20708,16 @@ Wikipedia - 1.035 MB + 1.079 MB 01s - 1085409 + 1130908 - 2016-12-02 04:58 + 2017-03-20 14:06 @@ -20736,16 +20736,16 @@ Wiktionary - 96.849 KB + 99.121 KB 00s - 99173 + 101500 - 2016-12-02 04:55 + 2017-03-20 14:48 @@ -20764,16 +20764,16 @@ Wikipedia - 653.633 KB + 620.223 KB 00s - 669320 + 635108 - 2016-12-02 05:17 + 2017-03-20 14:02 @@ -20792,16 +20792,16 @@ Wiktionary - 41.858 KB + 41.712 KB 00s - 42863 + 42713 - 2016-12-02 04:54 + 2017-03-20 14:13 @@ -20820,16 +20820,16 @@ Wikipedia - 1.208 MB + 1.217 MB 01s - 1266496 + 1276027 - 2016-12-02 04:43 + 2017-03-20 13:54 @@ -20848,16 +20848,16 @@ Wiktionary - 127.113 KB + 129.285 KB 00s - 130164 + 132388 - 2016-12-02 04:45 + 2017-03-20 14:27 @@ -20876,16 +20876,16 @@ Wikipedia - 577.172 KB + 583.378 KB 00s - 591024 + 597379 - 2016-12-02 04:47 + 2017-03-20 14:52 @@ -20904,16 +20904,16 @@ Wiktionary - 131.565 KB + 135.374 KB 00s - 134723 + 138623 - 2016-12-02 04:55 + 2017-03-20 15:04 @@ -20932,16 +20932,16 @@ Wikipedia - 39.765 MB + 40.420 MB - 41s + 42s - 41696659 + 42383940 - 2016-12-02 05:31 + 2017-03-20 15:17 @@ -20960,16 +20960,16 @@ Wiktionary - 748.771 KB + 751.043 KB 00s - 766742 + 769068 - 2016-12-02 05:19 + 2017-03-20 13:51 @@ -20988,16 +20988,16 @@ Wikibooks - 967.158 KB + 964.683 KB 00s - 990370 + 987835 - 2016-12-02 04:59 + 2017-03-20 14:36 @@ -21016,16 +21016,16 @@ Wikiquote - 5.757 KB + 5.755 KB 00s - 5895 + 5893 - 2016-12-02 05:10 + 2017-03-20 14:32 @@ -21044,16 +21044,16 @@ Wikipedia - 214.182 KB + 218.217 KB 00s - 219322 + 223454 - 2016-12-02 04:59 + 2017-03-20 13:51 @@ -21072,16 +21072,16 @@ Wikipedia - 171.893 KB + 173.417 KB 00s - 176018 + 177579 - 2016-12-02 05:11 + 2017-03-20 13:52 @@ -21100,16 +21100,16 @@ Wiktionary - 42.620 KB + 42.570 KB 00s - 43643 + 43592 - 2016-12-02 04:56 + 2017-03-20 14:02 @@ -21128,16 +21128,16 @@ Wikipedia - 376.120 KB + 374.581 KB 00s - 385147 + 383571 - 2016-12-02 05:14 + 2017-03-20 14:19 @@ -21156,16 +21156,16 @@ Wikipedia - 1.368 MB + 1.443 MB 01s - 1434304 + 1513252 - 2016-12-02 04:54 + 2017-03-20 14:50 @@ -21184,16 +21184,16 @@ Wikimedia - 2.407 MB + 2.836 MB 02s - 2523703 + 2973896 - 2016-12-02 05:04 + 2017-03-20 14:14 @@ -21212,16 +21212,16 @@ Wikipedia - 1.759 MB + 1.821 MB 01s - 1844348 + 1909853 - 2016-12-02 04:47 + 2017-03-20 13:47 @@ -21240,16 +21240,16 @@ Wikipedia - 4.593 MB + 4.955 MB - 04s + 05s - 4815894 + 5195758 - 2016-12-02 05:24 + 2017-03-20 14:20 @@ -21268,16 +21268,16 @@ Wiktionary - 675.791 KB + 677.349 KB 00s - 692010 + 693605 - 2016-12-02 05:00 + 2017-03-20 14:37 @@ -21296,16 +21296,16 @@ Wikibooks - 7.845 KB + 7.855 KB 00s - 8033 + 8044 - 2016-12-02 04:31 + 2017-03-20 15:03 @@ -21324,16 +21324,16 @@ Wikiquote - 6.703 KB + 6.691 KB 00s - 6864 + 6852 - 2016-12-02 04:56 + 2017-03-20 13:41 @@ -21352,16 +21352,16 @@ Wikipedia - 84.490 MB + 89.540 MB - 01m 28s + 01m 33s - 88593676 + 93889981 - 2016-12-02 06:10 + 2017-03-20 15:33 @@ -21380,16 +21380,16 @@ Wiktionary - 1.024 MB + 1.025 MB 01s - 1073763 + 1074912 - 2016-12-02 04:47 + 2017-03-20 13:39 @@ -21408,16 +21408,16 @@ Wikibooks - 1.120 MB + 1.125 MB 01s - 1174545 + 1179180 - 2016-12-02 05:12 + 2017-03-20 15:01 @@ -21436,16 +21436,16 @@ Wikiquote - 439.484 KB + 445.308 KB 00s - 450032 + 455995 - 2016-12-02 04:33 + 2017-03-20 14:36 @@ -21464,16 +21464,16 @@ Wikipedia - 46.989 MB + 47.286 MB 49s - 49271817 + 49582554 - 2016-12-02 06:03 + 2017-03-20 15:24 @@ -21492,16 +21492,16 @@ Wiktionary - 21.657 MB + 21.919 MB 22s - 22709499 + 22983318 - 2016-12-02 05:12 + 2017-03-20 15:03 @@ -21520,16 +21520,16 @@ Wikibooks - 146.245 KB + 146.681 KB 00s - 149755 + 150201 - 2016-12-02 04:56 + 2017-03-20 14:37 @@ -21548,16 +21548,16 @@ Wikiquote - 33.209 KB + 33.322 KB 00s - 34006 + 34122 - 2016-12-02 05:09 + 2017-03-20 14:47 @@ -21576,16 +21576,16 @@ Wikipedia - 221.961 KB + 230.188 KB 00s - 227288 + 235713 - 2016-12-02 05:00 + 2017-03-20 13:47 @@ -21604,16 +21604,16 @@ Wikipedia - 8.695 MB + 8.725 MB 09s - 9117135 + 9149100 - 2016-12-02 04:51 + 2017-03-20 14:54 @@ -21632,16 +21632,16 @@ Wiktionary - 643.323 KB + 659.648 KB 00s - 658763 + 675480 - 2016-12-02 05:14 + 2017-03-20 13:55 @@ -21660,16 +21660,16 @@ Wikisource - 3.904 MB + 4.066 MB 04s - 4093406 + 4263044 - 2016-12-02 05:19 + 2017-03-20 14:49 @@ -21688,16 +21688,16 @@ Wikipedia - 2.293 MB + 2.469 MB 02s - 2404521 + 2588528 - 2016-12-02 04:15 + 2017-03-20 14:34 @@ -21716,16 +21716,16 @@ Wikipedia - 5.243 MB + 5.311 MB 05s - 5497246 + 5568678 - 2016-12-02 04:27 + 2017-03-20 14:04 @@ -21744,16 +21744,16 @@ Wikipedia - 6.890 MB + 6.946 MB 07s - 7224958 + 7283532 - 2016-12-02 04:32 + 2017-03-20 14:57 @@ -21772,16 +21772,16 @@ Wiktionary - 5.425 MB + 5.540 MB 05s - 5688373 + 5809474 - 2016-12-02 04:26 + 2017-03-20 14:10 @@ -21800,16 +21800,16 @@ Wikibooks - 4.715 KB + 4.724 KB 00s - 4828 + 4837 - 2016-12-02 05:19 + 2017-03-20 14:16 @@ -21828,16 +21828,16 @@ Wikipedia - 183.051 MB + 183.234 MB - 03m 11s + 03m 12s - 191942486 + 192134994 - 2016-12-02 07:17 + 2017-03-20 16:32 @@ -21856,16 +21856,16 @@ Wikipedia - 1.412 MB + 1.427 MB 01s - 1480588 + 1496813 - 2016-12-02 05:21 + 2017-03-20 13:59 @@ -21884,16 +21884,16 @@ Wiktionary - 367.323 KB + 367.888 KB 00s - 376139 + 376717 - 2016-12-02 05:01 + 2017-03-20 14:00 @@ -21912,16 +21912,16 @@ Wikiquote - 10.865 KB + 10.800 KB 00s - 11126 + 11059 - 2016-12-02 04:45 + 2017-03-20 14:21 @@ -21940,16 +21940,16 @@ Wikipedia - 4.248 MB + 4.495 MB 04s - 4454573 + 4713496 - 2016-12-02 04:31 + 2017-03-20 14:38 @@ -21968,16 +21968,16 @@ Wikipedia - 1.320 MB + 1.312 MB 01s - 1384042 + 1376005 - 2016-12-02 05:24 + 2017-03-20 14:54 @@ -21996,16 +21996,16 @@ Wikipedia - 827.387 KB + 860.074 KB 00s - 847244 + 880716 - 2016-12-02 05:16 + 2017-03-20 13:44 @@ -22024,16 +22024,16 @@ Wiktionary - 37.215 KB + 37.207 KB 00s - 38108 + 38100 - 2016-12-02 04:59 + 2017-03-20 14:31 @@ -22052,16 +22052,16 @@ Wikibooks - 8.132 KB + 8.135 KB 00s - 8327 + 8330 - 2016-12-02 04:58 + 2017-03-20 14:49 @@ -22080,16 +22080,16 @@ Wikipedia - 7.128 MB + 7.725 MB - 07s + 08s - 7474697 + 8099801 - 2016-12-02 04:36 + 2017-03-20 14:41 @@ -22108,16 +22108,16 @@ Wikipedia - 8.952 MB + 9.107 MB 09s - 9386450 + 9548997 - 2016-12-02 04:56 + 2017-03-20 14:53 @@ -22136,16 +22136,16 @@ Wiktionary - 453.637 KB + 454.985 KB 00s - 464524 + 465905 - 2016-12-02 05:16 + 2017-03-20 13:57 @@ -22164,16 +22164,16 @@ Wikisource - 3.950 MB + 3.953 MB 04s - 4141579 + 4145468 - 2016-12-02 04:27 + 2017-03-20 14:20 @@ -22192,16 +22192,16 @@ Wikipedia - 9.045 MB + 9.101 MB 09s - 9484693 + 9543587 - 2016-12-02 04:57 + 2017-03-20 14:48 @@ -22220,16 +22220,16 @@ Wiktionary - 42.187 KB + 42.093 KB 00s - 43199 + 43103 - 2016-12-02 04:32 + 2017-03-20 14:24 @@ -22248,16 +22248,16 @@ Wikibooks - 5.060 KB + 5.063 KB 00s - 5181 + 5185 - 2016-12-02 05:15 + 2017-03-20 13:54 @@ -22276,16 +22276,16 @@ Wikipedia - 482.329 KB + 484.812 KB 00s - 493905 + 496447 - 2016-12-02 04:42 + 2017-03-20 14:51 @@ -22304,16 +22304,16 @@ Wiktionary - 45.386 KB + 45.391 KB 00s - 46475 + 46480 - 2016-12-02 05:13 + 2017-03-20 14:26 @@ -22332,16 +22332,16 @@ Wikibooks - 9.092 KB + 9.085 KB 00s - 9310 + 9303 - 2016-12-02 04:45 + 2017-03-20 13:40 @@ -22360,16 +22360,16 @@ Wikiquote - 3.820 KB + 3.821 KB 00s - 3912 + 3913 - 2016-12-02 04:24 + 2017-03-20 14:32 @@ -22388,16 +22388,16 @@ Wikipedia - 2.083 MB + 2.085 MB 02s - 2184354 + 2186477 - 2016-12-02 04:19 + 2017-03-20 14:06 @@ -22416,16 +22416,16 @@ Wikipedia - 8.866 MB + 9.347 MB 09s - 9296474 + 9800664 - 2016-12-02 04:34 + 2017-03-20 14:58 @@ -22444,16 +22444,16 @@ Wikipedia - 28.961 MB + 30.336 MB - 30s + 31s - 30367549 + 31809488 - 2016-12-02 06:04 + 2017-03-20 15:30 @@ -22472,16 +22472,16 @@ Wiktionary - 2.372 MB + 2.410 MB 02s - 2487249 + 2526730 - 2016-12-02 04:34 + 2017-03-20 14:18 @@ -22500,16 +22500,16 @@ Wikisource - 4.163 MB + 4.175 MB 04s - 4365251 + 4378018 - 2016-12-02 04:11 + 2017-03-20 14:52 @@ -22528,16 +22528,16 @@ Wikibooks - 25.636 KB + 25.643 KB 00s - 26251 + 26258 - 2016-12-02 05:20 + 2017-03-20 14:51 @@ -22556,16 +22556,16 @@ Wikiquote - 31.146 KB + 31.161 KB 00s - 31894 + 31909 - 2016-12-02 05:13 + 2017-03-20 14:02 @@ -22584,16 +22584,16 @@ Wikipedia - 32.115 MB + 33.731 MB - 33s + 35s - 33675212 + 35369966 - 2016-12-02 05:36 + 2017-03-20 15:08 @@ -22612,16 +22612,16 @@ Wikipedia - 1.166 MB + 1.193 MB 01s - 1222959 + 1250702 - 2016-12-02 05:02 + 2017-03-20 14:07 @@ -22640,16 +22640,16 @@ Wiktionary - 165.545 KB + 167.430 KB 00s - 169518 + 171448 - 2016-12-02 05:02 + 2017-03-20 14:00 @@ -22668,22 +22668,22 @@ Wikibooks - 7.795 KB + 7.706 KB 00s - 7982 + 7891 - 2016-12-02 05:00 + 2017-03-20 13:44
    1. - ^ last updated on 2016-12-04 + ^ last updated on 2017-03-28
    diff --git a/home/wiki/Dashboard/Wiki_maintenance.html b/home/wiki/Dashboard/Wiki_maintenance.html index 872b84c7d..15f4f8de6 100644 --- a/home/wiki/Dashboard/Wiki_maintenance.html +++ b/home/wiki/Dashboard/Wiki_maintenance.html @@ -115,126 +115,21 @@ Search[11] - - - bo.wikibooks.org - - - n - - - 2017-03-01 - - - 2015-08-05 - - - Dump complete - - - sqlite3 - - - v0 - - - v1 - - - - - - - - - - - - - - bo.wikipedia.org - - - n - - - 2017-03-01 - - - 2015-08-05 - - - Dump complete - - - sqlite3 - - - v0 - - - v1 - - - - - - - - - - - - - - bo.wiktionary.org - - - n - - - 2017-03-01 - - - 2015-08-05 - - - Dump complete - - - sqlite3 - - - v0 - - - v1 - - - - - - - - - - - commons.wikimedia.org - n + y 2017-03-08 - 2015-08-06 + 2017-03-20 - Dump in progress + Dump complete sqlite3 @@ -294,13 +189,13 @@ en.wikipedia.org - n + y 2017-03-08 - 2015-08-05 + 2017-03-20 Dump complete @@ -326,16 +221,16 @@ - hi.wikibooks.org + en.wikivoyage.org - n + y - 2017-03-01 + 2016-10-01 - 2015-08-06 + 2017-03-20 Dump complete @@ -350,118 +245,13 @@ v1 - + - + - - - - - - hi.wikipedia.org - - - n - - - 2017-03-01 - - - 2015-08-07 - - - Dump complete - - - sqlite3 - - - v0 - - - v1 - - - - - - - - - - - - - - hi.wikiquote.org - - - n - - - 2017-03-01 - - - 2015-08-06 - - - Dump complete - - - sqlite3 - - - v0 - - - v1 - - - - - - - - - - - - - - hi.wiktionary.org - - - n - - - 2017-03-01 - - - 2015-08-06 - - - Dump complete - - - sqlite3 - - - v0 - - - v1 - - - - - - - - - + @@ -498,88 +288,18 @@ - - - ru.wikibooks.org - - - n - - - 2017-03-01 - - - 2015-08-05 - - - Dump complete - - - sqlite3 - - - v0 - - - v1 - - - - - - - - - - - - - - ru.wikinews.org - - - n - - - 2017-03-01 - - - 2015-08-05 - - - Dump complete - - - sqlite3 - - - v0 - - - v1 - - - - - - - - - - - ru.wikipedia.org - n + y 2017-03-01 - 2015-08-06 + 2017-03-20 Dump complete @@ -603,206 +323,31 @@ - - - ru.wikiquote.org - - - n - - - 2017-03-01 - - - 2015-08-05 - - - Dump complete - - - sqlite3 - - - v0 - - - v1 - - - - - - - - - - - - - - ru.wikisource.org - - - n - - - 2017-03-01 - - - 2015-08-06 - - - Dump complete - - - sqlite3 - - - v0 - - - v1 - - - - - - - - - - - - - - ru.wikiversity.org - - - n - - - 2017-03-01 - - - 2015-08-05 - - - Dump complete - - - sqlite3 - - - v0 - - - v1 - - - - - - - - - - - - - - ru.wikivoyage.org - - - n - - - 2017-03-01 - - - 2015-08-06 - - - Dump complete - - - sqlite3 - - - v0 - - - v1 - - - - - - - - - - - - - - ru.wiktionary.org - - - n - - - 2017-03-01 - - - 2015-08-07 - - - Dump complete - - - sqlite3 - - - v0 - - - v1 - - - - - - - - - - - simple.wikipedia.org - n + y - 2016-12-01 + 1969-12-31 - 2015-08-06 + 2017-03-20 Dump complete - sqlite3 - - - v0 + xdat v1 + + v2 + @@ -815,16 +360,84 @@ - www.wikidata.org + simple1.wikipedia.org n + + 2016-12-01 + + + + + <<NULL>> + + + sqlite3 + + + v0 + + + v1 + + + + + + + + + + + + + + simple2.wikipedia.org + + + n + + + 2016-12-01 + + + + + <<NULL>> + + + sqlite3 + + + v0 + + + v1 + + + + + + + + + + + + + + www.wikidata.org + + + y + 2017-03-07 - 2015-08-05 + 2017-03-20 Dump complete diff --git a/home/wiki/Diagnostics.html b/home/wiki/Diagnostics.html index fd9caa039..094a45eb3 100644 --- a/home/wiki/Diagnostics.html +++ b/home/wiki/Diagnostics.html @@ -52,7 +52,7 @@ Diagnostics/Javascript/Timeline
  • - Diagnostics/Javascript/Graph + Diagnostics/Javascript/Graph
  • @@ -89,7 +89,7 @@ Diagnostics/Scribunto/All

    diff --git a/home/wiki/Diagnostics/Scribunto/All.html b/home/wiki/Diagnostics/Scribunto/All.html index 69a2a7129..861d99487 100644 --- a/home/wiki/Diagnostics/Scribunto/All.html +++ b/home/wiki/Diagnostics/Scribunto/All.html @@ -27,7 +27,7 @@