) {
+ next if /^\s*#/;
+ if (m|^/(.*)/(\w*)\s*$|) {
+ if ($2 eq 'i') {
+ push @ign_relist, qr/$1/i;
+ }
+ else {
+ push @ign_relist, qr/$1/;
+ }
+ }
+ else {
+ s/\s+$/\n/;
+ $ign_hash{$_} = 1;
+ }
+ }
+ close J;
+ }
+
+ my $sometime = time;
+ die "Cannot open '$adbpath.new': $!\n" unless open O, '>', $adbpath.'.new';
+ die "Cannot open '$actpath.new': $!\n" unless open A, '>', $actpath.'.new';
+ $_ = $sometime; s/(..)\B/$1\t/g; # FYI: s/..\B\K/\t/g requires perl 5.10.
+ print O "v4\t$_\n";
+
+ # The following code block is from Email::Address, almost verbatim.
+ # The reasons to snip code I instead of just 'use Email::Address' are:
+ # 1) Some systems ship Mail::Address instead of Email::Address
+ # 2) Every user doesn't have ability to install Email::Address
+ # --8<----8<----8<----8<----8<----8<----8<----8<----8<----8<----8<--
+
+ ## no critic RequireUseWarnings
+ # support pre-5.6
+
+ #$VERSION = '1.889';
+ my $COMMENT_NEST_LEVEL = 2;
+
+ my $CTL = q{\x00-\x1F\x7F};
+ my $special = q{()<>\\[\\]:;@\\\\,."};
+
+ my $text = qr/[^\x0A\x0D]/;
+
+ my $quoted_pair = qr/\\$text/;
+
+ my $ctext = qr/(?>[^()\\]+)/;
+ my ($ccontent, $comment) = (q{})x2;
+ for (1 .. $COMMENT_NEST_LEVEL) {
+ $ccontent = qr/$ctext|$quoted_pair|$comment/;
+ $comment = qr/\s*\((?:\s*$ccontent)*\s*\)\s*/;
+ }
+ my $cfws = qr/$comment|\s+/;
+
+ my $atext = qq/[^$CTL$special\\s]/;
+ my $atom = qr/$cfws*$atext+$cfws*/;
+ my $dot_atom_text = qr/$atext+(?:\.$atext+)*/;
+ my $dot_atom = qr/$cfws*$dot_atom_text$cfws*/;
+
+ my $qtext = qr/[^\\"]/;
+ my $qcontent = qr/$qtext|$quoted_pair/;
+ my $quoted_string = qr/$cfws*"$qcontent+"$cfws*/;
+
+ my $word = qr/$atom|$quoted_string/;
+
+# XXX: This ($phrase) used to just be: my $phrase = qr/$word+/; It was changed
+# to resolve bug 22991, creating a significant slowdown. Given current speed
+# problems. Once 16320 is resolved, this section should be dealt with.
+# -- rjbs, 2006-11-11
+ #my $obs_phrase = qr/$word(?:$word|\.|$cfws)*/;
+
+# XXX: ...and the above solution caused endless problems (never returned) when
+# examining this address, now in a test:
+# admin+=E6=96=B0=E5=8A=A0=E5=9D=A1_Weblog-- ATAT --test.socialtext.com
+# So we disallow the hateful CFWS in this context for now. Of modern mail
+# agents, only Apple Web Mail 2.0 is known to produce obs-phrase.
+# -- rjbs, 2006-11-19
+ my $simple_word = qr/$atom|\.|\s*"$qcontent+"\s*/;
+ my $obs_phrase = qr/$simple_word+/;
+
+ my $phrase = qr/$obs_phrase|(?:$word+)/;
+
+ my $local_part = qr/$dot_atom|$quoted_string/;
+ my $dtext = qr/[^\[\]\\]/;
+ my $dcontent = qr/$dtext|$quoted_pair/;
+ my $domain_literal = qr/$cfws*\[(?:\s*$dcontent)*\s*\]$cfws*/;
+ my $domain = qr/$dot_atom|$domain_literal/;
+
+ my $display_name = $phrase;
+
+ my $addr_spec = qr/$local_part\@$domain/;
+ my $angle_addr = qr/$cfws*<$addr_spec>$cfws*/;
+ my $name_addr = qr/$display_name?$angle_addr/;
+ my $mailbox = qr/(?:$name_addr|$addr_spec)$comment*/;
+
+ # --8<----8<----8<----8<----8<----8<----8<----8<----8<----8<----8<--
+
+ # In this particular purpose the cache code used in...
+ my %seen; # ...Email::Address is "replaced" by %seen & %hash.
+ my %hash;
+
+ my $ptime = $sometime + 5;
+ my $addrcount = 0;
+ $| = 1;
+ open P, '-|', qw/notmuch search --sort=newest-first --output=files/, $sstr;
+ while () {
+ chomp;
+ open M, '<', $_ or next;
+
+ while () {
+ last if /^\s*$/;
+ next unless s/^(From|To|Cc|Bcc):\s+//i;
+ s/\s+$//;
+ my @a = ( $_ );
+ while () {
+ # XXX leaks to body in case empty line is found in this loop...
+ # XXX Note that older code leaked to mail body always...
+ if (s/^\s+// or s/^(From|To|Cc|Bcc):\s+/,/i) {
+ s/\s+$//;
+ push @a, $_;
+ next;
+ }
+ last;
+ }
+ $_ = join ' ', @a;
+
+ if (time > $ptime) {
+ my $c = qw(/ - \ |)[int ($ptime / 5) % 4];
+ print $c, ' active addresses gathered: ', $addrcount, "\r";
+ $ptime += 5;
+ }
+
+ # The parse function from Email::Address heavily modified
+ # to fit ok in this particular purpose. New bugs are mine!
+ # --8<----8<----8<----8<----8<----8<----8<----8<----8<----8<----8<--
+
+ s/[ \t]+/ /g;
+ s/\?= =\?/\?==\?/g;
+ my (@mailboxes) = (/$mailbox/go);
+ L: foreach (@mailboxes) {
+ next if $seen{$_};
+ $seen{$_} = 1;
+
+ my @comments = /($comment)/go;
+ s/$comment//go if @comments;
+
+ my ($user, $host);
+ ($user, $host) = ($1, $2) if s/<($local_part)\@($domain)>//o;
+ if (! defined($user) || ! defined($host)) {
+ s/($local_part)\@($domain)//o;
+ ($user, $host) = ($1, $2);
+ }
+
+ sub decode_substring ($) {
+ my $t = lc $2;
+ my $s;
+ if ($t eq 'b') { $s = decode_base64($3); }
+ elsif ($t eq 'q') { $s = decode_qp($3); }
+ else {
+ $_[0] = 0;
+ return "=?$1?$2?$3?=";
+ }
+ $s =~ tr/_/ /;
+
+ return $s if lc $1 eq 'utf-8';
+
+ my $o = find_encoding($1);
+ $_[0] = 0, return "=?$1?$2?$3?=" unless ref $o;
+ return encode_utf8($o->decode($s));
+ }
+ sub decode_data () {
+ my $loopmax = 5;
+ while ( s{ =\?([^?]+)\?(\w)\?(.*?)\?= }
+ { decode_substring($loopmax) }gex ) {
+ last if --$loopmax <= 0;
+ };
+ }
+
+ my @phrase = /($display_name)/o;
+ decode_data foreach (@phrase);
+
+ for ( @phrase, $host, $user, @comments ) {
+ next unless defined $_;
+ s/^[\s'"]+//; ## additions 20111123 too
+ s/[\s'"]+$//; ## additions 20111123 too
+ $_ = undef unless length $_;
+ }
+ # here we want to have email address always // 20111123 too
+ next unless defined $user and defined $host;
+
+ my $userhost = lc "<$user\@$host>";
+ #my $userhost = "<$user\@$host>";
+
+ @comments = grep { defined or return 0; decode_data; 1; } @comments;
+
+ # "trim" phrase, if equals to user@host after trimming, drop it.
+ if (defined $phrase[0]) {
+ #$phrase[0] =~s/\A"(.+)"\z/$1/;
+ $phrase[0] =~ tr/\\//d; ## 20111124 too
+ $phrase[0] =~ s/\"/\\"/g;
+ @phrase = () if lc "<$phrase[0]>" eq $userhost;
+ }
+
+ # In case we would have {phrase} (comment),
+ # make that "{phrase} (comment)" ...
+ if (defined $phrase[0]) {
+ if (@comments) {
+ $phrase[0] = qq/"$phrase[0] / . join(' ', @comments) . '"';
+ @comments = ();
+ }
+ else {
+ $phrase[0] = qq/"$phrase[0]"/;
+ }
+ }
+ else {
+ @phrase = ();
+ }
+ $_ = join(' ', @phrase, $userhost, @comments) . "\n";
+ next if defined $hash{$_};
+ print O $_;
+ $hash{$_} = 1;
+ next if defined $ign_hash{$_};
+ foreach my $re (@ign_relist) {
+ next L if $_ =~ $re;
+ }
+ print A $_;
+ $addrcount++;
+ }
+ # --8<----8<----8<----8<----8<----8<----8<----8<----8<----8<----8<--
+ }
+ close M;
+ }
+ undef %seen;
+ close P;
+ my $oldaddrcount = 0;
+ if ($sstr ne '*') {
+ L: while () {
+ last if /^---/;
+ next if defined $hash{$_};
+ print O $_;
+ next if defined $ign_hash{$_};
+ foreach my $re (@ign_relist) {
+ next L if $_ =~ $re;
+ }
+ print A $_;
+ $addrcount++;
+ }
+ while () {
+ $oldaddrcount = ($1 + 0), next if /^active:\s+(\d+)\s*$/;
+ }
+ close I;
+ }
+ print O "---\n";
+ print O "active: ", $addrcount, "\n";
+ close O;
+ close A;
+ undef %hash;
+ #link $adbpath, $adbpath . '.' . $sometime;
+ rename $adbpath . '.new', $adbpath or
+ die "Cannot rename '$adbpath.new' to '$adbpath': $!\n";
+ rename $actpath . '.new', $actpath or
+ die "Cannot rename '$actpath.new' to '$actpath': $!\n";
+ if ($oldaddrcount or $sstr eq '*') {
+ $sometime = time - $sometime;
+ my $new = $addrcount - $oldaddrcount;
+ print "Added $new active addresses in $sometime seconds.\n";
+ }
+ print "Total number of active addresses: $addrcount.\n";
+ exit 0;
+}
+
+die "$0: '$ARGV[0]': unknown option.\n";
+
+__END__
+
+=encoding utf8
+
+=head1 NAME
+
+nottoomuch-addresses.sh -- address completion/matching (for notmuch)
+
+=head1 SYNOPSIS
+
+nottoomuch-addresses.sh ( --update [--rebuild] | )
+
+B for more help
+
+=head1 VERSION
+
+2.2 (2014-03-29)
+
+=head1 OPTIONS
+
+=head2 B<--update>
+
+This option is used to initially create the "address database" for
+searches to be done, and then incrementally update it with new
+addresses that are available in mails received since last update.
+
+In case you want to rebuild the database from scratch, add
+B<--rebuild> after --update on command line. This is necessary if some
+of the new emails received have Date: header point too much in the
+past (one week before last update). Update used emails Date:
+information to go through new emails to be checked for new addresses
+with one week's overlap. Other reason for rebuild could be
+enhancements in new versions of this program which change the email
+format in database.
+
+=head2
+
+In case no option argument is given on command line, the command line
+arguments are used as fixed search string. Search goes through all
+email addresses in database and outputs every address (separated by
+newline) where a substring match with the given search string is
+found. No wildcard of regular expression matching is used.
+
+Search is not done unless there is at least 3 octets in search string.
+
+=head1 IGNORE FILE
+
+Some of the addresses collected may be valid but those still seems to
+be noisy junk. One may additionally want to just hide some email
+addresses.
+
+When running B<--update> the output shows the path of address database
+file (usually C<$HOME/.config/nottoomuch/addresses>). If there is file
+C in the same directory that file is read as
+newline-separated list of addresses which are not to be included in
+address database file.
+
+Use your text editor to open both of these files. Then move address
+lines to be ignored from B to B. After
+saving these 2 files the moved addresses will not reappear in
+B file again.
+
+Version 2.0 of nottoomuch-addresses.sh supports regular expressions in
+ignore file. Lines in format I or I defines (perl)
+Is which are used to match email addresses for ignoring. The
+I format makes regular expression case-insensitive -- although this
+is only applied to characters in ranges I and I. Remember that
+I^.*regexp.*$/> and I provides same set of matching lines.
+
+=head1 LICENSE
+
+This program uses code from Email::Address perl module. Inclusion of
+that makes it easy to define license for the whole of this code base:
+
+Terms of Perl itself
+
+a) the GNU General Public License as published by the Free
+ Software Foundation; either version 1, or (at your option) any
+ later version, or
+
+b) the "Artistic License"
+
+=head1 SEE ALSO
+
+L, L
+
+=head1 AUTHOR
+
+Tomi Ollila -- too ät iki piste fi
+
+=head1 ACKNOWLEDGMENTS
+
+This program uses code from Email::Address, Copyright (c) by Casey West
+and maintained by Ricardo Signes. Thank you. All new bugs are mine,
+though.
diff --git a/nsnat b/nsnat
new file mode 100644
index 0000000..fa9c759
--- /dev/null
+++ b/nsnat
@@ -0,0 +1,2 @@
+iptables -t nat -A POSTROUTING -o eth0 -s 172.16.23.10 -j SNAT --to 62.65.138.74
+iptables -t nat -A POSTROUTING -o eth0 -s 172.16.23.6 -j SNAT --to 62.65.138.74
diff --git a/nsstart b/nsstart
new file mode 100644
index 0000000..4d9122d
--- /dev/null
+++ b/nsstart
@@ -0,0 +1,4 @@
+~/bin/home/route start
+cd /tmp/seti
+./setiathome &
+su -l nico -c startx
diff --git a/oops b/oops
new file mode 100755
index 0000000..f5ad594
--- /dev/null
+++ b/oops
@@ -0,0 +1,71 @@
+#!/usr/bin/perl -wT
+#
+# TWiki Collaboration Platform, http://TWiki.org/
+#
+# Copyright (C) 1999-2003 Peter Thoeny, peter@thoeny.com
+#
+# For licensing info read license.txt file in the TWiki root.
+# This program is free software; you can redistribute it and/or
+# modify it under the terms of the GNU General Public License
+# as published by the Free Software Foundation; either version 2
+# of the License, or (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details, published at
+# http://www.gnu.org/copyleft/gpl.html
+
+# Set library paths in @INC, at compile time
+BEGIN { unshift @INC, '.'; require 'setlib.cfg'; }
+
+use CGI::Carp qw(fatalsToBrowser);
+use CGI;
+use TWiki;
+
+use strict;
+
+&main();
+
+sub main
+{
+ my $query = new CGI;
+
+ my $thePathInfo = $query->path_info();
+ my $theRemoteUser = $query->remote_user();
+ my $theTopic = $query->param( 'topic' );
+ my $theUrl = $query->url;
+
+ my( $topic ) =
+ &TWiki::initialize( $thePathInfo, $theRemoteUser, $theTopic, $theUrl, $query );
+
+ my $tmplName = $query->param( 'template' ) || "oops";
+ my $skin = $query->param( "skin" ) || TWiki::Prefs::getPreferencesValue( "SKIN" );
+ my $tmplData = TWiki::Store::readTemplate( $tmplName, $skin );
+ if( ! $tmplData ) {
+ TWiki::writeHeader( $query );
+ print "\n"
+ . "TWiki Installation Error
\n"
+ . "Template file $tmplName.tmpl not found or template directory \n"
+ . "$TWiki::templateDir not found.\n"
+ . "Check the \$templateDir variable in TWiki.cfg.\n"
+ . "\n";
+ return;
+ }
+
+ my $param = $query->param( 'param1' ) || "";
+ $tmplData =~ s/%PARAM1%/$param/go;
+ $param = $query->param( 'param2' ) || "";
+ $tmplData =~ s/%PARAM2%/$param/go;
+ $param = $query->param( 'param3' ) || "";
+ $tmplData =~ s/%PARAM3%/$param/go;
+ $param = $query->param( 'param4' ) || "";
+ $tmplData =~ s/%PARAM4%/$param/go;
+
+ $tmplData = &TWiki::handleCommonTags( $tmplData, $topic );
+ $tmplData = &TWiki::getRenderedVersion( $tmplData );
+ $tmplData =~ s|( ?) **nop/*>\n?|$1|gois; # remove tags (PTh 06 Nov 2000)
+
+ TWiki::writeHeader( $query );
+ print $tmplData;
+}
diff --git a/placeholder.rb b/placeholder.rb
new file mode 100755
index 0000000..e1d4354
--- /dev/null
+++ b/placeholder.rb
@@ -0,0 +1,31 @@
+#!/usr/bin/env ruby
+
+def createPlaceholder(dir, level = 0)
+ dir = dir + '/' if(!dir.empty? && dir[-1].chr != '/')
+
+ entries = Array.new
+ entries = File.new("#{dir}menu.def").readlines if(FileTest.exists?("#{dir}menu.def"))
+
+ rel = ''
+ level.times {
+ rel += '../'
+ }
+
+ entries.each { |x|
+ entry = x.split(/\s*\|\s*/, 2)
+ if(!FileTest.exists?(dir + entry[0] + '.html'))
+ File.symlink("#{rel}placeholder.html", dir + entry[0] + '.html')
+ end
+
+ if(FileTest.directory?(dir + entry[0]))
+ createPlaceholder(dir + entry[0], level + 1)
+ end
+ }
+end
+
+if(!ARGV[0])
+ puts 'Need a directory'
+end
+
+createPlaceholder(ARGV[0], 0)
+
diff --git a/post-commit b/post-commit
new file mode 100755
index 0000000..28b9af2
--- /dev/null
+++ b/post-commit
@@ -0,0 +1,4 @@
+#!/bin/sh
+
+. /home/users/nico/p/foreign/irker/virtualenv/bin/activate
+/home/users/nico/p/foreign/irker/irker/irkerhook.py "$@"
diff --git a/postgresfixmailneu.sh b/postgresfixmailneu.sh
new file mode 100644
index 0000000..75b0412
--- /dev/null
+++ b/postgresfixmailneu.sh
@@ -0,0 +1,16 @@
+#!/bin/sh
+
+[ "$#" -eq 2 ] || exit 1
+
+user="$1"
+domain="$2"
+password="$3"
+
+base=/home/server/mail
+
+maildirmake.dovecot
+
+cat << eof
+insert into mailboxes values ('$user','$domain','$password','$domain/$user',1,1)
+eof | psql mail
+
diff --git a/preview b/preview
new file mode 100755
index 0000000..0c966e3
--- /dev/null
+++ b/preview
@@ -0,0 +1,160 @@
+#!/usr/bin/perl -wT
+#
+# TWiki Collaboration Platform, http://TWiki.org/
+#
+# Copyright (C) 1999-2003 Peter Thoeny, peter@thoeny.com
+#
+# For licensing info read license.txt file in the TWiki root.
+# This program is free software; you can redistribute it and/or
+# modify it under the terms of the GNU General Public License
+# as published by the Free Software Foundation; either version 2
+# of the License, or (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details, published at
+# http://www.gnu.org/copyleft/gpl.html
+
+# Set library paths in @INC, at compile time
+BEGIN { unshift @INC, '.'; require 'setlib.cfg'; }
+
+use CGI::Carp qw(fatalsToBrowser);
+use CGI;
+use TWiki;
+
+use strict;
+
+&main();
+
+
+sub main
+{
+ my $query = new CGI;
+ my $thePathInfo = $query->path_info();
+ my $theRemoteUser = $query->remote_user();
+ my $theTopic = $query->param( 'topic' );
+ my $theUrl = $query->url;
+ my( $topic, $webName, $dummy, $userName ) =
+ &TWiki::initialize( $thePathInfo, $theRemoteUser, $theTopic, $theUrl, $query );
+ $dummy = ""; # to suppress warning
+
+ my $tmpl = "";
+ my $text = "";
+ my $ptext = "";
+ my $meta = "";
+ my $formFields = "";
+ my $wikiUserName = &TWiki::userToWikiName( $userName );
+
+ if( ! &TWiki::Store::webExists( $webName ) ) {
+ my $url = &TWiki::getOopsUrl( $webName, $topic, "oopsnoweb" );
+ TWiki::redirect( $query, $url );
+ return;
+ }
+
+ my( $mirrorSiteName, $mirrorViewURL ) = &TWiki::readOnlyMirrorWeb( $webName );
+ if( $mirrorSiteName ) {
+ my $url = &TWiki::getOopsUrl( $webName, $topic, "oopsmirror", $mirrorSiteName, $mirrorViewURL );
+ TWiki::redirect( $query, $url );
+ return;
+ }
+
+ # reset lock time, this is to prevent contention in case of a long edit session
+ &TWiki::Store::lockTopic( $topic );
+
+ my $skin = $query->param( "skin" ) || &TWiki::Prefs::getPreferencesValue( "SKIN" );
+
+ # Is user looking to change the form used? Sits oddly in preview, but
+ # to avoid Javascript and pick up text on edit page it has to be in preview.
+ my $changeform = $query->param( 'submitChangeForm' ) || "";
+ if( $changeform ) {
+ &TWiki::Form::changeForm( $webName, $topic, $query );
+ return;
+ }
+
+ # get view template, standard view or a view with a different skin
+ $tmpl = &TWiki::Store::readTemplate( "preview", $skin );
+ my $dontNotify = $query->param( "dontnotify" ) || "";
+ $tmpl =~ s/%DONTNOTIFY%/$dontNotify/go;
+ my $saveCmd = $query->param( "cmd" ) || "";
+ if( $saveCmd ) {
+ if( ! &TWiki::Access::userIsInGroup( $wikiUserName, $TWiki::superAdminGroup ) ) {
+ # user has no permission to execute undocumented cmd=... parameter
+ my $url = &TWiki::getOopsUrl( $webName, $topic, "oopsaccessgroup", "$TWiki::mainWebname.$TWiki::superAdminGroup" );
+ TWiki::redirect( $query, $url );
+ return;
+ }
+ $tmpl =~ s/\(preview\)/\(preview cmd=$saveCmd\)/go;
+ }
+ $tmpl =~ s/%CMD%/$saveCmd/go;
+
+ if( $saveCmd ne "repRev" ) {
+ my $dummy = "";
+ ( $meta, $dummy ) = &TWiki::Store::readTopic( $webName, $topic );
+
+ # parent setting
+ my $theParent = $query->param( 'topicparent' ) || "";
+ if( $theParent ) {
+ $tmpl =~ s/%TOPICPARENT%/$theParent/go;
+ $meta->put( "TOPICPARENT", ( "name" => $theParent ) );
+ }
+ $tmpl =~ s/%TOPICPARENT%/$theParent/;
+
+ my $formTemplate = $query->param( "formtemplate" );
+ if( $formTemplate ) {
+ $meta->remove( "FORM" );
+ $meta->put( "FORM", ( name => $formTemplate ) ) if( $formTemplate ne "none" );
+ $tmpl =~ s/%FORMTEMPLATE%/$formTemplate/go;
+ } else {
+ $tmpl =~ s/%FORMTEMPLATE%//go;
+ }
+
+ # get the edited text and combine text, form and attachments for preview
+ &TWiki::Form::fieldVars2Meta( $webName, $query, $meta );
+ $text = $query->param( "text" );
+ if( ! $text ) {
+ # empty topic not allowed
+ my $url = &TWiki::getOopsUrl( $webName, $topic, "oopsempty" );
+ print $query->redirect( $url );
+ return;
+ }
+ #AS added hook for plugins that want to do heavy stuff
+ TWiki::Plugins::afterEditHandler( $text, $topic, $webName );
+ $ptext = $text;
+
+ if( $meta->count( "FORM" ) ) {
+ $formFields = &TWiki::Form::getFieldParams( $meta );
+ }
+
+ } else {
+ # undocumented "repRev" mode
+ $text = $query->param( "text" ); # text to save
+ ( $meta, $ptext ) = &TWiki::Store::_extractMetaData( $webName, $topic, $text );
+ $text =~ s/%_(.)_%/%__$1__%/go;
+ }
+
+ my @verbatim = ();
+ $ptext = &TWiki::takeOutVerbatim( $ptext, \@verbatim );
+ $ptext =~ s/ {3}/\t/go;
+ $ptext = &TWiki::handleCommonTags( $ptext, $topic );
+ $ptext = &TWiki::getRenderedVersion( $ptext );
+
+ # do not allow click on link before save:
+ $ptext =~ s@(href=".*?")@href="%SCRIPTURLPATH%/oops%SCRIPTSUFFIX%/%WEB%/%TOPIC%\?template=oopspreview"@goi;
+ $ptext = &TWiki::handleCommonTags( $ptext, $topic );
+ $ptext = &TWiki::putBackVerbatim( $ptext, "pre", @verbatim );
+
+ $tmpl = &TWiki::handleCommonTags( $tmpl, $topic );
+ $tmpl = &TWiki::handleMetaTags( $webName, $topic, $tmpl, $meta );
+ $tmpl = &TWiki::getRenderedVersion( $tmpl );
+ $tmpl =~ s/%TEXT%/$ptext/go;
+
+ $text = &TWiki::encodeSpecialChars( $text );
+
+ $tmpl =~ s/%HIDDENTEXT%/$text/go;
+ $tmpl =~ s/%FORMFIELDS%/$formFields/go;
+ $tmpl =~ s|( ?) **nop/*>\n?|$1|gois; # remove tags (PTh 06 Nov 2000)
+
+ &TWiki::writeHeader( $query );
+ print $tmpl;
+}
diff --git a/price-vm-hosting.py b/price-vm-hosting.py
new file mode 120000
index 0000000..89dbfd0
--- /dev/null
+++ b/price-vm-hosting.py
@@ -0,0 +1 @@
+../.ungleich/ungleich/vcs/ungleich-bin/price-vm-hosting.py
\ No newline at end of file
diff --git a/pwhome b/pwhome
new file mode 100755
index 0000000..7c625be
--- /dev/null
+++ b/pwhome
@@ -0,0 +1,8 @@
+#!/bin/sh
+
+touch ~/privat/rechner/eigene/.lastsync
+
+rsync -av --delete --progress \
+ "$@" \
+ ~/.ssh ~/.gnupg ~/privat/rechner/eigene/ \
+ /mnt
diff --git a/python-bin-wrapper b/python-bin-wrapper
new file mode 100755
index 0000000..86d5d59
--- /dev/null
+++ b/python-bin-wrapper
@@ -0,0 +1,31 @@
+#!/bin/sh
+# -*- coding: utf-8 -*-
+#
+# 2013 Nico Schottelius (nico-nsbin at schottelius.org)
+#
+# This file is part of nsbin.
+#
+# nsbin is free software: you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation, either version 3 of the License, or
+# (at your option) any later version.
+#
+# nsbin is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with nsbin. If not, see .
+#
+#
+
+# Wrapper for real script to allow execution from checkout
+dir=${0%/*}
+
+libdir=$(cd "${dir}/../" && pwd -P)
+project=${libdir##*/}
+
+export PYTHONPATH="${libdir}"
+
+"$dir/../scripts/${project}" "$@"
diff --git a/qos-neu b/qos-neu
new file mode 100755
index 0000000..f0a4a78
--- /dev/null
+++ b/qos-neu
@@ -0,0 +1,66 @@
+INET=ppp0
+MAXRATE=126kbit
+
+# flush
+iptables -t mangle -F
+tc qdisc del dev $INET root
+
+# group0
+# acks 6kbit
+
+# group1:
+# dns
+# ssh 40kbit
+
+# group2: 60kbit
+# apache
+# smtp
+# pop3
+
+
+# group3: 20kbit
+# identd
+# ftp
+# rsync
+# icmp
+
+# standards
+
+# root class (root o all evil)
+tc qdisc add dev $INET root handle 1:0 htb default 23
+
+# hauptklasse... mamapapa ichselber alg minimal maximal
+tc class add dev $INET parent 1:0 classid 1:1 htb rate $MAXRATE ceil $MAXRATE
+
+# acks
+tc class add dev $INET parent 1:1 classid 1:10 htb rate 6kbit ceil $MAXRATE prio 1
+tc filter add dev $INET parent 1:0 prio 0 protocol ip handle 10 fw flowid 1:10
+
+
+# ssh / dns
+iptables -t mangle -A POSTROUTING -o $INET -p tcp --source-port 22 -j MARK --set-mark 11
+iptables -t mangle -A POSTROUTING -o $INET -p tcp --source-port 53 -j MARK --set-mark 11
+iptables -t mangle -A POSTROUTING -o $INET -p udp --source-port 53 -j MARK --set-mark 11
+
+# das ist nur die rule. wie es sein soll.
+tc class add dev $INET parent 1:1 classid 1:11 htb rate 40kbit ceil $MAXRATE prio 2
+# das ist der eintrag der in aktiv macht, auf das handle (==mark)
+tc filter add dev $INET parent 1:0 prio 0 protocol ip handle 11 fw flowid 1:11
+
+
+# apache / smtp / pop
+iptables -t mangle -A POSTROUTING -o $INET -p tcp --source-port 80 -j MARK --set-mark 12
+iptables -t mangle -A POSTROUTING -o $INET -p tcp --source-port pop3 -j MARK --set-mark 12
+iptables -t mangle -A POSTROUTING -o $INET -p tcp --source-port smtp -j MARK --set-mark 12
+tc class add dev $INET parent 1:1 classid 1:12 htb rate 60kbit ceil $MAXRATE prio 2
+tc filter add dev $INET parent 1:0 prio 0 protocol ip handle 12 fw flowid 1:12
+
+
+# ftp / rsync / auth / icmp
+iptables -t mangle -A POSTROUTING -o $INET -p tcp --source-port 20:21 -j MARK --set-mark 13
+iptables -t mangle -A POSTROUTING -o $INET -p tcp --source-port rsync -j MARK --set-mark 13
+iptables -t mangle -A POSTROUTING -o $INET -p tcp --source-port auth -j MARK --set-mark 13
+iptables -t mangle -A POSTROUTING -o $INET -p icmp -j MARK --set-mark 13
+tc class add dev $INET parent 1:1 classid 1:13 htb rate 20kbit ceil $MAXRATE prio 2
+tc filter add dev $INET parent 1:0 prio 0 protocol ip handle 13 fw flowid 1:13
+
diff --git a/rdiff b/rdiff
new file mode 100755
index 0000000..a1a72f1
--- /dev/null
+++ b/rdiff
@@ -0,0 +1,269 @@
+#!/usr/bin/perl -wT
+#
+# TWiki Collaboration Platform, http://TWiki.org/
+#
+# Copyright (C) 1999-2003 Peter Thoeny, peter@thoeny.com
+#
+# For licensing info read license.txt file in the TWiki root.
+# This program is free software; you can redistribute it and/or
+# modify it under the terms of the GNU General Public License
+# as published by the Free Software Foundation; either version 2
+# of the License, or (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details, published at
+# http://www.gnu.org/copyleft/gpl.html
+
+# Set library paths in @INC, at compile time
+BEGIN { unshift @INC, '.'; require 'setlib.cfg'; }
+
+use CGI::Carp qw(fatalsToBrowser);
+use CGI;
+use TWiki;
+
+$query= new CGI;
+
+&main();
+
+# =========================
+sub renderCellData
+{
+ my( $data, $topic ) = @_;
+ if( $data ) {
+ $data = &TWiki::handleCommonTags( $data, $topic );
+ $data = &TWiki::getRenderedVersion( $data );
+ if( $data =~ m/<\/?(th|td|table)/i )
+ {
+ # data has or | , need to fix
+ my $bTable = ( $data =~ s/( $eTable ) {
+ for( $i = $eTable; $i < $bTable; $i++ ) {
+ $data .= " ";
+ }
+ } elsif( $bTable < $eTable ) {
+ for( $i = $bTable; $i < $eTable; $i++ ) {
+ $data = "\n$data";
+ }
+ } elsif( ( $bTable == 0 ) && ( $eTable == 0 ) ) {
+ $data = "\n";
+ }
+ }
+ }
+ return $data;
+}
+
+# =========================
+sub renderRevisionDiff
+{
+ my( $text, $topic ) = @_;
+
+ $text =~ s/\r//go; # cut CR
+ my $result = "\n";
+ my $data = "";
+ foreach( split( /\n/, $text ) ) {
+ if( /^[0-9]/ ) {
+ $data = renderCellData( $data, $topic );
+ $result .= $data;
+ $data = "";
+ s/^([0-9\,]+)d([0-9\,]+)/\n<\/td><\/tr>\n | Deleted: <\/b><\/td><\/tr>\n< <<\/td> | /go;
+ s/^([0-9\,]+)a([0-9\,]+)/\n<\/td><\/tr>\n | Added: <\/b><\/td><\/tr>\n> ><\/td> | /go;
+ s/^([0-9\,]+)c([0-9\,]+)/\n<\/td><\/tr>\n | Changed: <\/b><\/td><\/tr>\n< <<\/td> | /go;
+ $result .= $_;
+
+ } elsif( /^[<>]/ ) {
+ s/^[<>] (.*)/$1/go;
+ $data .= "\n$_";
+
+ } elsif( /^--*/ ) {
+ $data = renderCellData( $data, $topic );
+ $result .= $data;
+ $data = "";
+ $result .= "\n | > > | \n";
+ }
+ }
+ $data = renderCellData( $data, $topic );
+ $result .= $data;
+ $data = "";
+ $text = "$result<\/td><\/tr>\n<\/table>";
+
+ return $text;
+}
+
+
+sub getRevInfo
+{
+ my( $web, $rev, $topic, $short ) = @_;
+
+ my( $date, $user ) = &TWiki::Store::getRevisionInfo( $web, $topic, "1.$rev", 1 );
+ $user = TWiki::getRenderedVersion( TWiki::userToWikiName( $user ) );
+ if( $short ) {
+ # cut time
+ $date =~ s/ \- [0-9]*\:[0-9]+$//go;
+ # eliminate white space to prevent wrap around in HR table:
+ $date =~ s/ /\ \;/go;
+ } else {
+ $date .= " GMT";
+ }
+
+ my $revInfo = "$date - $user";
+ $revInfo =~ s/[\n\r]*//go;
+ return $revInfo;
+}
+
+
+sub main
+{
+ my $thePathInfo = $query->path_info();
+ my $theRemoteUser = $query->remote_user();
+ my $theTopic = $query->param('topic');
+ my $theUrl = $query->url;
+
+ ( $topic, $webName, $scriptUrlPath, $userName ) =
+ &TWiki::initialize( $thePathInfo, $theRemoteUser, $theTopic, $theUrl, $query );
+
+ my $tmpl = "", $text = "", $diff = "";
+ my $rev1 = $query->param( "rev1" );
+ my $rev2 = $query->param( "rev2" );
+ my $maxrev= 1;
+ my $i = $maxrev, $j = $maxrev;
+ my $revTitle1 = "", $revTitle2 = "";
+ my $revInfo1 = "", $revInfo2 = "";
+ my $isMultipleDiff = 0;
+
+ if( ! &TWiki::Store::webExists( $webName ) ) {
+ my $url = &TWiki::getOopsUrl( $webName, $topic, "oopsnoweb" );
+ TWiki::redirect( $query, $url );
+ return;
+ }
+
+ # get view template, standard view or a view with a different skin
+ my $skin = $query->param( "skin" ) || &TWiki::Prefs::getPreferencesValue( "SKIN" );
+ $tmpl = &TWiki::Store::readTemplate( "rdiff", $skin );
+ $tmpl =~ s/\%META{.*?}\%//go; # remove %META{"parent"}%
+
+ my( $before, $difftmpl, $after) = split( /%REPEAT%/, $tmpl);
+
+ my $topicExists = &TWiki::Store::topicExists( $webName, $topic );
+ if( $topicExists ) {
+ $maxrev = &TWiki::Store::getRevisionNumber( $webName, $topic );
+ $maxrev =~ s/r?1\.//go; # cut 'r' and major
+ if( ! $rev1 ) { $rev1 = 0; }
+ if( ! $rev2 ) { $rev2 = 0; }
+ $rev1 =~ s/r?1\.//go; # cut 'r' and major
+ $rev2 =~ s/r?1\.//go; # cut 'r' and major
+ if( $rev1 < 1 ) { $rev1 = $maxrev; }
+ if( $rev1 > $maxrev ) { $rev1 = $maxrev; }
+ if( $rev2 < 1 ) { $rev2 = 1; }
+ if( $rev2 > $maxrev ) { $rev2 = $maxrev; }
+ $revTitle1 = "r1.$rev1";
+ $revInfo1 = getRevInfo( $webName, $rev1, $topic );
+ if( $rev1 != $rev2 ) {
+ $revTitle2 = "r1.$rev2";
+ $revInfo2 = getRevInfo( $webName, $rev2, $topic );
+ }
+ } else {
+ $rev1 = 1;
+ $rev2 = 1;
+ }
+
+ # check access permission
+ my $wikiUserName = &TWiki::userToWikiName( $userName );
+ my $viewAccessOK = &TWiki::Access::checkAccessPermission( "view", $wikiUserName, "", $topic, $webName );
+ if( ( $TWiki::readTopicPermissionFailed ) || ( ! $viewAccessOK ) ) {
+ my $url = &TWiki::getOopsUrl( $webName, $topic, "oopsaccessview" );
+ TWiki::redirect( $query, $url );
+ return;
+ }
+
+ # format "before" part
+ $before =~ s/%REVTITLE1%/$revTitle1/go;
+ $before =~ s/%REVTITLE2%/$revTitle2/go;
+ $before = &TWiki::handleCommonTags( $before, $topic );
+ $before = &TWiki::getRenderedVersion( $before );
+ $before =~ s|( ?) **nop/*>\n?|$1|gois; # remove tags (PTh 06 Nov 2000)
+ &TWiki::writeHeader( $query );
+ print $before;
+
+ # do one or more diffs
+ $difftmpl = &TWiki::handleCommonTags( $difftmpl, $topic );
+ if( $topicExists ) {
+ my $r1 = $rev1, $r2 = $rev2, $rInfo = "";
+ if( $r1 > $r2 + 1) {
+ $r2 = $r1 - 1;
+ $isMultipleDiff = 1;
+ }
+ do {
+ $diff = $difftmpl;
+ $diff =~ s/%REVTITLE1%/r1\.$r1/go;
+ $rInfo = getRevInfo( $webName, $r1, $topic, 1 );
+ $diff =~ s/%REVINFO1%/$rInfo/go;
+ $text = &TWiki::Store::getRevisionDiff( $webName, $topic, "1.$r2", "1.$r1" );
+ $text = renderRevisionDiff( $text, $topic );
+ $diff =~ s/%TEXT%/$text/go;
+ $diff =~ s|( ?) **nop/*>\n?|$1|gois; # remove tags (PTh 06 Nov 2000)
+ print $diff;
+ $r1 = $r1 - 1;
+ $r2 = $r2 - 1;
+ if( $r2 < 1 ) { $r2 = 1; }
+ } while( ( $r1 > $rev2 ) || ( $r1 == 1 ) );
+
+ } else {
+ $diff = $difftmpl;
+ $diff =~ s/%REVTITLE1%/$revTitle1/go;
+ $diff =~ s/%REVTITLE2%/$revTitle2/go;
+ $diff =~ s/%TEXT%//go;
+ $diff =~ s|( ?) **nop/*>\n?|$1|gois; # remove tags (PTh 06 Nov 2000)
+ print $diff;
+ }
+
+ if( $TWiki::doLogTopicRdiff ) {
+ # write log entry
+ &TWiki::Store::writeLog( "rdiff", "$webName.$topic", "r1.$rev1 r1.$rev2" );
+ }
+
+ # format "after" part
+ $i = $maxrev;
+ $j = $maxrev;
+ my $revisions = "";
+ my $breakRev = 0;
+ if( ( $TWiki::numberOfRevisions > 0 ) && ( $TWiki::numberOfRevisions < $maxrev ) ) {
+ $breakRev = $maxrev - $TWiki::numberOfRevisions + 1;
+ }
+
+ while( $i > 0 ) {
+ $revisions .= " | r1.$i";
+ if( $i != 1 ) {
+ if( $i == $breakRev ) {
+ # Now obsolete because of 'More' link
+ # $revisions = "$revisions | >...";
+ $i = 1;
+
+ } else {
+ if( ( $i == $rev1 ) && ( !$isMultipleDiff ) ) {
+ $revisions .= " | >";
+ } else {
+ $j = $i - 1;
+ $revisions .= " | >";
+ }
+ }
+ }
+ $i = $i - 1;
+ }
+ $after =~ s/%REVISIONS%/$revisions/go;
+ $after =~ s/%CURRREV%/1.$rev1/go;
+ $after =~ s/%MAXREV%/1.$maxrev/go;
+ $after =~ s/%REVTITLE1%/$revTitle1/go;
+ $after =~ s/%REVINFO1%/$revInfo1/go;
+ $after =~ s/%REVTITLE2%/$revTitle2/go;
+ $after =~ s/%REVINFO2%/$revInfo2/go;
+
+ $after = &TWiki::handleCommonTags( $after, $topic );
+ $after = &TWiki::getRenderedVersion( $after );
+ $after =~ s|( ?) **nop/*>\n?|$1|gois; # remove tags (PTh 06 Nov 2000)
+
+ print $after;
+}
diff --git a/recover_all_vim_files b/recover_all_vim_files
new file mode 100755
index 0000000..30a2211
--- /dev/null
+++ b/recover_all_vim_files
@@ -0,0 +1,27 @@
+#!/bin/sh
+#
+# 2010 Nico Schottelius (nico-nsbin at schottelius.org)
+#
+# This file is part of nsbin.
+#
+# nsbin is free software: you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation, either version 3 of the License, or
+# (at your option) any later version.
+#
+# nsbin is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with nsbin. If not, see .
+#
+#
+# Recover and write all vim files in current directory
+#
+#
+
+Does not work: vim reads from stdin!
+
+find . -name \*.swp | while read l ; do a=$(echo $l | sed -e 's;/\.;;' -e 's/\.swp$//'); vi -r -c ':x' $a; done
diff --git a/redmine.sh b/redmine.sh
new file mode 100644
index 0000000..88bbb1d
--- /dev/null
+++ b/redmine.sh
@@ -0,0 +1,18 @@
+#!/bin/sh
+
+read -d '' data << EOF
+
+
+ Delete/Remove Project
+ The user can remove a project from the list with or without deleting it on disk
+ 2762
+
+ 2
+ 2
+ 6
+ 1
+
+
+EOF
+
+echo $data | curl -k --request POST --header "Content-type: application/xml" --data-binary @- https://dev.rdit.ch/issues.json?key=
diff --git a/rekursivperms b/rekursivperms
new file mode 100644
index 0000000..94fe953
--- /dev/null
+++ b/rekursivperms
@@ -0,0 +1,3 @@
+for a in `seq 1 $#`; do
+ eval find \$$a -exec /root/scripts/set_correct_bits {} \\\;
+done
diff --git a/release_dlna b/release_dlna
new file mode 100755
index 0000000..867ceab
--- /dev/null
+++ b/release_dlna
@@ -0,0 +1,16 @@
+#!/bin/sh -e
+
+dir=/home/services/dlna
+
+for file in "$@"; do
+ fname=${file##*/}
+done
+
+[ -z "$file" ] && exit 1
+
+bfile="$(basename "$file")"
+
+scp "$file" "${host}:$dir"
+ssh $host "chmod a+r \"$dir/$bfile\""
+
+echo "Pre-released ${url}/${bfile}"
diff --git a/remove-links b/remove-links
new file mode 100644
index 0000000..2688753
--- /dev/null
+++ b/remove-links
@@ -0,0 +1,18 @@
+if [ -z "$1" ]; then
+ echo noe
+ exit 1
+fi
+
+for dirs in bin sbin lib include share; do
+ cd "$1/$dirs"
+ for file in *; do
+ if [ -L /usr/$dirs/"$file" ]; then
+ echo removing link $file
+ rm /usr/$dirs/"$file"
+ elif [ -d /usr/$dirs/"$file" ]; then
+ rmdir /usr/$dirs/"$file"
+ else
+ echo /usr/$dirs/"$file" is not a link...
+ fi
+ done
+done
diff --git a/remove-pcsystems b/remove-pcsystems
new file mode 100755
index 0000000..4cc1218
--- /dev/null
+++ b/remove-pcsystems
@@ -0,0 +1,8 @@
+#!/bin/sh
+NEW="nico-webdesign at schottelius.org"
+OLD="nicos@pcsystems.de"
+
+if [ ! -d "$1" ]; then
+ cat "$1" | sed "s,$OLD,$NEW," > $1.tmp
+ mv $1.tmp $1
+fi
diff --git a/remove.dead.links b/remove.dead.links
new file mode 100644
index 0000000..537e138
--- /dev/null
+++ b/remove.dead.links
@@ -0,0 +1,6 @@
+for a in $@; do
+ if [ ! -e "$a" ]; then
+ echo removing "$a"...
+ rm "$a"
+ fi
+done
diff --git a/remove_wrong_x b/remove_wrong_x
new file mode 100644
index 0000000..e63c63f
--- /dev/null
+++ b/remove_wrong_x
@@ -0,0 +1,19 @@
+#!/bin/sh
+
+#file=`ls -l $1 | egrep '^d' | awk ' {print $9 }'`
+#if [ -z file ]; then echo $1;fi
+
+# echo gerade : $1
+# file : $file
+
+if [ -d "$1" ]
+ then
+ echo "dir : $1"
+ chmod u=rwx,g=rx,o-rwx $1
+elif [ -x "$1" ];then
+ echo "exe: $1"
+ chmod u+rw,g+rx,o-rwx $1
+else
+ echo "file: $1"
+ chmod u+rw,g+r,o-rwx $1
+fi
diff --git a/rename b/rename
new file mode 100755
index 0000000..63c2295
--- /dev/null
+++ b/rename
@@ -0,0 +1,437 @@
+#!/usr/bin/perl -wT
+#
+# TWiki Collaboration Platform, http://TWiki.org/
+#
+# Copyright (C) 2001-2003 Peter Thoeny, peter@thoeny.com
+# Copyright (C) 2001 Sven Dowideit, svenud@ozemail.com.au
+#
+# For licensing info read license.txt file in the TWiki root.
+# This program is free software; you can redistribute it and/or
+# modify it under the terms of the GNU General Public License
+# as published by the Free Software Foundation; either version 2
+# of the License, or (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details, published at
+# http://www.gnu.org/copyleft/gpl.html
+#
+
+# Set library paths in @INC, at compile time
+BEGIN { unshift @INC, '.'; require 'setlib.cfg'; }
+
+# 'Use locale' for internationalisation of Perl regexes -
+# main locale settings are done in TWiki::setupLocale
+BEGIN {
+ # Do a dynamic 'use locale' for this module
+ if( $TWiki::useLocale ) {
+ require locale;
+ import locale ();
+ }
+}
+
+use CGI::Carp qw( fatalsToBrowser );
+use CGI;
+use TWiki;
+
+use strict;
+
+use vars qw($query);
+
+&main();
+
+
+sub main
+{
+ $query= new CGI;
+ my $thePathInfo = $query->path_info();
+ my $theRemoteUser = $query->remote_user();
+ my $theTopic = $query->param( 'topic' );
+ my $newWeb = $query->param( 'newweb' ) || "";
+ my $newTopic = $query->param( 'newtopic' ) || "";
+ my $theUrl = $query->url;
+ my $lockFailure = "";
+ my $breakLock = $query->param( 'breaklock' );
+ my $theAttachment = $query->param( 'attachment' );
+ my $confirm = $query->param( 'confirm' );
+ my $currentWebOnly = $query->param( 'currentwebonly' ) || "";
+ my $doAllowNonWikiWord = $query->param( 'nonwikiword' ) || "";
+ my ( $oldTopic, $oldWeb, $scriptUrlPath, $userName, $dataDir ) =
+ &TWiki::initialize( $thePathInfo, $theRemoteUser, $theTopic, $theUrl, $query ); # DRKW difference to core
+ my $skin = $query->param( "skin" ) || TWiki::Prefs::getPreferencesValue( "SKIN" );
+
+ $newTopic =~ s/\s//go;
+ $newTopic =~ s/$TWiki::securityFilter//go;
+
+ if( ! $theAttachment ) {
+ $theAttachment = "";
+ }
+
+ my $wikiUserName = &TWiki::userToWikiName( $userName );
+
+ # justChangeRefs will be true when some topics that had links to $oldTopic
+ # still need updating, previous update being prevented by a lock.
+ my $justChangeRefs = $query->param( 'changeRefs' ) || "";
+
+ my $fileName = &TWiki::Store::getFileName( $oldWeb, $oldTopic );
+ my $newName;
+ $newName = &TWiki::Store::getFileName( $newWeb, $newTopic ) if( $newWeb );
+
+ if( ! $justChangeRefs ) {
+ if( checkExist( $oldWeb, $oldTopic, $newWeb, $newTopic, $theAttachment, $fileName, $newName ) ) {
+ return;
+ }
+
+ if( ! checkPermissions( $oldWeb, $oldTopic, $wikiUserName ) ) {
+ return;
+ }
+ }
+
+ # Has user selected new name yet?
+ if( ! $newTopic || $confirm ) {
+ newTopicScreen( $oldWeb, $oldTopic, $newWeb, $newTopic, $theAttachment,
+ $confirm, $currentWebOnly, $skin );
+ return;
+ }
+
+ if( ! $justChangeRefs ) {
+ if( ! getLocks( $oldWeb, $oldTopic, $newWeb, $newTopic, $theAttachment, $breakLock, $skin ) ) {
+ return;
+ }
+ }
+
+ if( ! $justChangeRefs ) {
+ if( $theAttachment ) {
+ my $moveError =
+ &TWiki::Store::moveAttachment( $oldWeb, $oldTopic, $newWeb, $newTopic, $theAttachment );
+ if( $moveError ) {
+ TWiki::redirect( $query, &TWiki::getOopsUrl( $newWeb, $newTopic, "oopsmoveerr", $theAttachment, $moveError ) );
+ return;
+ }
+ } else {
+ if( ! $doAllowNonWikiWord && ! &TWiki::isWikiName( $newTopic ) ) {
+ TWiki::redirect( $query, &TWiki::getOopsUrl( $newWeb, $newTopic, "oopsrenamenotwikiword" ) );
+ return;
+ }
+ my $renameError = &TWiki::Store::renameTopic( $oldWeb, $oldTopic, $newWeb, $newTopic, "relink" );
+ if( $renameError ) {
+ TWiki::redirect( $query, &TWiki::getOopsUrl( $oldWeb, $oldTopic, "oopsrenameerr", $renameError, $newWeb, $newTopic ) );
+ return;
+ }
+ }
+ }
+
+ # Update references in referring pages - not applicable to attachments.
+ if( ! $theAttachment ) {
+ my @refs = findReferingPages( $oldWeb, $oldTopic );
+ my $problems;
+ ( $lockFailure, $problems ) =
+ updateReferingPages( $oldWeb, $oldTopic, $wikiUserName, $newWeb, $newTopic, @refs );
+ }
+
+ my $new_url = "";
+ if( $lockFailure ) {
+ moreRefsToChange( $oldWeb, $oldTopic, $newWeb, $newTopic, $skin );
+ return;
+ } else {
+ #redirect to new topic
+ $new_url = &TWiki::getViewUrl( $newWeb, $newTopic );
+ }
+
+ TWiki::redirect( $query, $new_url );
+ return;
+}
+
+
+#=========================
+sub findReferingPages
+{
+ my @result = ();
+
+ # Go through parameters finding all topics for change
+ my @types = qw\local global\;
+ foreach my $type ( @types ) {
+ my $count = 1;
+ while( $query->param( "TOPIC$type$count" ) ) {
+ my $checked = $query->param( "RENAME$type$count" );
+ if ($checked) {
+ push @result, $type;
+ push @result, $query->param( "TOPIC$type$count" );
+ }
+ $count++;
+ }
+ }
+ return @result;
+}
+
+
+#==================================
+# update pages that refer to the one being renamed/moved
+sub updateReferingPages
+{
+ my ( $oldWeb, $oldTopic, $wikiUserName, $newWeb, $newTopic, @refs ) = @_;
+
+ my $lockFailure = 0;
+
+ my $result = "";
+ my $alphaNum = $TWiki::mixedAlphaNum;
+ my $preTopic = '^|[^${alphaNum}_]'; # Start of line or non-alphanumeric
+ my $postTopic = '$|[^${alphaNum}_]'; # End of line or non-alphanumeric
+ my $spacedTopic = TWiki::Search::spacedTopic( $oldTopic );
+
+ while ( @refs ) {
+ my $type = shift @refs;
+ my $item = shift @refs;
+ my( $itemWeb, $itemTopic ) = TWiki::Store::normalizeWebTopicName( "", $item );
+ if ( &TWiki::Store::topicIsLockedBy( $itemWeb, $itemTopic ) ) {
+ $lockFailure = 1;
+ } else {
+ my $resultText = "";
+ $result .= ":$item: , ";
+ #open each file, replace $topic with $newTopic
+ if ( &TWiki::Store::topicExists($itemWeb, $itemTopic) ) {
+ my $scantext = &TWiki::Store::readTopicRaw($itemWeb, $itemTopic);
+ if( ! &TWiki::Access::checkAccessPermission( "change", $wikiUserName, $scantext,
+ $itemWeb, $itemTopic ) ) {
+ # This shouldn't happen, as search will not return, but check to be on the safe side
+ &TWiki::writeWarning( "rename: attempt to change $itemWeb.$itemTopic without permission" );
+ next;
+ }
+ my $insidePRE = 0;
+ my $insideVERBATIM = 0;
+ my $noAutoLink = 0;
+ foreach( split( /\n/, $scantext ) ) {
+ if( /^%META:TOPIC(INFO|MOVED)/ ) {
+ $resultText .= "$_\n";
+ next;
+ }
+ # FIXME This code is in far too many places - also in Search.pm and Store.pm
+ m||i && ( $insidePRE = 1 );
+ m| |i && ( $insidePRE = 0 );
+ if( m||i ) {
+ $insideVERBATIM = 1;
+ }
+ if( m||i ) {
+ $insideVERBATIM = 0;
+ }
+ m||i && ( $noAutoLink = 1 );
+ m||i && ( $noAutoLink = 0 );
+
+ if( ! ( $insidePRE || $insideVERBATIM || $noAutoLink ) ) {
+ if( $type eq "global" ) {
+ my $insertWeb = ($itemWeb eq $newWeb) ? "" : "$newWeb.";
+ s/($preTopic)\Q$oldWeb.$oldTopic\E(?=$postTopic)/$1$insertWeb$newTopic/g;
+ } else {
+ # Only replace bare topic (i.e. not preceeded by web) if web of referring
+ # topic is in original Web of topic that's being moved
+ if( $oldWeb eq $itemWeb ) {
+ my $insertWeb = ($oldWeb eq $newWeb) ? "" : "$newWeb.";
+ s/($preTopic)\Q$oldTopic\E(?=$postTopic)/$1$insertWeb$newTopic/g;
+ s/\[\[($spacedTopic)\]\]/[[$newTopic][$1]]/gi;
+ }
+ }
+ }
+ $resultText .= "$_\n";
+ }
+ my ( $meta, $text ) = &TWiki::Store::_extractMetaData( $itemWeb, $itemTopic, $resultText );
+ &TWiki::Store::saveTopic( $itemWeb, $itemTopic, $text, $meta, "", "unlock", "dontNotify", "" );
+ } else {
+ $result .= ";$item does not exist;";
+ }
+ }
+ }
+ return ( $lockFailure, $result );
+}
+
+
+#=============================
+# return "" if problem, otherwise return text of oldTopic
+sub checkPermissions
+{
+ my( $oldWeb, $oldTopic, $wikiUserName ) = @_;
+
+ my $ret = "";
+
+ if( &TWiki::Store::topicExists( $oldWeb, $oldTopic ) ) {
+ $ret = &TWiki::Store::readWebTopic( $oldWeb, $oldTopic );
+ }
+
+ if( ! &TWiki::Access::checkAccessPermission( "change", $wikiUserName, $ret, $oldTopic, $oldWeb ) ) {
+ # user has not permission to change the topic
+ my $url = &TWiki::getOopsUrl( $oldWeb, $oldTopic, "oopsaccesschange" );
+ TWiki::redirect( $query, $url );
+ $ret = "";
+ }
+
+
+ if( ! &TWiki::Access::checkAccessPermission( "rename", $wikiUserName, $ret, $oldTopic, $oldWeb ) ) {
+ my $url = &TWiki::getOopsUrl( $oldWeb, $oldTopic, "oopsaccessrename" );
+ TWiki::redirect( $query, $url );
+ $ret = "";
+ }
+
+ return $ret;
+}
+
+
+#==========================================
+# Check that various webs and topics exist or don't exist as required
+sub checkExist
+{
+ my( $oldWeb, $oldTopic, $newWeb, $newTopic, $theAttachment, $oldFileName, $newFileName ) = @_;
+
+ my $ret = "";
+ my $tmpl = "";
+
+ # Does old WEB exist?
+ if( ! &TWiki::Store::webExists( $oldWeb ) ) {
+ TWiki::redirect( $query, &TWiki::getOopsUrl( $oldWeb, $oldTopic, "oopsnoweb" ) );
+ $ret = "problem";
+ }
+
+ # Does new WEB exist?
+ if( defined( $newFileName ) && ! &TWiki::Store::webExists( $newWeb ) ) {
+ TWiki::redirect( $query, &TWiki::getOopsUrl( $newWeb, $newTopic, "oopsnoweb" ) );
+ $ret = "problem";
+ }
+
+ # Does old attachment exist?
+ if( ! -e $oldFileName) {
+ TWiki::redirect( $query, &TWiki::getOopsUrl( $oldWeb, $oldTopic, "oopsmissing" ) );
+ $ret = "problem";
+ }
+
+ # Check new topic doesn't exist (opposite if we've moving an attachment)
+ if( defined( $newFileName ) && -e $newFileName && ! $theAttachment ) {
+ # Unless moving an attachment, new topic should not already exist
+ TWiki::redirect( $query, &TWiki::getOopsUrl( $newWeb, $newTopic, "oopstopicexists" ) );
+ $ret = "problem";
+ }
+
+ if( defined( $newFileName ) && $theAttachment && ! -e $newFileName ) {
+ TWiki::redirect( $query, &TWiki::getOopsUrl( $newWeb, $newTopic, "oopsmissing" ) );
+ $ret = "problem";
+ }
+
+ return $ret;
+}
+
+
+#============================
+#Return "" if can't get lock, otherwise "okay"
+sub getLocks
+{
+ my( $oldWeb, $oldTopic, $newWeb, $newTopic, $theAttachment, $breakLock, $skin ) = @_;
+
+ my( $oldLockUser, $oldLockTime, $newLockUser, $newLockTime );
+
+ if( ! $breakLock ) {
+ # Check for lock - at present the lock can't be broken
+ ( $oldLockUser, $oldLockTime ) = &TWiki::Store::topicIsLockedBy( $oldWeb, $oldTopic );
+ if( $oldLockUser ) {
+ $oldLockUser = &TWiki::userToWikiName( $oldLockUser );
+ use integer;
+ $oldLockTime = ( $oldLockTime / 60 ) + 1; # convert to minutes
+ }
+
+ if( $theAttachment ) {
+ ( $newLockUser, $newLockTime ) = &TWiki::Store::topicIsLockedBy( $newWeb, $newTopic );
+ if( $newLockUser ) {
+ $newLockUser = &TWiki::userToWikiName( $newLockUser );
+ use integer;
+ $newLockTime = ( $newLockTime / 60 ) + 1; # convert to minutes
+ my $editLock = $TWiki::editLockTime / 60;
+ }
+ }
+ }
+
+ if( $oldLockUser || $newLockUser ) {
+ my $tmpl = &TWiki::Store::readTemplate( "oopslockedrename", $skin );
+ my $editLock = $TWiki::editLockTime / 60;
+ if( $oldLockUser ) {
+ $tmpl =~ s/%OLD_LOCK%/Source topic $oldWeb.$oldTopic is locked by $oldLockUser, lock expires in $oldLockTime minutes. /go;
+ } else {
+ $tmpl =~ s/%OLD_LOCK%//go;
+ }
+ if( $newLockUser ) {
+ $tmpl =~ s/%NEW_LOCK%/Destination topic $newWeb.$newTopic is locked by $newLockUser, lock expires in $newLockTime minutes. /go;
+ } else {
+ $tmpl =~ s/%NEW_LOCK%//go;
+ }
+ $tmpl =~ s/%NEW_WEB%/$newWeb/go;
+ $tmpl =~ s/%NEW_TOPIC%/$newTopic/go;
+ $tmpl =~ s/%ATTACHMENT%/$theAttachment/go;
+ $tmpl = &TWiki::handleCommonTags( $tmpl, $oldTopic, $oldWeb );
+ $tmpl = &TWiki::getRenderedVersion( $tmpl, $oldWeb );
+ TWiki::writeHeader( $query );
+ print $tmpl;
+ return "";
+ } else {
+ &TWiki::Store::lockTopicNew( $oldWeb, $oldTopic );
+ if( $theAttachment ) {
+ &TWiki::Store::lockTopicNew( $newWeb, $newTopic );
+ }
+ }
+
+ return "okay";
+}
+
+
+#============================
+# Display screen so user can decide on new web and topic.
+sub newTopicScreen
+{
+ my( $oldWeb, $oldTopic, $newWeb, $newTopic, $theAttachment, $confirm, $currentWebOnly, $skin ) = @_;
+
+ my $tmpl = "";
+
+ if( ! $newTopic ) {
+ $newTopic = $oldTopic;
+ }
+
+ TWiki::writeHeader( $query );
+ if( $theAttachment ) {
+ $tmpl = TWiki::Store::readTemplate( "moveattachment", $skin );
+ $tmpl =~ s/%FILENAME%/$theAttachment/go;
+ } elsif( $confirm ) {
+ $tmpl = TWiki::Store::readTemplate( "renameconfirm", $skin );
+ } else {
+ $tmpl = &TWiki::Store::readTemplate( "rename", $skin );
+ }
+
+ $tmpl = setVars( $tmpl, $oldTopic, $newWeb, $newTopic );
+ $tmpl = &TWiki::handleCommonTags( $tmpl, $oldTopic, $oldWeb );
+ $tmpl = &TWiki::getRenderedVersion( $tmpl );
+ if( $currentWebOnly ) {
+ $tmpl =~ s/%RESEARCH\{.*?web=\"all\".*\}%/(skipped)/o; # Remove search all web search
+ }
+ $tmpl =~ s/%RESEARCH/%SEARCH/go; # Pre search result from being rendered
+ $tmpl = &TWiki::handleCommonTags( $tmpl, $oldTopic, $oldWeb );
+ print $tmpl;
+ }
+
+ #=========================
+ sub setVars
+ {
+ my( $tmpl, $oldTopic, $newWeb, $newTopic ) = @_;
+ $tmpl =~ s/%NEW_WEB%/$newWeb/go;
+ $tmpl =~ s/%NEW_TOPIC%/$newTopic/go;
+
+ return $tmpl;
+ }
+
+ #=========================
+ sub moreRefsToChange
+ {
+ my( $oldWeb, $oldTopic, $newWeb, $newTopic, $skin ) = @_;
+
+ TWiki::writeHeader( $query );
+ my $tmpl = TWiki::Store::readTemplate( "renamerefs", $skin );
+ $tmpl = setVars( $tmpl, $oldTopic, $newWeb, $newTopic );
+ $tmpl = TWiki::getRenderedVersion( $tmpl );
+ $tmpl =~ s/%RESEARCH/%SEARCH/go; # Pre search result from being rendered
+ $tmpl = TWiki::handleCommonTags( $tmpl, $oldTopic, $oldWeb );
+ print $tmpl;
+ }
+
diff --git a/restart-x b/restart-x
new file mode 100755
index 0000000..ed9713b
--- /dev/null
+++ b/restart-x
@@ -0,0 +1,7 @@
+#!/bin/sh
+
+while true; do
+ startx
+ #cp /var/log/Xorg.0.log ~/Xorg.0.log-crash-$(date +%s)
+ sleep 1
+done
diff --git a/save b/save
new file mode 100755
index 0000000..e61ff49
--- /dev/null
+++ b/save
@@ -0,0 +1,136 @@
+#!/usr/bin/perl -wT
+#
+# TWiki Collaboration Platform, http://TWiki.org/
+#
+# Copyright (C) 1999-2003 Peter Thoeny, peter@thoeny.com
+#
+# Based on parts of Ward Cunninghams original Wiki and JosWiki.
+# Copyright (C) 1998 Markus Peter - SPiN GmbH (warpi@spin.de)
+# Some changes by Dave Harris (drh@bhresearch.co.uk) incorporated
+#
+# For licensing info read license.txt file in the TWiki root.
+# This program is free software; you can redistribute it and/or
+# modify it under the terms of the GNU General Public License
+# as published by the Free Software Foundation; either version 2
+# of the License, or (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details, published at
+# http://www.gnu.org/copyleft/gpl.html
+
+# Set library paths in @INC, at compile time
+BEGIN { unshift @INC, '.'; require 'setlib.cfg'; }
+
+use CGI::Carp qw(fatalsToBrowser);
+use CGI;
+use TWiki;
+
+&main();
+
+sub main
+{
+ my $query = new CGI;
+
+ my $thePathInfo = $query->path_info();
+ my $theRemoteUser = $query->remote_user();
+ my $theTopic = $query->param( 'topic' );
+ my $theUrl = $query->url;
+
+ ( $topic, $webName, $dummy, $userName ) =
+ &TWiki::initialize( $thePathInfo, $theRemoteUser, $theTopic, $theUrl, $query );
+ $dummy = ""; # to suppress warning
+
+ my $wikiUserName = &TWiki::userToWikiName( $userName );
+
+ if( ! &TWiki::Store::webExists( $webName ) ) {
+ my $url = &TWiki::getOopsUrl( $webName, $topic, "oopsnoweb" );
+ TWiki::redirect( $query, $url );
+ return;
+ }
+
+ my( $mirrorSiteName, $mirrorViewURL ) = &TWiki::readOnlyMirrorWeb( $webName );
+ if( $mirrorSiteName ) {
+ my $url = &TWiki::getOopsUrl( $webName, $topic, "oopsmirror", $mirrorSiteName, $mirrorViewURL );
+ print $query->redirect( $url );
+ return;
+ }
+
+ # check access permission
+ if( ! &TWiki::Access::checkAccessPermission( "change", $wikiUserName, "", $topic, $webName ) ) {
+ my $url = &TWiki::getOopsUrl( $webName, $topic, "oopsaccesschange" );
+ TWiki::redirect( $query, $url );
+ return;
+ }
+
+ # check permission for undocumented cmd=... parameter
+ my $saveCmd = $query->param( "cmd" ) || "";
+ if( ( $saveCmd ) &&
+ ( ! &TWiki::Access::userIsInGroup( $wikiUserName, $TWiki::superAdminGroup ) ) ) {
+ # user has no permission to execute undocumented cmd=... parameter
+ my $url = &TWiki::getOopsUrl( $webName, $topic, "oopsaccessgroup", "$TWiki::mainWebname.$TWiki::superAdminGroup" );
+ TWiki::redirect( $query, $url );
+ return;
+ }
+
+ # get text and other parameters
+ my $text = $query->param( "text" );
+ my $unlock = $query->param( "unlock" ) || "";
+ my $dontNotify = $query->param( "dontnotify" ) || "";
+
+ # PTh 06 Nov 2000: check if proper use of save script
+ if( ! ( defined $text ) ) {
+ my $url = &TWiki::getOopsUrl( $webName, $topic, "oopssave" );
+ TWiki::redirect( $query, $url );
+ return;
+ } elsif( ! $text ) {
+ # empty topic not allowed
+ my $url = &TWiki::getOopsUrl( $webName, $topic, "oopsempty" );
+ print $query->redirect( $url );
+ return;
+ }
+
+ my $changeform = $query->param( 'submitChangeForm' ) || "";
+ if( $changeform ) {
+ &TWiki::Form::changeForm( $webName, $topic, $query );
+ return;
+ }
+
+ $text = &TWiki::decodeSpecialChars( $text );
+ $text =~ s/ {3}/\t/go;
+
+ my $meta = "";
+ if( $saveCmd eq "repRev" ) {
+ $text =~ s/%__(.)__%/%_$1_%/go;
+ ( $meta, $text ) = &TWiki::Store::_extractMetaData( $webName, $topic, $text );
+ } else {
+ # normal case: Get latest attachment from file for preview
+ my $tmp;
+ ( $meta, $tmp ) = &TWiki::Store::readTopic( $webName, $topic );
+
+ # parent setting
+ my $theParent = $query->param( 'topicparent' ) || "";
+ if( $theParent ) {
+ $meta->put( "TOPICPARENT", ( "name" => $theParent ) );
+ }
+
+ my $formTemplate = $query->param( "formtemplate" );
+ if( $formTemplate ) {
+ $meta->remove( "FORM" );
+ $meta->put( "FORM", ( name => $formTemplate ) ) if( $formTemplate ne "none" );
+ }
+
+ &TWiki::Form::fieldVars2Meta( $webName, $query, $meta );
+ }
+
+
+ my $error = &TWiki::Store::saveTopic( $webName, $topic, $text, $meta, $saveCmd, $unlock, $dontNotify );
+ if( $error ) {
+ # S. Knutson 30 Nov 2000: error happened (probably from RCS), show it
+ my $url = &TWiki::getOopsUrl( $webName, $topic, "oopssaveerr", $error );
+ TWiki::redirect( $query, $url );
+ } else {
+ TWiki::redirect( $query, &TWiki::getViewUrl( "", $topic ) );
+ }
+}
diff --git a/sc b/sc
new file mode 100644
index 0000000..461545f
--- /dev/null
+++ b/sc
@@ -0,0 +1,6 @@
+export PS1=":: uchu :: "
+export PS2=""
+export PS3=""
+export PROMPT_COMMAND=""
+cd /home/server/samba/transfer/viri
+clear
diff --git a/scan-luchsingen.sh b/scan-luchsingen.sh
new file mode 100755
index 0000000..c4231ad
--- /dev/null
+++ b/scan-luchsingen.sh
@@ -0,0 +1,26 @@
+#!/bin/sh
+
+set -e
+set -x
+
+name=$1; shift
+
+if [ "$#" -ge 1 ]; then
+ source="ADF Duplex"
+else
+ source="ADF Front"
+fi
+
+
+#basename="$name-$(date +%F)"
+basename="$name"
+batchname="${basename}-%d.pnm"
+pdfname="${basename}.pdf"
+
+cd "$dir"
+scanimage -d 'fujitsu:ScanSnap S1500:16799' --mode lineart --resolution 300 \
+ --source "$source" --batch="$batchname" || true
+
+gm convert $(ls -v ${basename}*.pnm) "${basename}.pdf"
+
+rm -f "${basename}"*.pnm
diff --git a/search b/search
new file mode 100755
index 0000000..34f7c19
--- /dev/null
+++ b/search
@@ -0,0 +1,111 @@
+#!/usr/bin/perl -wT
+#
+# TWiki Collaboration Platform, http://TWiki.org/
+#
+# Copyright (C) 1999-2003 Peter Thoeny, peter@thoeny.com
+#
+# For licensing info read license.txt file in the TWiki root.
+# This program is free software; you can redistribute it and/or
+# modify it under the terms of the GNU General Public License
+# as published by the Free Software Foundation; either version 2
+# of the License, or (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details, published at
+# http://www.gnu.org/copyleft/gpl.html
+#
+# 20000501 Kevin Kinnell : Changed to support new search functionality.
+# Move a block of code to wikisearch.pm, removed
+# hardcoded flags (except the inline flag) from
+# the searchWikiWeb call, added new params.
+
+# Set library paths in @INC, at compile time
+BEGIN { unshift @INC, '.'; require 'setlib.cfg'; }
+
+use CGI::Carp qw(fatalsToBrowser);
+use CGI;
+use TWiki;
+
+use strict;
+
+&main();
+
+sub main
+{
+ my $query = new CGI;
+
+ my $thePathInfo = $query->path_info();
+ my $theRemoteUser = $query->remote_user();
+ my $theTopic = $query->param( 'topic' );
+ my $theUrl = $query->url;
+
+ my( $topic, $webName ) =
+ &TWiki::initialize( $thePathInfo, $theRemoteUser, $theTopic, $theUrl, $query );
+
+ if( ! &TWiki::Store::webExists( $webName ) ) {
+ my $url = &TWiki::getOopsUrl( $webName, $topic, "oopsnoweb" );
+ TWiki::redirect( $query, $url );
+ return;
+ }
+
+ # The CGI.pm docs claim that it returns all of the values in a
+ # multiple select if called in a list context, but that may not
+ # work (didn't on the dev box -- perl 5.004_4 and CGI.pm 2.36 on
+ # Linux (Slackware 2.0.33) with Apache 1.2. That being the case,
+ # we need to parse them out here.
+
+# my @webs = $query->param( "web" ) || ( $webName ); #doesn't work
+
+ # Note for those unused to Perlishness:
+ # -------------------------------------
+ # The pipeline at the end of this assignment splits the full query
+ # string on '&' or ';' and selects out the params that begin with 'web=',
+ # replacing them with whatever is after that. In the case of a
+ # single list of webs passed as a string (say, from a text entry
+ # field) it does more processing than it needs to to get the
+ # correct string, but so what? The pipline is the second
+ # parameter to the join, and consists of the last two lines. The
+ # join takes the results of the pipeline and strings them back
+ # together, space delimited, which is exactly what &searchWikiWeb
+ # needs.
+ # Note that mod_perl/cgi appears to use ';' as separator, whereas plain cgi uses '&'
+
+ my $websStr = join ' ',
+ grep { s/^web=(.*)$/$1/ }
+ split(/[&;]/, $query->query_string);
+ # need to unescape URL-encoded data since we use the raw query_string
+ # suggested by JeromeBouvattier
+ $websStr =~ tr/+/ /; # pluses become spaces
+ $websStr =~ s/%([0-9a-fA-F]{2})/pack("c",hex($1))/ge; # %20 becomes space
+
+ my $search = $query->param( "search" ) || "";
+ my $scope = $query->param( "scope" ) || "";
+ my $order = $query->param( "order" ) || "";
+ my $revSort = $query->param( "reverse" ) || "";
+ my $caseSensitive = $query->param( "casesensitive" ) || "";
+ my $regex = $query->param( "regex" ) || "";
+ my $limit = $query->param( "limit" ) || "";
+ my $nosummary = $query->param( "nosummary" ) || "";
+ my $nosearch = $query->param( "nosearch" ) || "";
+ my $noheader = $query->param( "noheader" ) || "";
+ my $nototal = $query->param( "nototal" ) || "";
+ my $bookView = $query->param( "bookview" ) || ""; # PTh 20 Jul 2000
+ my $renameView = $query->param( "renameview" ) || "";
+ my $showlock = $query->param( "showlock" ) || "";
+ my $noempty = $query->param( "noempty" ) || "";
+ my $attrTemplate = $query->param( "template" ) || ""; # undocumented
+ my $attrHeader = $query->param( "header" ) || "";
+ my $attrFormat = $query->param( "format" ) || "";
+
+ &TWiki::writeHeader( $query );
+ &TWiki::Search::searchWeb( "0",
+ $websStr, $search, $scope, $order, $regex,
+ $limit, $revSort, $caseSensitive, $nosummary,
+ $nosearch, $noheader, $nototal, $bookView, $renameView,
+ $showlock, $noempty, $attrTemplate, $attrHeader, $attrFormat
+ );
+}
+
+# EOF
diff --git a/sendmails b/sendmails
new file mode 100644
index 0000000..df00e54
--- /dev/null
+++ b/sendmails
@@ -0,0 +1,4 @@
+killall -ALRM qmail-send
+sleep 2
+sendmail -bp
+ps xau| grep qmail-remote | sed 's/.*\(qmail-remote.*\)/\1/g'
diff --git a/set-background b/set-background
new file mode 100755
index 0000000..10f7515
--- /dev/null
+++ b/set-background
@@ -0,0 +1,6 @@
+#!/bin/sh
+
+#set -x
+#exec >> /tmp/feh-log
+#exec 2>&1
+DISPLAY=:1.0 feh --bg-fill --randomize --recursive --draw-filename --draw-tinted ~/photos/
diff --git a/set-font b/set-font
new file mode 100755
index 0000000..ab9ddc7
--- /dev/null
+++ b/set-font
@@ -0,0 +1,4 @@
+#!/bin/sh
+
+#printf '\33]50;%s\007' "xft:Source Code Pro-10"
+printf '\33]50;%s\007' "xft:$1"
diff --git a/set_correct_usr_permissions b/set_correct_usr_permissions
new file mode 100644
index 0000000..6defae2
--- /dev/null
+++ b/set_correct_usr_permissions
@@ -0,0 +1,8 @@
+
+#
+#
+#
+
+. /etc/sys/paths
+
+for a in "
diff --git a/seti b/seti
new file mode 100644
index 0000000..38ce318
--- /dev/null
+++ b/seti
@@ -0,0 +1,2 @@
+cd /tmp/seti
+exec ./setiathome
diff --git a/setlib.cfg b/setlib.cfg
new file mode 100644
index 0000000..11df087
--- /dev/null
+++ b/setlib.cfg
@@ -0,0 +1,38 @@
+# TWiki Collaboration Platform, http://TWiki.org/
+#
+# Copyright (C) 2002-2003 Peter Thoeny, peter@thoeny.com
+#
+# For licensing info read license.txt file in the TWiki root.
+# This program is free software; you can redistribute it and/or
+# modify it under the terms of the GNU General Public License
+# as published by the Free Software Foundation; either version 2
+# of the License, or (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details, published at
+# http://www.gnu.org/copyleft/gpl.html
+#
+# setlib.cfg: configuration file for TWiki and Perl library paths
+#
+# Used to configure non-standard locations for TWiki and Perl modules.
+
+
+# -------------- Change these settings if required
+
+# Path to lib directory containing TWiki.pm. Set to absolute file path:
+$twikiLibPath = '../lib';
+
+# Path to local Perl modules (e.g. under home directory for users
+# without 'root' on Unix/Linux). Uncomment and set if needed:
+# $localPerlLibPath = '';
+
+# -------------- Don't change anything below this line
+
+# Prepend to @INC, the Perl search path for modules
+unshift @INC, $twikiLibPath;
+unshift @INC, $localPerlLibPath if $localPerlLibPath;
+
+1; # Return success for module loading
+
diff --git a/show_apache_logs b/show_apache_logs
new file mode 100755
index 0000000..449b4f7
--- /dev/null
+++ b/show_apache_logs
@@ -0,0 +1,2 @@
+cd /home/server/www/
+tail -n1 -F */*/*/*/logs/access.log */*/*/*/logs/error.log
diff --git a/smbd b/smbd
new file mode 100644
index 0000000..e9df7c1
--- /dev/null
+++ b/smbd
@@ -0,0 +1,15 @@
+case "$1" in
+
+start)
+
+ /sbin/portmap
+ /usr/net/sbin/rpc.mountd
+ /usr/net/sbin/rpc.nfsd
+ /usr/net/sbin/rpc.statd
+ /usr/net/sbin/rpc.lockd
+ /usr/net/sbin/rpc.rquotad
+ ;;
+stop)
+ killall portmap rpc.mountd rpc.nfsd rpc.statd rpc.lockd rpc.rquotad
+ ;;
+esac
diff --git a/smbmessage b/smbmessage
new file mode 100644
index 0000000..8e87ab1
--- /dev/null
+++ b/smbmessage
@@ -0,0 +1,10 @@
+BASE=192.168.0
+MESSAGE="Network Failure"
+SMBCLIENT="smbclient -n NONE -M"
+
+i=1
+
+while [ $i -lt 255 ]; do
+ echo $MESSAGE | $SMBCLIENT "$BASE"."$i"
+ i=$[$i+1]
+done
diff --git a/sniffen b/sniffen
new file mode 100644
index 0000000..ade6f2d
--- /dev/null
+++ b/sniffen
@@ -0,0 +1,6 @@
+cd ~nico
+ifconfig eth1 promisc up
+iwpriv eth1 monitor 1 6
+~/scripts/orinoco_hopper eth1 &
+kismet_monitor
+kismet
diff --git a/sound_2.5 b/sound_2.5
new file mode 100644
index 0000000..1e1ef91
--- /dev/null
+++ b/sound_2.5
@@ -0,0 +1,10 @@
+#modprobe soundcore
+#modprobe snd-timer
+modprobe snd-ali5451
+modprobe snd-pcm-oss
+#modprobe snd-mixer-oss
+
+ln -s /dev/sound/audio /dev/audio
+ln -s /dev/sound/dsp /dev/dsp
+ln -s /dev/sound/mixer /dev/mixer
+chmod a+rw /dev/sound/*
diff --git a/ssa/.inputrc b/ssa/.inputrc
new file mode 100644
index 0000000..e1d52e8
--- /dev/null
+++ b/ssa/.inputrc
@@ -0,0 +1,35 @@
+# /etc/inputrc - global inputrc for libreadline
+# See readline(3readline) and `info rluserman' for more information.
+
+# Be 8 bit clean.
+set input-meta on
+set output-meta on
+
+# To allow the use of 8bit-characters like the german umlauts, comment out
+# the line below. However this makes the meta key not work as a meta key,
+# which is annoying to those which don't need to type in 8-bit characters.
+
+# set convert-meta off
+
+# from nico
+set meta-flag on
+set input-meta on
+set convert-meta off
+set output-meta on
+"\eOd": backward-word
+"\eOc": forward-word
+# for linux console
+"\e[1~": beginning-of-line
+"\e[4~": end-of-line
+"\e[5~": beginning-of-history
+"\e[6~": end-of-history
+"\e[3~": delete-char
+"\e[2~": quoted-insert
+# for xterm
+"\eOH": beginning-of-line
+"\eOF": end-of-line
+#for freebsd console
+"\e[H": beginning-of-line
+"\e[F": end-of-line
+#end of inputrc
+
diff --git a/ssa/add.webserver b/ssa/add.webserver
new file mode 100755
index 0000000..f3e5f0a
--- /dev/null
+++ b/ssa/add.webserver
@@ -0,0 +1,29 @@
+#!/bin/sh
+#
+#
+
+BASEDIR=`dirname $0`
+
+. $BASEDIR/sub.defaults
+
+echo "SSA: v0.2"
+echo "(c) Nico Schottelius (nico-ssa@schottelius.org)"
+echo "Attention: No BIND support yet"
+
+read -p "tld: " tld
+read -p "sld: " sld
+read -p "subdomain: " subdomain
+read -p "user: " user
+echo "$subdomain.$sld.$tld an $user ?"
+
+read -p "-- enter fuer weiter --?"
+
+# web
+$BASEDIR/sub.add.wwwroot "$tld" "$sld" "$subdomain" "$user"
+$BASEDIR/sub.add.webalizer "$tld" "$sld" "$subdomain" "$user"
+$BASEDIR/sub.add.apache "$tld" "$sld" "$subdomain" "$user"
+# mail
+
+echo "change"
+exit 1
+#$BASEDIR/sub.add.qmail "$tld" "$sld" "$subdomain" "$user"
diff --git a/ssa/massen-reg.internetx b/ssa/massen-reg.internetx
new file mode 100755
index 0000000..256dd75
--- /dev/null
+++ b/ssa/massen-reg.internetx
@@ -0,0 +1,28 @@
+#!/bin/sh
+
+file=$1
+named_file=/etc/bind/temp.conf
+template=/home/server/named/templates/internetx
+base_dir=/home/server/named
+log=/var/log/syslog
+
+for domain in `cat $file`; do
+ BASE=`echo $domain | sed 's/\..*$//g'`
+ EXT=`echo $domain | sed 's/.*\.\(.*\)/\1/g'`
+# echo $BASE
+# echo $EXT
+
+ cat << EOF >> "$named_file"
+
+# schottelius
+zone "$domain" {
+ type master;
+ file "$EXT/$BASE";
+};
+EOF
+
+cp "$template" "$base_dir/$EXT/$BASE"
+done
+
+killall -HUP named &
+tail -f $log
diff --git a/ssa/sub.add.apache b/ssa/sub.add.apache
new file mode 100755
index 0000000..47f705d
--- /dev/null
+++ b/ssa/sub.add.apache
@@ -0,0 +1,58 @@
+#!/bin/sh
+
+. `dirname $0`/sub.defaults
+
+if [ $# -lt 4 ]; then
+ echo "$0:"' TLD SLD SUBDOMAIN VUSER'
+ exit 1
+fi
+
+TLD="$1"
+SLD="$2"
+SUBDOMAIN="$3"
+VUSER="$4"
+
+echo Adding vhost $SUBDOMAIN.$SLD.$TLD for $VUSER...
+
+cat << EOF | sed \
+ -e "s/__SLD/$SLD/g"\
+ -e "s/__TLD/$TLD/g"\
+ -e "s/__SUBDOMAIN/$SUBDOMAIN/g" \
+ -e "s/__VUSER/$VUSER/g" \
+ -e "s/__GROUP/$CUSTOMER_GROUP/g" \
+ -e "s,__BASE,$WEBBASE,g" \
+ >> "$APACHE_CONF"
+
+# __SUBDOMAIN.__SLD.__TLD by __VUSER
+
+# SuexecUserGroup __VUSER __GROUP
+ ServerAdmin webmaster@__SLD.__TLD
+ DocumentRoot __BASE/__VUSER/__TLD/__SLD/__SUBDOMAIN/
+
+ Options Indexes Includes FollowSymLinks MultiViews
+
+ ServerName __SUBDOMAIN.__SLD.__TLD
+# ServerAlias *.__SLD.__TLD
+# ServerAlias __SLD.__TLD
+ ScriptAlias /cgi-bin/ "__BASE/__VUSER/__TLD/__SLD/__SUBDOMAIN/cgi-bin/"
+ ErrorLog __BASE/__VUSER/__TLD/__SLD/__SUBDOMAIN/logs/error.log
+ CustomLog __BASE/__VUSER/__TLD/__SLD/__SUBDOMAIN/logs/access.log combined
+
+ AuthType Basic
+ Require valid-user
+ AuthName "Kundenbereich - For customers only"
+ AuthUserFile __BASE/__VUSER/__TLD/__SLD/__SUBDOMAIN.passwd
+
+
+
+
+EOF
+
+# logs password
+echo "Enter password for viewing logs and statistics (twice)"
+htpasswd -c "$WEBBASE/$VUSER/$TLD/$SLD/${SUBDOMAIN}.passwd" "$VUSER"
+
+# restart
+echo -n restarting apache...
+$RESTART_APACHE
+echo done.
diff --git a/ssa/sub.add.apache-v2-obsoleted b/ssa/sub.add.apache-v2-obsoleted
new file mode 100644
index 0000000..56056d1
--- /dev/null
+++ b/ssa/sub.add.apache-v2-obsoleted
@@ -0,0 +1,49 @@
+#!/bin/sh
+
+. `dirname $0`/sub.defaults
+
+case $# in
+ 3)
+ TLD="$1"
+ SLD="$2"
+ VUSER="$3"
+ echo -n adding qmail entry for $SLD.$TLD,which points to $VUSER
+
+ echo "$SLD.$TLD" >> $RCPTHOSTS
+ echo "$SLD.$TLD:$VUSER-$SLD.$TLD" >> $VDOMAINS
+ ;;
+ 4)
+ exit 1
+ TLD="$1"
+ SLD="$2"
+ SUBDOMAIN="$3" # currently unused
+ VUSER="$4"
+ echo -n adding qmail entry for $SUBDOMAIN.$SLD.$TLD,which points to $VUSER
+
+ echo "$SUBDOMAIN.$SLD.$TLD" >> $RCPTHOSTS
+ echo "$SUBDOMAIN.$SLD.$TLD:$VUSER-$SLD.$TLD" >> $VDOMAINS
+ ;;
+ *)
+ echo $0: 'TLD SLD [SUBDOMAIN] VUSER'
+ exit 1
+ ;;
+esac
+
+
+# default handling
+echo "&$VUSER@schottelius.org" > /home/user/$VUSER/.qmail-$SLD\:$TLD-default
+
+# moi
+echo "&nico@schottelius.org" > /home/user/$VUSER/.qmail-$SLD\:$TLD-postmaster
+echo "&nico@schottelius.org" > /home/user/$VUSER/.qmail-$SLD\:$TLD-mailer-daemon
+echo "&nico@schottelius.org" > /home/user/$VUSER/.qmail-$SLD\:$TLD-root
+
+# perms
+chown $VUSER /home/user/$VUSER/.qmail-$SLD\:$TLD-*
+
+echo -n restarting qmail...
+
+# restart
+killall -HUP qmail-send
+
+echo done.
diff --git a/ssa/sub.add.qmail b/ssa/sub.add.qmail
new file mode 100755
index 0000000..6cd0a71
--- /dev/null
+++ b/ssa/sub.add.qmail
@@ -0,0 +1,51 @@
+#!/bin/sh
+# Nico Schottelius
+# SSA
+#
+
+. `dirname $0`/sub.defaults
+
+case $# in
+ 3)
+ TLD="$1"
+ SLD="$2"
+ VUSER="$3"
+ DOMAIN=${SLD}.${TLD}
+ ;;
+ 4)
+ TLD="$1"
+ SLD="$2"
+ SUBDOMAIN="$3"
+ VUSER="$4"
+ DOMAIN=${SUBDOMAIN}.${SLD}.${TLD}
+ ;;
+ *)
+ echo $0: 'TLD SLD [SUBDOMAIN] VUSER'
+ exit 1
+ ;;
+esac
+
+DOTDOMAIN=`echo $DOMAIN | sed 's/\./:/g'`
+
+echo -n "adding qmail entry $DOMAIN for $VUSER ... "
+
+echo "$DOMAIN" >> $RCPTHOSTS
+echo "$DOMAIN:$VUSER-$DOMAIN" >> $VDOMAINS
+
+# default handling
+echo "&$VUSER@$QMAIL_HOST" > /home/user/$VUSER/.qmail-$DOTDOMAIN-default
+
+# moi
+echo "&nico@$QMAIL_HOST" > /home/user/$VUSER/.qmail-$DOTDOMAIN-postmaster
+echo "&nico@$QMAIL_HOST" > /home/user/$VUSER/.qmail-$DOTDOMAIN-mailer-daemon
+echo "&nico@$QMAIL_HOST" > /home/user/$VUSER/.qmail-$DOTDOMAIN-root
+
+# perms
+chown $VUSER /home/user/$VUSER/.qmail-$DOTDOMAIN-*
+
+echo -n restarting qmail...
+
+# restart
+killall -HUP qmail-send
+
+echo done.
diff --git a/ssa/sub.add.qmail-v0.3-not-ready b/ssa/sub.add.qmail-v0.3-not-ready
new file mode 100644
index 0000000..58b8111
--- /dev/null
+++ b/ssa/sub.add.qmail-v0.3-not-ready
@@ -0,0 +1,50 @@
+#!/bin/sh
+
+. `dirname $0`/sub.defaults
+
+if [ $# -lt 3 ]; then
+ echo $0: 'VUSER TLD SLD [SUBDOMAIN] [SUBDOMAIN2]'
+ exit 1
+fi
+
+VUSER=$1; shift
+
+
+case $# in
+ 3)
+ TLD="$1"
+ SLD="$2"
+ VUSER="$3"
+ ;;
+ 4)
+ TLD="$1"
+ SLD="$2"
+ SUBDOMAIN="$3" # currently unused
+ VUSER="$4"
+ ;;
+ *)
+ ;;
+esac
+
+echo -n adding qmail entry for $SLD.$TLD,which points to $VUSER
+
+echo "$SLD.$TLD" >> $RCPTHOSTS
+echo "$SLD.$TLD:$VUSER-$SLD.$TLD" >> $VDOMAINS
+
+# default handling
+echo "&$VUSER@schottelius.org" > /home/user/$VUSER/.qmail-$SLD\:$TLD-default
+
+# moi
+echo "&nico@schottelius.org" > /home/user/$VUSER/.qmail-$SLD\:$TLD-postmaster
+echo "&nico@schottelius.org" > /home/user/$VUSER/.qmail-$SLD\:$TLD-mailer-daemon
+echo "&nico@schottelius.org" > /home/user/$VUSER/.qmail-$SLD\:$TLD-root
+
+# perms
+chown $VUSER /home/user/$VUSER/.qmail-$SLD\:$TLD-*
+
+echo -n restarting qmail...
+
+# restart
+killall -HUP qmail-send
+
+echo done.
diff --git a/ssa/sub.add.webalizer b/ssa/sub.add.webalizer
new file mode 100755
index 0000000..9b82298
--- /dev/null
+++ b/ssa/sub.add.webalizer
@@ -0,0 +1,23 @@
+#!/bin/sh
+
+. `dirname $0`/sub.defaults
+
+if [ $# -ne 4 ]; then
+ echo $0: TLD SLD SUBDOMAIN VUSER
+ exit 1
+fi
+
+TLD="$1"
+SLD="$2"
+SUBDOMAIN="$3"
+VUSER="$4"
+
+echo -n add: webalizer $SUBDOMAIN.$SLD.$TLD from $WEBALIZER_DEFAULT for $VUSER...
+
+cat "$WEBALIZER_DEFAULT" | sed -e "s/__TLD/$TLD/g" \
+ -e "s/__SLD/$SLD/g" \
+ -e "s/__VUSER/$VUSER/g" \
+ -e "s/__SUBDOMAIN/$SUBDOMAIN/g" > \
+ $WEBBASE/$VUSER/$TLD/$SLD/$SUBDOMAIN/logs/webalizer/webalizer.conf
+
+echo done.
diff --git a/ssa/sub.add.wwwroot b/ssa/sub.add.wwwroot
new file mode 100755
index 0000000..987e774
--- /dev/null
+++ b/ssa/sub.add.wwwroot
@@ -0,0 +1,32 @@
+#!/bin/sh
+
+. `dirname $0`/sub.defaults
+TLD="$1"
+SLD="$2"
+SUBDOMAIN="$3"
+VUSER="$4"
+
+if [ $# -ne 4 ]; then
+ echo $0: TLD SLD SUBDOMAIN VUSER
+ exit 1
+fi
+
+echo -n adding wwwroot for $SUBDOMAIN.$SLD.$TLD and links for $VUSER ...
+
+# root
+mkdir -p $WEBBASE/$VUSER/$TLD/$SLD/$SUBDOMAIN
+
+# cgi-bin
+mkdir -p $WEBBASE/$VUSER/$TLD/$SLD/$SUBDOMAIN/cgi-bin
+
+# webalizer
+mkdir -p $WEBBASE/$VUSER/$TLD/$SLD/$SUBDOMAIN/logs/webalizer
+
+# sample
+cp $WEBPAGE_DEFAULT $WEBBASE/$VUSER/$TLD/$SLD/$SUBDOMAIN/index.html
+
+# permissions
+chown -R $VUSER /home/server/www/$VUSER/$TLD/$SLD/
+chgrp -R $WWWOWNER /home/server/www/$VUSER/$TLD/$SLD/
+
+echo done.
diff --git a/ssa/sub.defaults b/ssa/sub.defaults
new file mode 100644
index 0000000..13def98
--- /dev/null
+++ b/ssa/sub.defaults
@@ -0,0 +1,17 @@
+APACHE_CONF="/etc/apache/virtual.conf"
+WEBBASE=/home/server/www
+WEBALIZER_DEFAULT=$WEBBASE/default/webalizer-default
+WEBPAGE_DEFAULT=$WEBBASE/default/sample.html
+tempfile=/tmp/add.sub
+#QMAILROOT=/var/qmail/control
+QMAIL_HOST=creme.schottelius.org
+QMAILROOT=/usr/packages/qmail-1.03-ssl/control
+RCPTHOSTS=$QMAILROOT/rcpthosts
+VDOMAINS=$QMAILROOT/virtualdomains
+
+CUSTOMER_GROUP=users
+
+WWWOWNER=www-data
+
+RESTART_APACHE="apachectl restart"
+
diff --git a/ssa/sub.del.wwwroot b/ssa/sub.del.wwwroot
new file mode 100755
index 0000000..190bfea
--- /dev/null
+++ b/ssa/sub.del.wwwroot
@@ -0,0 +1,20 @@
+#!/bin/sh
+
+. `dirname $0`/sub.defaults
+TLD="$1"
+SLD="$2"
+SUBDOMAIN="$3"
+
+if [ $# -ne 3 ]; then
+ echo $0: TLD SLD SUBDOMAIN
+ exit 1
+fi
+
+echo -n removing wwwroot for $SUBDOMAIN.$SLD.$TLD ...
+
+# root
+rm -r $WEBBASE/$TLD/$SLD/$SUBDOMAIN
+rmdir $WEBBASE/$TLD/$SLD/
+rmdir $WEBBASE/$TLD/
+
+echo done.
diff --git a/startgpm b/startgpm
new file mode 100644
index 0000000..16a9cd9
--- /dev/null
+++ b/startgpm
@@ -0,0 +1 @@
+gpm -t ps2 -m /dev/misc/psaux
diff --git a/startwdt b/startwdt
new file mode 100644
index 0000000..6e06442
--- /dev/null
+++ b/startwdt
@@ -0,0 +1,4 @@
+dhcpcd -h flapp
+~/scripts/mount-musik
+~/scripts/sound_2.5
+su - nico -c startx
diff --git a/statistics b/statistics
new file mode 100755
index 0000000..b5751a1
--- /dev/null
+++ b/statistics
@@ -0,0 +1,571 @@
+#!/usr/bin/perl -wT
+#
+# TWiki Collaboration Platform, http://TWiki.org/
+#
+# Copyright (C) 2000-2003 Peter Thoeny, peter@thoeny.com
+# Copyright (C) 2002 Richard Donkin, rdonkin@bigfoot.com
+#
+# For licensing info read license.txt file in the TWiki root.
+# This program is free software; you can redistribute it and/or
+# modify it under the terms of the GNU General Public License
+# as published by the Free Software Foundation; either version 2
+# of the License, or (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details, published at
+# http://www.gnu.org/copyleft/gpl.html
+#
+# DESCRIPTION
+# This script does update the usage statistics of each TWiki web.
+# It reads the current month's log file and updates the table
+# in the WebStatistics topic of each web.
+# The script should be called by a cron job, it is recommended to
+# call it once a day.
+
+# Set library paths in @INC, at compile time
+BEGIN { unshift @INC, '.'; require 'setlib.cfg'; }
+
+# 'Use locale' for internationalisation of Perl regexes -
+# main locale settings are done in TWiki::setupLocale
+BEGIN {
+ # Do a dynamic 'use locale' for this module
+ if( $TWiki::useLocale ) {
+ require locale;
+ import locale ();
+ }
+}
+
+use CGI::Carp qw(fatalsToBrowser);
+use CGI;
+use File::Copy qw(copy);
+use IO::File;
+
+use TWiki;
+
+use strict;
+# use diagnostics; # Debug only
+
+#open(STDERR,'>&STDOUT'); # redirect error to browser
+# FIXME: Beware global $| in mod_perl! Should use 'local'
+$| = 1; # no buffering
+
+&main();
+
+# =========================
+sub main
+{
+ # initialize variables
+ my $cgiQuery = undef;
+ my $tmp = "";
+ my $theTopic = "";
+ my $thePathInfo = "";
+ my $theRemoteUser = "";
+ my $logDate = "";
+
+ # determine at runtime if script is called by browser or cron job
+ if( $ENV{'DOCUMENT_ROOT'} ) {
+ # script is called by browser
+ $cgiQuery = new CGI;
+ $thePathInfo = $cgiQuery->path_info() || "";
+ $theRemoteUser = $cgiQuery->remote_user() || "";
+ $theTopic = $cgiQuery->param( 'topic' ) || "";
+ $tmp = $cgiQuery->param( 'logdate' ) || "";
+ $tmp =~ s/[^0-9]//g; # remove all non numerals
+ if( $tmp ne "" ) {
+ $logDate = "$tmp";
+ }
+ TWiki::writeHeader( $cgiQuery );
+ print "\n\nTWiki: Create Usage Statistics\n";
+ print "\n\n";
+ } else {
+ # script is called by cron job
+ }
+
+ # Set up locale and regexes
+ &TWiki::basicInitialize();
+
+ # Initial messages
+ printMsg( "TWiki: Create Usage Statistics", $cgiQuery );
+ if( $cgiQuery ) {
+ print "Do not interrupt this script! ( Please wait until page download has finished )\n";
+ }
+ if ( $theRemoteUser ) {
+ $tmp = &TWiki::userToWikiName( $theRemoteUser );
+ $tmp =~ s/^Main\.//;
+ printMsg( "* Executed by $tmp", $cgiQuery );
+ } else {
+ printMsg( "* Executed by a guest or a cron job scheduler", $cgiQuery );
+ }
+
+ if( ! $logDate ) {
+ # get current local time and format to "yyyymm" format:
+ my ( $sec, $min, $hour, $mday, $mon, $year) = localtime( time() );
+ $year = sprintf("%.4u", $year + 1900); # Y2K fix
+ $mon = $mon+1;
+ $logDate = sprintf("%.4u%.2u", $year, $mon);
+ }
+
+ my $logMonth;
+ my $logYear;
+ $tmp = $logDate;
+ $tmp =~ s/([0-9]{4})(.*)/$2/g;
+ if( $tmp && $tmp < 13 ) {
+ $logMonth = $TWiki::isoMonth[$tmp-1];
+ } else {
+ $logMonth = "Date error";
+ }
+ $logYear = $logDate;
+ $logYear =~ s/([0-9]{4})(.*)/$1/g;
+ my $logMonthYear = "$logMonth $logYear";
+ printMsg( "* Statistics for $logMonthYear", $cgiQuery );
+
+ my $logFile = $TWiki::logFilename;
+ $logFile =~ s/%DATE%/$logDate/g;
+
+ if( -e $logFile ) {
+ # Copy the log file to temp file, since analysis could take some time
+
+ # FIXME move the temp dir stuff to TWiki.cfg
+ my $tmpDir;
+ if ( $TWiki::OS eq "UNIX" ) {
+ $tmpDir = $ENV{'TEMP'} || "/tmp";
+ } elsif ( $TWiki::OS eq "WINDOWS" ) {
+ $tmpDir = $ENV{'TEMP'} || "c:/";
+ } else {
+ # FIXME handle other OSs properly - assume Unix for now.
+ $tmpDir = "/tmp";
+ }
+ my $randNo = int ( rand 1000); # For mod_perl with threading...
+ my $tmpFilename = "$tmpDir/twiki-stats.$$.$randNo";
+ $tmpFilename =~ /(.*)/; $tmpFilename = $1; # Untaint
+
+ File::Copy::copy ($logFile, $tmpFilename)
+ or die "Can't copy $logFile to $tmpFilename - $!";
+
+ # Open the temp file
+ my $TMPFILE = new IO::File;
+ open $TMPFILE, $tmpFilename
+ or die "Can't open $tmpFilename - $!";
+
+ # Do a single data collection pass on the temporary copy of logfile,
+ # then call processWeb once for each web of interest.
+ my ($viewRef, $contribRef, $statViewsRef, $statSavesRef,
+ $statUploadsRef) = collectLogData( $TMPFILE, $logMonthYear );
+
+=pod
+ # DEBUG ONLY
+ debugPrintHash($viewRef);
+ debugPrintHash($contribRef);
+ print "statViews tests===========\n";
+ print "Views in Main = " . ${$statViewsRef}{'Main'} . "\n";
+ print "hash stats (used/avail) = " . %{$statViewsRef}."\n";
+
+ foreach my $web (keys %{$statViewsRef}) {
+ print "Web summary for $web\n";
+ print $statViewsRef->{$web}."\n";
+ print $statSavesRef->{$web}."\n";
+ print $statUploadsRef->{$web}."\n";
+ }
+=cut
+
+ # Generate WebStatistics topic update for one or more webs
+ if ( $thePathInfo ) {
+ # do a particular web:
+ processWeb( $thePathInfo, $theRemoteUser, $theTopic, $logMonthYear, $viewRef, $contribRef,
+ $statViewsRef, $statSavesRef, $statUploadsRef, $cgiQuery );
+
+ } else {
+ # do all webs:
+ my $dataDir = &TWiki::getDataDir();
+ my @weblist = ();
+ if( opendir( DIR, "$dataDir" ) ) {
+ @weblist = grep /^[^\.\_]/, readdir DIR; # exclude webs starting with . or _
+ closedir DIR;
+ } else {
+ printMsg( " *** Error: opendir $dataDir, $!", $cgiQuery );
+ }
+ foreach my $web ( @weblist ) {
+ if( -d "$dataDir/$web" ) {
+ processWeb( "/$web", $theRemoteUser, $theTopic, $logMonthYear, $viewRef, $contribRef,
+ $statViewsRef, $statSavesRef, $statUploadsRef, $cgiQuery );
+ }
+ }
+ }
+ close $TMPFILE; # Shouldn't be necessary with 'my'
+ unlink $tmpFilename; # FIXME: works on Windows??? Unlink before
+ # usage to ensure deleted on crash?
+ } else {
+ printMsg( " - Note: Log file $logFile does not exist", $cgiQuery );
+ }
+
+ if( $cgiQuery ) {
+ $tmp = $TWiki::statisticsTopicname;
+ my $url = &TWiki::getViewUrl( "", $tmp );
+ printMsg( "* Go back to $tmp topic", $cgiQuery );
+ printMsg( "End creating usage statistics", $cgiQuery );
+ print "\n";
+ } else {
+ printMsg( "End creating usage statistics", $cgiQuery );
+ }
+}
+
+# Debug only
+# Print all entries in a view or contrib hash, sorted by web and item name
+sub debugPrintHash {
+ my ($statsRef) = @_;
+ # print "Main.WebHome views = " . ${$statsRef}{'Main'}{'WebHome'}."\n";
+ # print "Main web, TWikiGuest contribs = " . ${$statsRef}{'Main'}{'Main.TWikiGuest'}."\n";
+ foreach my $web ( sort keys %$statsRef) {
+ my $count = 0;
+ print "$web web:\n";
+ # Get reference to the sub-hash for this web
+ my $webhashref = ${$statsRef}{$web};
+ # print "webhashref is " . ref ($webhashref) ."\n";
+ # Items can be topics (for view hash) or users (for contrib hash)
+ foreach my $item ( sort keys %$webhashref ) {
+ print " $item = ";
+ print "" . ( ${$webhashref}{$item} || 0 ) ."\n";
+ $count += ${$webhashref}{$item};
+ }
+ print " WEB TOTAL = $count\n";
+ }
+}
+
+
+# =========================
+# Process the whole log file and collect information in hash tables.
+# Must build stats for all webs, to handle case of renames into web
+# requested for a single-web statistics run.
+#
+# Main hash tables are divided by web:
+#
+# $view{$web}{$TopicName} == number of views, by topic
+# $contrib{$web}{"Main.".$WikiName} == number of saves/uploads, by user
+
+sub collectLogData
+{
+ my( $TMPFILE, $theLogMonthYear ) = @_;
+
+ # Examples of log file format:
+ # | 03 Feb 2000 - 02:43 | Main.PeterThoeny | view | Know.WebHome | |
+ # | 03 Feb 2000 - 02:43 | Main.PeterThoeny | save | Know.WebHome | |
+ # | 03 Feb 2000 - 02:53 | Main.PeterThoeny | save | Know.WebHome | repRev 1.7 Main.PeterThoeny 2000/02/03 02:43:22 |
+ # | 23 Feb 2002 - 11:07 | Main.TWikiGuest | search | Main | Office *Locations[^A-Za-z] | 127.0.0.1 |
+ # Note: there's no topic name on search log entry
+ # | 23 Feb 2002 - 11:07 | Main.guest | search | Main | Office *Locations[^A-Za-z] | 127.0.0.1 |
+ # | 28 Mar 2002 - 07:11 | Main.FredBloggs | rename | Test.TestTopic7 | moved to Test.TestTopic7New | 127.0.0.1 |
+
+
+ my %view; # Hash of hashes, counts topic views by
+ my %contrib; # Hash of hashes, counts uploads/saves by
+
+ # Hashes for each type of statistic, one hash entry per web
+ my %statViews;
+ my %statSaves;
+ my %statUploads;
+
+ # Imported regex objects, supporting I18N
+ my $webNameRegex = $TWiki::webNameRegex;
+ my $wikiWordRegex = $TWiki::wikiWordRegex;
+ my $abbrevRegex = $TWiki::abbrevRegex;
+
+ # Script regexes
+ my $intranetUserRegex = qr/[a-z0-9]+/; # FIXME: should centralise this
+ my $userRegex = qr/(?:$intranetUserRegex|$wikiWordRegex)/;
+ my $opRegex = qr/[a-z0-9]+/; # Operation, no i18n needed
+ # my $topicRegex = qr/(?:$wikiWordRegex|$abbrevRegex)/; # Strict topic names only
+ my $topicRegex = qr/[^ ]+/; # Relaxed topic names - any non-space OK
+ # but won't be auto-linked in WebStatistics
+ my $errorRegex = qr/\(not exist\)/; # Match '(not exist)' flag
+
+ my ($webName, $opName, $topicName, $userName, $newTopicName, $newTopicWeb);
+ binmode $TMPFILE;
+ while ( <$TMPFILE> ) {
+ my $line = $_;
+ $line =~ s/\r*\n$//; # Clean out line endings
+
+ $line =~ /^\|[^\|]*\| ($webNameRegex\.$userRegex) \| ($opRegex) \| ($webNameRegex)[. ]/o;
+ $userName = $1 || ""; # Main.FredBloggs
+ $opName = $2 || "";
+ $webName = $3 || "";
+
+ # Skip bad logfile lines and warn if necessary
+ unless ($userName && $opName && $webName) {
+ if( $TWiki::doDebugStatistics ) {
+ TWiki::writeDebug("Invalid log file line = '$line'");
+ TWiki::writeDebug("userName = '$userName'");
+ TWiki::writeDebug("opName = '$opName'");
+ TWiki::writeDebug("webName = '$webName'");
+ }
+ next;
+ }
+
+ my $logContrib = 0;
+
+ if ($opName eq 'view' ) {
+ $statViews{$webName}++;
+ # Pick up the topic name and any error string
+ $line =~ /^\|[^\|]*\| ($webNameRegex\.$userRegex) \| ($opRegex) \| ($webNameRegex)\.($topicRegex) \| +(${errorRegex}?) */o;
+ $topicName = $4 || "";
+ my $noSuchTopic = $5 || ""; # Set if '(not exist)' matched
+
+ unless( $topicName ) {
+ if( $TWiki::doDebugStatistics ) {
+ TWiki::writeDebug("Invalid log file line = '$line'");
+ TWiki::writeDebug("userName = '$userName'");
+ TWiki::writeDebug("opName = '$opName'");
+ TWiki::writeDebug("webName = '$webName'");
+ TWiki::writeDebug("topicName = '$topicName'");
+ }
+ next;
+ }
+
+ # Skip accesses to non-existent topics
+ if ($noSuchTopic) {
+ next;
+ } else {
+ # Count this topic access
+ $view{$webName}{$topicName}++;
+ }
+
+ } elsif ($opName eq 'save' ) {
+ $statSaves{$webName}++;
+ $logContrib = 1;
+
+ } elsif ($opName eq 'upload' ) {
+ $statUploads{$webName}++;
+ $logContrib = 1;
+
+ } elsif ($opName eq 'rename' ) {
+ # Pick up the old and new topic names
+ $line =~ /^\|[^\|]*\| ($webNameRegex\.$userRegex) \| ($opRegex) \| ($webNameRegex)\.($topicRegex) \| moved to ($webNameRegex)\.($topicRegex) /o;
+ $topicName = $4 || "";
+ $newTopicWeb = $5 || "";
+ $newTopicName = $6 || "";
+ ## TWiki::writeDebug("$topicName renamed to $newTopicWeb.$newTopicName");
+
+ unless ($topicName && $newTopicWeb && $newTopicName) {
+ if( $TWiki::doDebugStatistics ) {
+ TWiki::writeDebug("Invalid log file line (rename) = '$line'");
+ TWiki::writeDebug("userName = '$userName'");
+ TWiki::writeDebug("opName = '$opName'");
+ TWiki::writeDebug("webName = '$webName'");
+ TWiki::writeDebug("topicName= '$topicName'");
+ TWiki::writeDebug("newTopicWeb= '$newTopicWeb'");
+ TWiki::writeDebug("newTopicName = '$newTopicName'");
+ }
+ next;
+ }
+ # Get number of views for old topic this month (may be zero)
+ my $oldViews = $view{$webName}{$topicName} || 0;
+
+ # Transfer views from old to new topic
+ $view{$newTopicWeb}{$newTopicName} = $oldViews;
+ delete $view{$webName}{$topicName};
+
+ # Transfer views from old to new web
+ if ( $newTopicWeb ne $webName ) {
+ $statViews{$webName} -= $oldViews;
+ $statViews{$newTopicWeb} += $oldViews;
+ }
+ }
+ # Record saves and uploads
+ if ($logContrib) {
+ # Record the contribution by user name
+ $contrib{$webName}{$userName}++;
+ }
+=pod
+ # DEBUG
+ $. <= 5 && print "$line\n";
+ print "$line\n";
+ print "$.: $userName did $opName on $webName";
+ print ".$topicName" if (defined $topicName);
+ print "\n";
+=cut
+
+ }
+
+=pod
+
+ print "Main.WebHome views = " . $view{'Main'}{'WebHome'}."\n";
+ print "Main web's contribs = " . $contrib{'Main'}{'Main.RichardDonkin'}."\n";
+ debugPrintHash(\%view);
+ debugPrintHash(\%contrib);
+=cut
+ return \%view, \%contrib, \%statViews, \%statSaves, \%statUploads;
+
+
+
+
+}
+
+# =========================
+sub processWeb
+{
+ my( $thePathInfo, $theRemoteUser, $theTopic, $theLogMonthYear, $viewRef, $contribRef,
+ $statViewsRef, $statSavesRef, $statUploadsRef, $cgiQuery ) = @_;
+
+ my ( $topic, $webName, $dummy, $userName, $dataDir ) =
+ &TWiki::initialize( $thePathInfo, $theRemoteUser, $theTopic, "", $cgiQuery );
+ $dummy = ""; # to suppress warning
+
+ printMsg( "* Reporting on TWiki.$webName web", $cgiQuery );
+
+ if( ! &TWiki::Store::webExists( $webName ) ) {
+ printMsg( " *** Error: Web $webName does not exist", $cgiQuery );
+ return;
+ }
+
+ # Handle null values, print summary message to browser/stdout
+ my $statViews = $statViewsRef->{$webName};
+ my $statSaves = $statSavesRef->{$webName};
+ my $statUploads = $statUploadsRef->{$webName};
+ $statViews ||= 0;
+ $statSaves ||= 0;
+ $statUploads ||= 0;
+ printMsg( " - view: $statViews, save: $statSaves, upload: $statUploads", $cgiQuery );
+
+
+ # Get the top N views and contribs in this web
+ my (@topViews) = getTopList( $TWiki::statsTopViews, $webName, $viewRef );
+ my (@topContribs) = getTopList( $TWiki::statsTopContrib, $webName, $contribRef );
+
+ # Print information to stdout
+ my $statTopViews = "";
+ my $statTopContributors = "";
+ if( @topViews ) {
+ printMsg( " - top view: $topViews[0]", $cgiQuery );
+ $statTopViews = join( " ", @topViews );
+ }
+ if( @topContribs ) {
+ printMsg( " - top contributor: $topContribs[0]", $cgiQuery );
+ $statTopContributors = join( " ", @topContribs );
+ }
+
+ # Update the WebStatistics topic
+
+ my $tmp;
+ my $statsTopic = $TWiki::statisticsTopicname;
+ # DEBUG
+ # $statsTopic = "TestStatistics"; # Create this by hand
+ if( &TWiki::Store::topicExists( $webName, $statsTopic ) ) {
+ my( $meta, $text ) = &TWiki::Store::readTopic( $webName, $statsTopic, 1 );
+ my @lines = split( /\n/, $text );
+ my $statLine;
+ my $idxStat = -1;
+ my $idxTmpl = -1;
+ for( my $x = 0; $x < @lines; $x++ ) {
+ $tmp = $lines[$x];
+ # Check for existing line for this month+year
+ if( $tmp =~ /$theLogMonthYear/ ) {
+ $idxStat = $x;
+ } elsif( $tmp =~ /<\!\-\-statDate\-\->/ ) {
+ $statLine = $tmp;
+ $idxTmpl = $x;
+ }
+ }
+ if( ! $statLine ) {
+ $statLine = "| | | | | | |";
+ }
+ $statLine =~ s/<\!\-\-statDate\-\->/$theLogMonthYear/;
+ $statLine =~ s/<\!\-\-statViews\-\->/ $statViews/;
+ $statLine =~ s/<\!\-\-statSaves\-\->/ $statSaves/;
+ $statLine =~ s/<\!\-\-statUploads\-\->/ $statUploads/;
+ $statLine =~ s/<\!\-\-statTopViews\-\->/$statTopViews/;
+ $statLine =~ s/<\!\-\-statTopContributors\-\->/$statTopContributors/;
+
+ if( $idxStat >= 0 ) {
+ # entry already exists, need to update
+ $lines[$idxStat] = $statLine;
+
+ } elsif( $idxTmpl >= 0 ) {
+ # entry does not exist, add after line
+ $lines[$idxTmpl] = "$lines[$idxTmpl]\n$statLine";
+
+ } else {
+ # entry does not exist, add at the end
+ $lines[@lines] = $statLine;
+ }
+ $text = join( "\n", @lines );
+ $text .= "\n";
+
+ &TWiki::Store::saveTopic( $webName, $statsTopic, $text, $meta, "", 1, 1, 1 );
+ printMsg( " - Topic $statsTopic updated", $cgiQuery );
+
+ } else {
+ printMsg( " *** Warning: No updates done, topic $webName.$statsTopic does not exist", $cgiQuery );
+ }
+}
+
+# =========================
+# Get the items with top N frequency counts
+# Items can be topics (for view hash) or users (for contrib hash)
+sub getTopList
+{
+ my( $theMaxNum, $webName, $statsRef ) = @_;
+
+ # Get reference to the sub-hash for this web
+ my $webhashref = $statsRef->{$webName};
+
+ # print "Main.WebHome views = " . $statsRef->{$webName}{'WebHome'}."\n";
+ # print "Main web, TWikiGuest contribs = " . ${$statsRef}{$webName}{'Main.TWikiGuest'}."\n";
+
+ my @list = ();
+ my $topicName;
+ my $statValue;
+
+ # Convert sub hash of item=>statsvalue pairs into an array, @list,
+ # of '$statValue $topicName', ready for sorting.
+ while( ( $topicName, $statValue ) = each( %$webhashref ) ) {
+ # Right-align statistic value for sorting
+ $statValue = sprintf "%7d", $statValue;
+ # Add new array item at end of array
+ $list[@list] = "$statValue $topicName";
+ }
+
+ # DEBUG
+ # print " top N list for $webName\n";
+ # print join "\n", @list;
+
+ # Sort @list by frequency and pick the top N entries
+ if( @list ) {
+ @list = map{ s/^([0-9][0-9][^0-9])/\ \;$1/; $_ }
+ map{ s/^([0-9][^0-9])/\ \;\ \;$1/; $_ }
+ map{ s/^\s*//; $_ }
+ reverse( sort( @list ) );
+ if( $theMaxNum >= @list ) {
+ $theMaxNum = @list - 1;
+ }
+ return @list[0..$theMaxNum];
+ }
+ return @list;
+}
+
+# =========================
+sub printMsg
+{
+ my( $msg, $cgiQuery ) = @_;
+ my $htmlMsg = $msg;
+
+ if( $cgiQuery ) {
+ # TODO: May need to fix this regex if internationalised script
+ # messages are supported in future.
+ if( $htmlMsg =~ /^[A-Z]/ ) {
+ $htmlMsg =~ s/^([A-Z].*)/$1<\/h3>/go;
+ } else {
+ $htmlMsg =~ s/(\*\*\*.*)/$1<\/font>/go;
+ $htmlMsg =~ s/^\s\s/ /go;
+ $htmlMsg =~ s/^\s/ /go;
+ $htmlMsg .= " ";
+ }
+ $htmlMsg =~ s/==([A-Z]*)==/==$1==<\/font>/go;
+ print "$htmlMsg\n";
+ } else {
+ print "$msg\n";
+ }
+}
+
+# =========================
+# EOF
diff --git a/stats/data/named-history.20040116 b/stats/data/named-history.20040116
new file mode 100644
index 0000000..8744a0c
--- /dev/null
+++ b/stats/data/named-history.20040116
@@ -0,0 +1,168 @@
+296
+296
+296
+296
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
diff --git a/stats/data/named-history.20040117 b/stats/data/named-history.20040117
new file mode 100644
index 0000000..1f509a3
--- /dev/null
+++ b/stats/data/named-history.20040117
@@ -0,0 +1,288 @@
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
diff --git a/stats/data/named-history.20040118 b/stats/data/named-history.20040118
new file mode 100644
index 0000000..1f509a3
--- /dev/null
+++ b/stats/data/named-history.20040118
@@ -0,0 +1,288 @@
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
diff --git a/stats/data/named-history.20040119 b/stats/data/named-history.20040119
new file mode 100644
index 0000000..1f509a3
--- /dev/null
+++ b/stats/data/named-history.20040119
@@ -0,0 +1,288 @@
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
diff --git a/stats/data/named-history.20040120 b/stats/data/named-history.20040120
new file mode 100644
index 0000000..1f509a3
--- /dev/null
+++ b/stats/data/named-history.20040120
@@ -0,0 +1,288 @@
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
diff --git a/stats/data/named-history.20040121 b/stats/data/named-history.20040121
new file mode 100644
index 0000000..1f509a3
--- /dev/null
+++ b/stats/data/named-history.20040121
@@ -0,0 +1,288 @@
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
diff --git a/stats/data/named-history.20040122 b/stats/data/named-history.20040122
new file mode 100644
index 0000000..7bfaf10
--- /dev/null
+++ b/stats/data/named-history.20040122
@@ -0,0 +1,282 @@
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
diff --git a/stats/data/named-history.20040123 b/stats/data/named-history.20040123
new file mode 100644
index 0000000..aa5f545
--- /dev/null
+++ b/stats/data/named-history.20040123
@@ -0,0 +1,116 @@
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
diff --git a/stats/data/named-history.20040124 b/stats/data/named-history.20040124
new file mode 100644
index 0000000..1f509a3
--- /dev/null
+++ b/stats/data/named-history.20040124
@@ -0,0 +1,288 @@
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
diff --git a/stats/data/named-history.20040125 b/stats/data/named-history.20040125
new file mode 100644
index 0000000..1f509a3
--- /dev/null
+++ b/stats/data/named-history.20040125
@@ -0,0 +1,288 @@
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
diff --git a/stats/data/named-history.20040126 b/stats/data/named-history.20040126
new file mode 100644
index 0000000..1f509a3
--- /dev/null
+++ b/stats/data/named-history.20040126
@@ -0,0 +1,288 @@
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
diff --git a/stats/data/named-history.20040127 b/stats/data/named-history.20040127
new file mode 100644
index 0000000..1f509a3
--- /dev/null
+++ b/stats/data/named-history.20040127
@@ -0,0 +1,288 @@
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
diff --git a/stats/data/named-history.20040128 b/stats/data/named-history.20040128
new file mode 100644
index 0000000..1f509a3
--- /dev/null
+++ b/stats/data/named-history.20040128
@@ -0,0 +1,288 @@
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
diff --git a/stats/data/named-history.20040129 b/stats/data/named-history.20040129
new file mode 100644
index 0000000..1f509a3
--- /dev/null
+++ b/stats/data/named-history.20040129
@@ -0,0 +1,288 @@
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
diff --git a/stats/data/named-history.20040130 b/stats/data/named-history.20040130
new file mode 100644
index 0000000..1f509a3
--- /dev/null
+++ b/stats/data/named-history.20040130
@@ -0,0 +1,288 @@
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
diff --git a/stats/data/named-history.20040131 b/stats/data/named-history.20040131
new file mode 100644
index 0000000..1f509a3
--- /dev/null
+++ b/stats/data/named-history.20040131
@@ -0,0 +1,288 @@
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
diff --git a/stats/data/named-history.20040201 b/stats/data/named-history.20040201
new file mode 100644
index 0000000..1f509a3
--- /dev/null
+++ b/stats/data/named-history.20040201
@@ -0,0 +1,288 @@
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
diff --git a/stats/data/named-history.20040202 b/stats/data/named-history.20040202
new file mode 100644
index 0000000..1f509a3
--- /dev/null
+++ b/stats/data/named-history.20040202
@@ -0,0 +1,288 @@
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
diff --git a/stats/data/named-history.20040203 b/stats/data/named-history.20040203
new file mode 100644
index 0000000..1f509a3
--- /dev/null
+++ b/stats/data/named-history.20040203
@@ -0,0 +1,288 @@
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
diff --git a/stats/data/named-history.20040204 b/stats/data/named-history.20040204
new file mode 100644
index 0000000..1f509a3
--- /dev/null
+++ b/stats/data/named-history.20040204
@@ -0,0 +1,288 @@
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
diff --git a/stats/data/named-history.20040205 b/stats/data/named-history.20040205
new file mode 100644
index 0000000..1f509a3
--- /dev/null
+++ b/stats/data/named-history.20040205
@@ -0,0 +1,288 @@
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
diff --git a/stats/data/named-history.20040206 b/stats/data/named-history.20040206
new file mode 100644
index 0000000..1f509a3
--- /dev/null
+++ b/stats/data/named-history.20040206
@@ -0,0 +1,288 @@
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
diff --git a/stats/data/named-history.20040207 b/stats/data/named-history.20040207
new file mode 100644
index 0000000..1f509a3
--- /dev/null
+++ b/stats/data/named-history.20040207
@@ -0,0 +1,288 @@
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
diff --git a/stats/data/named-history.20040208 b/stats/data/named-history.20040208
new file mode 100644
index 0000000..1f509a3
--- /dev/null
+++ b/stats/data/named-history.20040208
@@ -0,0 +1,288 @@
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
diff --git a/stats/data/named-history.20040209 b/stats/data/named-history.20040209
new file mode 100644
index 0000000..1f509a3
--- /dev/null
+++ b/stats/data/named-history.20040209
@@ -0,0 +1,288 @@
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
diff --git a/stats/data/named-history.20040210 b/stats/data/named-history.20040210
new file mode 100644
index 0000000..1f509a3
--- /dev/null
+++ b/stats/data/named-history.20040210
@@ -0,0 +1,288 @@
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
diff --git a/stats/data/named-history.20040211 b/stats/data/named-history.20040211
new file mode 100644
index 0000000..1f509a3
--- /dev/null
+++ b/stats/data/named-history.20040211
@@ -0,0 +1,288 @@
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
diff --git a/stats/data/named-history.20040212 b/stats/data/named-history.20040212
new file mode 100644
index 0000000..1f509a3
--- /dev/null
+++ b/stats/data/named-history.20040212
@@ -0,0 +1,288 @@
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
diff --git a/stats/data/named-history.20040213 b/stats/data/named-history.20040213
new file mode 100644
index 0000000..1f509a3
--- /dev/null
+++ b/stats/data/named-history.20040213
@@ -0,0 +1,288 @@
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
diff --git a/stats/data/named-history.20040214 b/stats/data/named-history.20040214
new file mode 100644
index 0000000..1f509a3
--- /dev/null
+++ b/stats/data/named-history.20040214
@@ -0,0 +1,288 @@
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
diff --git a/stats/data/named-history.20040215 b/stats/data/named-history.20040215
new file mode 100644
index 0000000..1f509a3
--- /dev/null
+++ b/stats/data/named-history.20040215
@@ -0,0 +1,288 @@
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
diff --git a/stats/data/named-history.20040216 b/stats/data/named-history.20040216
new file mode 100644
index 0000000..1f509a3
--- /dev/null
+++ b/stats/data/named-history.20040216
@@ -0,0 +1,288 @@
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
diff --git a/stats/data/named-history.20040217 b/stats/data/named-history.20040217
new file mode 100644
index 0000000..1f509a3
--- /dev/null
+++ b/stats/data/named-history.20040217
@@ -0,0 +1,288 @@
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
diff --git a/stats/data/named-history.20040218 b/stats/data/named-history.20040218
new file mode 100644
index 0000000..1f509a3
--- /dev/null
+++ b/stats/data/named-history.20040218
@@ -0,0 +1,288 @@
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
diff --git a/stats/data/named-history.20040219 b/stats/data/named-history.20040219
new file mode 100644
index 0000000..3ec18b1
--- /dev/null
+++ b/stats/data/named-history.20040219
@@ -0,0 +1,287 @@
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
diff --git a/stats/data/named-history.20040220 b/stats/data/named-history.20040220
new file mode 100644
index 0000000..1f509a3
--- /dev/null
+++ b/stats/data/named-history.20040220
@@ -0,0 +1,288 @@
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
diff --git a/stats/data/named-history.20040221 b/stats/data/named-history.20040221
new file mode 100644
index 0000000..1f509a3
--- /dev/null
+++ b/stats/data/named-history.20040221
@@ -0,0 +1,288 @@
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
diff --git a/stats/data/named-history.20040222 b/stats/data/named-history.20040222
new file mode 100644
index 0000000..1f509a3
--- /dev/null
+++ b/stats/data/named-history.20040222
@@ -0,0 +1,288 @@
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
diff --git a/stats/data/named-history.20040223 b/stats/data/named-history.20040223
new file mode 100644
index 0000000..1f509a3
--- /dev/null
+++ b/stats/data/named-history.20040223
@@ -0,0 +1,288 @@
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
diff --git a/stats/data/named-history.20040224 b/stats/data/named-history.20040224
new file mode 100644
index 0000000..1f509a3
--- /dev/null
+++ b/stats/data/named-history.20040224
@@ -0,0 +1,288 @@
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
diff --git a/stats/data/named-history.20040225 b/stats/data/named-history.20040225
new file mode 100644
index 0000000..1f509a3
--- /dev/null
+++ b/stats/data/named-history.20040225
@@ -0,0 +1,288 @@
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
diff --git a/stats/data/named-history.20040226 b/stats/data/named-history.20040226
new file mode 100644
index 0000000..1f509a3
--- /dev/null
+++ b/stats/data/named-history.20040226
@@ -0,0 +1,288 @@
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
diff --git a/stats/data/named-history.20040227 b/stats/data/named-history.20040227
new file mode 100644
index 0000000..1f509a3
--- /dev/null
+++ b/stats/data/named-history.20040227
@@ -0,0 +1,288 @@
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
diff --git a/stats/data/named-history.20040228 b/stats/data/named-history.20040228
new file mode 100644
index 0000000..1f509a3
--- /dev/null
+++ b/stats/data/named-history.20040228
@@ -0,0 +1,288 @@
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
diff --git a/stats/data/named-history.20040229 b/stats/data/named-history.20040229
new file mode 100644
index 0000000..1f509a3
--- /dev/null
+++ b/stats/data/named-history.20040229
@@ -0,0 +1,288 @@
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
diff --git a/stats/data/named-history.20040301 b/stats/data/named-history.20040301
new file mode 100644
index 0000000..1f509a3
--- /dev/null
+++ b/stats/data/named-history.20040301
@@ -0,0 +1,288 @@
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
diff --git a/stats/data/named-history.20040302 b/stats/data/named-history.20040302
new file mode 100644
index 0000000..1f509a3
--- /dev/null
+++ b/stats/data/named-history.20040302
@@ -0,0 +1,288 @@
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
diff --git a/stats/data/named-history.20040303 b/stats/data/named-history.20040303
new file mode 100644
index 0000000..1f509a3
--- /dev/null
+++ b/stats/data/named-history.20040303
@@ -0,0 +1,288 @@
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
diff --git a/stats/data/named-history.20040304 b/stats/data/named-history.20040304
new file mode 100644
index 0000000..1f509a3
--- /dev/null
+++ b/stats/data/named-history.20040304
@@ -0,0 +1,288 @@
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
diff --git a/stats/data/named-history.20040305 b/stats/data/named-history.20040305
new file mode 100644
index 0000000..1f509a3
--- /dev/null
+++ b/stats/data/named-history.20040305
@@ -0,0 +1,288 @@
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
diff --git a/stats/data/named-history.20040306 b/stats/data/named-history.20040306
new file mode 100644
index 0000000..1f509a3
--- /dev/null
+++ b/stats/data/named-history.20040306
@@ -0,0 +1,288 @@
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
diff --git a/stats/data/named-history.20040307 b/stats/data/named-history.20040307
new file mode 100644
index 0000000..1f509a3
--- /dev/null
+++ b/stats/data/named-history.20040307
@@ -0,0 +1,288 @@
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
diff --git a/stats/data/named-history.20040308 b/stats/data/named-history.20040308
new file mode 100644
index 0000000..1f509a3
--- /dev/null
+++ b/stats/data/named-history.20040308
@@ -0,0 +1,288 @@
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
diff --git a/stats/data/named-history.20040309 b/stats/data/named-history.20040309
new file mode 100644
index 0000000..1f509a3
--- /dev/null
+++ b/stats/data/named-history.20040309
@@ -0,0 +1,288 @@
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
diff --git a/stats/data/named-history.20040310 b/stats/data/named-history.20040310
new file mode 100644
index 0000000..1f509a3
--- /dev/null
+++ b/stats/data/named-history.20040310
@@ -0,0 +1,288 @@
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
diff --git a/stats/data/named-history.20040311 b/stats/data/named-history.20040311
new file mode 100644
index 0000000..1f509a3
--- /dev/null
+++ b/stats/data/named-history.20040311
@@ -0,0 +1,288 @@
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
diff --git a/stats/data/named-history.20040312 b/stats/data/named-history.20040312
new file mode 100644
index 0000000..1f509a3
--- /dev/null
+++ b/stats/data/named-history.20040312
@@ -0,0 +1,288 @@
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
diff --git a/stats/data/named-history.20040313 b/stats/data/named-history.20040313
new file mode 100644
index 0000000..1f509a3
--- /dev/null
+++ b/stats/data/named-history.20040313
@@ -0,0 +1,288 @@
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
diff --git a/stats/data/named-history.20040314 b/stats/data/named-history.20040314
new file mode 100644
index 0000000..1f509a3
--- /dev/null
+++ b/stats/data/named-history.20040314
@@ -0,0 +1,288 @@
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
diff --git a/stats/data/named-history.20040315 b/stats/data/named-history.20040315
new file mode 100644
index 0000000..1f509a3
--- /dev/null
+++ b/stats/data/named-history.20040315
@@ -0,0 +1,288 @@
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
diff --git a/stats/data/named-history.20040316 b/stats/data/named-history.20040316
new file mode 100644
index 0000000..1f509a3
--- /dev/null
+++ b/stats/data/named-history.20040316
@@ -0,0 +1,288 @@
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
diff --git a/stats/data/named-history.20040317 b/stats/data/named-history.20040317
new file mode 100644
index 0000000..1f509a3
--- /dev/null
+++ b/stats/data/named-history.20040317
@@ -0,0 +1,288 @@
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
diff --git a/stats/data/named-history.20040318 b/stats/data/named-history.20040318
new file mode 100644
index 0000000..1f509a3
--- /dev/null
+++ b/stats/data/named-history.20040318
@@ -0,0 +1,288 @@
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
diff --git a/stats/data/named-history.20040319 b/stats/data/named-history.20040319
new file mode 100644
index 0000000..1f509a3
--- /dev/null
+++ b/stats/data/named-history.20040319
@@ -0,0 +1,288 @@
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
diff --git a/stats/data/named-history.20040320 b/stats/data/named-history.20040320
new file mode 100644
index 0000000..1f509a3
--- /dev/null
+++ b/stats/data/named-history.20040320
@@ -0,0 +1,288 @@
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
diff --git a/stats/data/named-history.20040321 b/stats/data/named-history.20040321
new file mode 100644
index 0000000..1f509a3
--- /dev/null
+++ b/stats/data/named-history.20040321
@@ -0,0 +1,288 @@
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
diff --git a/stats/data/named-history.20040322 b/stats/data/named-history.20040322
new file mode 100644
index 0000000..1f509a3
--- /dev/null
+++ b/stats/data/named-history.20040322
@@ -0,0 +1,288 @@
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
diff --git a/stats/data/named-history.20040323 b/stats/data/named-history.20040323
new file mode 100644
index 0000000..1f509a3
--- /dev/null
+++ b/stats/data/named-history.20040323
@@ -0,0 +1,288 @@
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
diff --git a/stats/data/named-history.20040324 b/stats/data/named-history.20040324
new file mode 100644
index 0000000..1f509a3
--- /dev/null
+++ b/stats/data/named-history.20040324
@@ -0,0 +1,288 @@
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
diff --git a/stats/data/named-history.20040325 b/stats/data/named-history.20040325
new file mode 100644
index 0000000..1f509a3
--- /dev/null
+++ b/stats/data/named-history.20040325
@@ -0,0 +1,288 @@
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
diff --git a/stats/data/named-history.20040326 b/stats/data/named-history.20040326
new file mode 100644
index 0000000..1f509a3
--- /dev/null
+++ b/stats/data/named-history.20040326
@@ -0,0 +1,288 @@
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
diff --git a/stats/data/named-history.20040327 b/stats/data/named-history.20040327
new file mode 100644
index 0000000..1f509a3
--- /dev/null
+++ b/stats/data/named-history.20040327
@@ -0,0 +1,288 @@
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
diff --git a/stats/data/named-history.20040328 b/stats/data/named-history.20040328
new file mode 100644
index 0000000..05209d8
--- /dev/null
+++ b/stats/data/named-history.20040328
@@ -0,0 +1,276 @@
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
diff --git a/stats/data/named-history.20040329 b/stats/data/named-history.20040329
new file mode 100644
index 0000000..1f509a3
--- /dev/null
+++ b/stats/data/named-history.20040329
@@ -0,0 +1,288 @@
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
diff --git a/stats/data/named-history.20040330 b/stats/data/named-history.20040330
new file mode 100644
index 0000000..1f509a3
--- /dev/null
+++ b/stats/data/named-history.20040330
@@ -0,0 +1,288 @@
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
diff --git a/stats/data/named-history.20040331 b/stats/data/named-history.20040331
new file mode 100644
index 0000000..1f509a3
--- /dev/null
+++ b/stats/data/named-history.20040331
@@ -0,0 +1,288 @@
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
diff --git a/stats/data/named-history.20040401 b/stats/data/named-history.20040401
new file mode 100644
index 0000000..1f509a3
--- /dev/null
+++ b/stats/data/named-history.20040401
@@ -0,0 +1,288 @@
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
diff --git a/stats/data/named-history.20040402 b/stats/data/named-history.20040402
new file mode 100644
index 0000000..1f509a3
--- /dev/null
+++ b/stats/data/named-history.20040402
@@ -0,0 +1,288 @@
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
diff --git a/stats/data/named-history.20040403 b/stats/data/named-history.20040403
new file mode 100644
index 0000000..1f509a3
--- /dev/null
+++ b/stats/data/named-history.20040403
@@ -0,0 +1,288 @@
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
diff --git a/stats/data/named-history.20040404 b/stats/data/named-history.20040404
new file mode 100644
index 0000000..1f509a3
--- /dev/null
+++ b/stats/data/named-history.20040404
@@ -0,0 +1,288 @@
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
diff --git a/stats/data/named-history.20040405 b/stats/data/named-history.20040405
new file mode 100644
index 0000000..1f509a3
--- /dev/null
+++ b/stats/data/named-history.20040405
@@ -0,0 +1,288 @@
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
diff --git a/stats/data/named-history.20040406 b/stats/data/named-history.20040406
new file mode 100644
index 0000000..1f509a3
--- /dev/null
+++ b/stats/data/named-history.20040406
@@ -0,0 +1,288 @@
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
diff --git a/stats/data/named-history.20040407 b/stats/data/named-history.20040407
new file mode 100644
index 0000000..1f509a3
--- /dev/null
+++ b/stats/data/named-history.20040407
@@ -0,0 +1,288 @@
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
diff --git a/stats/data/named-history.20040408 b/stats/data/named-history.20040408
new file mode 100644
index 0000000..1f509a3
--- /dev/null
+++ b/stats/data/named-history.20040408
@@ -0,0 +1,288 @@
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
diff --git a/stats/data/named-history.20040409 b/stats/data/named-history.20040409
new file mode 100644
index 0000000..1f509a3
--- /dev/null
+++ b/stats/data/named-history.20040409
@@ -0,0 +1,288 @@
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
diff --git a/stats/data/named-history.20040410 b/stats/data/named-history.20040410
new file mode 100644
index 0000000..1f509a3
--- /dev/null
+++ b/stats/data/named-history.20040410
@@ -0,0 +1,288 @@
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
diff --git a/stats/data/named-history.20040411 b/stats/data/named-history.20040411
new file mode 100644
index 0000000..1f509a3
--- /dev/null
+++ b/stats/data/named-history.20040411
@@ -0,0 +1,288 @@
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
diff --git a/stats/data/named-history.20040412 b/stats/data/named-history.20040412
new file mode 100644
index 0000000..1f509a3
--- /dev/null
+++ b/stats/data/named-history.20040412
@@ -0,0 +1,288 @@
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
diff --git a/stats/data/named-history.20040413 b/stats/data/named-history.20040413
new file mode 100644
index 0000000..1f509a3
--- /dev/null
+++ b/stats/data/named-history.20040413
@@ -0,0 +1,288 @@
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
diff --git a/stats/data/named-history.20040414 b/stats/data/named-history.20040414
new file mode 100644
index 0000000..1f509a3
--- /dev/null
+++ b/stats/data/named-history.20040414
@@ -0,0 +1,288 @@
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
diff --git a/stats/data/named-history.20040415 b/stats/data/named-history.20040415
new file mode 100644
index 0000000..1f509a3
--- /dev/null
+++ b/stats/data/named-history.20040415
@@ -0,0 +1,288 @@
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
diff --git a/stats/data/named-history.20040416 b/stats/data/named-history.20040416
new file mode 100644
index 0000000..1f509a3
--- /dev/null
+++ b/stats/data/named-history.20040416
@@ -0,0 +1,288 @@
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
diff --git a/stats/data/named-history.20040417 b/stats/data/named-history.20040417
new file mode 100644
index 0000000..1f509a3
--- /dev/null
+++ b/stats/data/named-history.20040417
@@ -0,0 +1,288 @@
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
diff --git a/stats/data/named-history.20040418 b/stats/data/named-history.20040418
new file mode 100644
index 0000000..1f509a3
--- /dev/null
+++ b/stats/data/named-history.20040418
@@ -0,0 +1,288 @@
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
diff --git a/stats/data/named-history.20040419 b/stats/data/named-history.20040419
new file mode 100644
index 0000000..1f509a3
--- /dev/null
+++ b/stats/data/named-history.20040419
@@ -0,0 +1,288 @@
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
diff --git a/stats/data/named-history.20040420 b/stats/data/named-history.20040420
new file mode 100644
index 0000000..1f509a3
--- /dev/null
+++ b/stats/data/named-history.20040420
@@ -0,0 +1,288 @@
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
diff --git a/stats/data/named-history.20040421 b/stats/data/named-history.20040421
new file mode 100644
index 0000000..1f509a3
--- /dev/null
+++ b/stats/data/named-history.20040421
@@ -0,0 +1,288 @@
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
diff --git a/stats/data/named-history.20040422 b/stats/data/named-history.20040422
new file mode 100644
index 0000000..1f509a3
--- /dev/null
+++ b/stats/data/named-history.20040422
@@ -0,0 +1,288 @@
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
diff --git a/stats/data/named-history.20040423 b/stats/data/named-history.20040423
new file mode 100644
index 0000000..1f509a3
--- /dev/null
+++ b/stats/data/named-history.20040423
@@ -0,0 +1,288 @@
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
diff --git a/stats/data/named-history.20040424 b/stats/data/named-history.20040424
new file mode 100644
index 0000000..1f509a3
--- /dev/null
+++ b/stats/data/named-history.20040424
@@ -0,0 +1,288 @@
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
diff --git a/stats/data/named-history.20040425 b/stats/data/named-history.20040425
new file mode 100644
index 0000000..1f509a3
--- /dev/null
+++ b/stats/data/named-history.20040425
@@ -0,0 +1,288 @@
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
diff --git a/stats/data/named-history.20040426 b/stats/data/named-history.20040426
new file mode 100644
index 0000000..1f509a3
--- /dev/null
+++ b/stats/data/named-history.20040426
@@ -0,0 +1,288 @@
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
diff --git a/stats/data/named-history.20040427 b/stats/data/named-history.20040427
new file mode 100644
index 0000000..1f509a3
--- /dev/null
+++ b/stats/data/named-history.20040427
@@ -0,0 +1,288 @@
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
diff --git a/stats/data/named-history.20040428 b/stats/data/named-history.20040428
new file mode 100644
index 0000000..1f509a3
--- /dev/null
+++ b/stats/data/named-history.20040428
@@ -0,0 +1,288 @@
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
diff --git a/stats/data/named-history.20040429 b/stats/data/named-history.20040429
new file mode 100644
index 0000000..1f509a3
--- /dev/null
+++ b/stats/data/named-history.20040429
@@ -0,0 +1,288 @@
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
diff --git a/stats/data/named-history.20040430 b/stats/data/named-history.20040430
new file mode 100644
index 0000000..1f509a3
--- /dev/null
+++ b/stats/data/named-history.20040430
@@ -0,0 +1,288 @@
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
diff --git a/stats/data/named-history.20040501 b/stats/data/named-history.20040501
new file mode 100644
index 0000000..1f509a3
--- /dev/null
+++ b/stats/data/named-history.20040501
@@ -0,0 +1,288 @@
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
diff --git a/stats/data/named-history.20040502 b/stats/data/named-history.20040502
new file mode 100644
index 0000000..1f509a3
--- /dev/null
+++ b/stats/data/named-history.20040502
@@ -0,0 +1,288 @@
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
diff --git a/stats/data/named-history.20040503 b/stats/data/named-history.20040503
new file mode 100644
index 0000000..1f509a3
--- /dev/null
+++ b/stats/data/named-history.20040503
@@ -0,0 +1,288 @@
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
diff --git a/stats/data/named-history.20040504 b/stats/data/named-history.20040504
new file mode 100644
index 0000000..af56f69
--- /dev/null
+++ b/stats/data/named-history.20040504
@@ -0,0 +1,224 @@
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
diff --git a/stats/data/named-history.20040505 b/stats/data/named-history.20040505
new file mode 100644
index 0000000..1f509a3
--- /dev/null
+++ b/stats/data/named-history.20040505
@@ -0,0 +1,288 @@
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
diff --git a/stats/data/named-history.20040506 b/stats/data/named-history.20040506
new file mode 100644
index 0000000..1f509a3
--- /dev/null
+++ b/stats/data/named-history.20040506
@@ -0,0 +1,288 @@
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
diff --git a/stats/data/named-history.20040507 b/stats/data/named-history.20040507
new file mode 100644
index 0000000..1f509a3
--- /dev/null
+++ b/stats/data/named-history.20040507
@@ -0,0 +1,288 @@
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
diff --git a/stats/data/named-history.20040508 b/stats/data/named-history.20040508
new file mode 100644
index 0000000..1f509a3
--- /dev/null
+++ b/stats/data/named-history.20040508
@@ -0,0 +1,288 @@
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
diff --git a/stats/data/named-history.20040509 b/stats/data/named-history.20040509
new file mode 100644
index 0000000..1f509a3
--- /dev/null
+++ b/stats/data/named-history.20040509
@@ -0,0 +1,288 @@
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
diff --git a/stats/data/named-history.20040510 b/stats/data/named-history.20040510
new file mode 100644
index 0000000..1f509a3
--- /dev/null
+++ b/stats/data/named-history.20040510
@@ -0,0 +1,288 @@
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
diff --git a/stats/data/named-history.20040511 b/stats/data/named-history.20040511
new file mode 100644
index 0000000..1f509a3
--- /dev/null
+++ b/stats/data/named-history.20040511
@@ -0,0 +1,288 @@
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
diff --git a/stats/data/named-history.20040512 b/stats/data/named-history.20040512
new file mode 100644
index 0000000..1f509a3
--- /dev/null
+++ b/stats/data/named-history.20040512
@@ -0,0 +1,288 @@
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
diff --git a/stats/data/named-history.20040513 b/stats/data/named-history.20040513
new file mode 100644
index 0000000..1f509a3
--- /dev/null
+++ b/stats/data/named-history.20040513
@@ -0,0 +1,288 @@
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
diff --git a/stats/data/named-history.20040514 b/stats/data/named-history.20040514
new file mode 100644
index 0000000..1f509a3
--- /dev/null
+++ b/stats/data/named-history.20040514
@@ -0,0 +1,288 @@
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
diff --git a/stats/data/named-history.20040515 b/stats/data/named-history.20040515
new file mode 100644
index 0000000..1f509a3
--- /dev/null
+++ b/stats/data/named-history.20040515
@@ -0,0 +1,288 @@
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
diff --git a/stats/data/named-history.20040516 b/stats/data/named-history.20040516
new file mode 100644
index 0000000..1f509a3
--- /dev/null
+++ b/stats/data/named-history.20040516
@@ -0,0 +1,288 @@
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
diff --git a/stats/data/named-history.20040517 b/stats/data/named-history.20040517
new file mode 100644
index 0000000..1f509a3
--- /dev/null
+++ b/stats/data/named-history.20040517
@@ -0,0 +1,288 @@
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
diff --git a/stats/data/named-history.20040518 b/stats/data/named-history.20040518
new file mode 100644
index 0000000..1f509a3
--- /dev/null
+++ b/stats/data/named-history.20040518
@@ -0,0 +1,288 @@
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
diff --git a/stats/data/named-history.20040519 b/stats/data/named-history.20040519
new file mode 100644
index 0000000..1f509a3
--- /dev/null
+++ b/stats/data/named-history.20040519
@@ -0,0 +1,288 @@
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
diff --git a/stats/data/named-history.20040520 b/stats/data/named-history.20040520
new file mode 100644
index 0000000..1f509a3
--- /dev/null
+++ b/stats/data/named-history.20040520
@@ -0,0 +1,288 @@
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
diff --git a/stats/data/named-history.20040521 b/stats/data/named-history.20040521
new file mode 100644
index 0000000..1f509a3
--- /dev/null
+++ b/stats/data/named-history.20040521
@@ -0,0 +1,288 @@
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
diff --git a/stats/data/named-history.20040522 b/stats/data/named-history.20040522
new file mode 100644
index 0000000..1f509a3
--- /dev/null
+++ b/stats/data/named-history.20040522
@@ -0,0 +1,288 @@
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
diff --git a/stats/data/named-history.20040523 b/stats/data/named-history.20040523
new file mode 100644
index 0000000..1f509a3
--- /dev/null
+++ b/stats/data/named-history.20040523
@@ -0,0 +1,288 @@
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
diff --git a/stats/data/named-history.20040524 b/stats/data/named-history.20040524
new file mode 100644
index 0000000..1f509a3
--- /dev/null
+++ b/stats/data/named-history.20040524
@@ -0,0 +1,288 @@
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
diff --git a/stats/data/named-history.20040525 b/stats/data/named-history.20040525
new file mode 100644
index 0000000..1f509a3
--- /dev/null
+++ b/stats/data/named-history.20040525
@@ -0,0 +1,288 @@
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
diff --git a/stats/data/named-history.20040526 b/stats/data/named-history.20040526
new file mode 100644
index 0000000..1f509a3
--- /dev/null
+++ b/stats/data/named-history.20040526
@@ -0,0 +1,288 @@
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
diff --git a/stats/data/named-history.20040527 b/stats/data/named-history.20040527
new file mode 100644
index 0000000..1f509a3
--- /dev/null
+++ b/stats/data/named-history.20040527
@@ -0,0 +1,288 @@
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
diff --git a/stats/data/named-history.20040528 b/stats/data/named-history.20040528
new file mode 100644
index 0000000..1f509a3
--- /dev/null
+++ b/stats/data/named-history.20040528
@@ -0,0 +1,288 @@
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
diff --git a/stats/data/named-history.20040529 b/stats/data/named-history.20040529
new file mode 100644
index 0000000..1f509a3
--- /dev/null
+++ b/stats/data/named-history.20040529
@@ -0,0 +1,288 @@
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
diff --git a/stats/data/named-history.20040530 b/stats/data/named-history.20040530
new file mode 100644
index 0000000..1f509a3
--- /dev/null
+++ b/stats/data/named-history.20040530
@@ -0,0 +1,288 @@
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
diff --git a/stats/data/named-history.20040531 b/stats/data/named-history.20040531
new file mode 100644
index 0000000..1f509a3
--- /dev/null
+++ b/stats/data/named-history.20040531
@@ -0,0 +1,288 @@
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
diff --git a/stats/data/named-history.20040601 b/stats/data/named-history.20040601
new file mode 100644
index 0000000..1f509a3
--- /dev/null
+++ b/stats/data/named-history.20040601
@@ -0,0 +1,288 @@
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
diff --git a/stats/data/named-history.20040602 b/stats/data/named-history.20040602
new file mode 100644
index 0000000..1f509a3
--- /dev/null
+++ b/stats/data/named-history.20040602
@@ -0,0 +1,288 @@
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
diff --git a/stats/data/named-history.20040603 b/stats/data/named-history.20040603
new file mode 100644
index 0000000..1f509a3
--- /dev/null
+++ b/stats/data/named-history.20040603
@@ -0,0 +1,288 @@
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
diff --git a/stats/data/named-history.20040604 b/stats/data/named-history.20040604
new file mode 100644
index 0000000..1f509a3
--- /dev/null
+++ b/stats/data/named-history.20040604
@@ -0,0 +1,288 @@
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
diff --git a/stats/data/named-history.20040605 b/stats/data/named-history.20040605
new file mode 100644
index 0000000..1f509a3
--- /dev/null
+++ b/stats/data/named-history.20040605
@@ -0,0 +1,288 @@
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
diff --git a/stats/data/named-history.20040606 b/stats/data/named-history.20040606
new file mode 100644
index 0000000..1f509a3
--- /dev/null
+++ b/stats/data/named-history.20040606
@@ -0,0 +1,288 @@
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
diff --git a/stats/data/named-history.20040607 b/stats/data/named-history.20040607
new file mode 100644
index 0000000..1f509a3
--- /dev/null
+++ b/stats/data/named-history.20040607
@@ -0,0 +1,288 @@
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
diff --git a/stats/data/named-history.20040608 b/stats/data/named-history.20040608
new file mode 100644
index 0000000..1f509a3
--- /dev/null
+++ b/stats/data/named-history.20040608
@@ -0,0 +1,288 @@
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
diff --git a/stats/data/named-history.20040609 b/stats/data/named-history.20040609
new file mode 100644
index 0000000..1f509a3
--- /dev/null
+++ b/stats/data/named-history.20040609
@@ -0,0 +1,288 @@
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
diff --git a/stats/data/named-history.20040610 b/stats/data/named-history.20040610
new file mode 100644
index 0000000..1f509a3
--- /dev/null
+++ b/stats/data/named-history.20040610
@@ -0,0 +1,288 @@
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
diff --git a/stats/data/named-history.20040611 b/stats/data/named-history.20040611
new file mode 100644
index 0000000..1f509a3
--- /dev/null
+++ b/stats/data/named-history.20040611
@@ -0,0 +1,288 @@
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
diff --git a/stats/data/named-history.20040612 b/stats/data/named-history.20040612
new file mode 100644
index 0000000..1f509a3
--- /dev/null
+++ b/stats/data/named-history.20040612
@@ -0,0 +1,288 @@
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
diff --git a/stats/data/named-history.20040613 b/stats/data/named-history.20040613
new file mode 100644
index 0000000..1f509a3
--- /dev/null
+++ b/stats/data/named-history.20040613
@@ -0,0 +1,288 @@
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
diff --git a/stats/data/named-history.20040614 b/stats/data/named-history.20040614
new file mode 100644
index 0000000..1f509a3
--- /dev/null
+++ b/stats/data/named-history.20040614
@@ -0,0 +1,288 @@
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
diff --git a/stats/data/named-history.20040615 b/stats/data/named-history.20040615
new file mode 100644
index 0000000..1f509a3
--- /dev/null
+++ b/stats/data/named-history.20040615
@@ -0,0 +1,288 @@
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
diff --git a/stats/data/named-history.20040616 b/stats/data/named-history.20040616
new file mode 100644
index 0000000..1f509a3
--- /dev/null
+++ b/stats/data/named-history.20040616
@@ -0,0 +1,288 @@
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
diff --git a/stats/data/named-history.20040617 b/stats/data/named-history.20040617
new file mode 100644
index 0000000..48b0787
--- /dev/null
+++ b/stats/data/named-history.20040617
@@ -0,0 +1,180 @@
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
+8877
diff --git a/stats/data/pop-history.20040116 b/stats/data/pop-history.20040116
new file mode 100644
index 0000000..13824ff
--- /dev/null
+++ b/stats/data/pop-history.20040116
@@ -0,0 +1,169 @@
+0
+0
+0
+0
+0
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
diff --git a/stats/data/pop-history.20040117 b/stats/data/pop-history.20040117
new file mode 100644
index 0000000..e5f85ae
--- /dev/null
+++ b/stats/data/pop-history.20040117
@@ -0,0 +1,288 @@
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
diff --git a/stats/data/pop-history.20040118 b/stats/data/pop-history.20040118
new file mode 100644
index 0000000..e5f85ae
--- /dev/null
+++ b/stats/data/pop-history.20040118
@@ -0,0 +1,288 @@
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
diff --git a/stats/data/pop-history.20040119 b/stats/data/pop-history.20040119
new file mode 100644
index 0000000..e5f85ae
--- /dev/null
+++ b/stats/data/pop-history.20040119
@@ -0,0 +1,288 @@
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
diff --git a/stats/data/pop-history.20040120 b/stats/data/pop-history.20040120
new file mode 100644
index 0000000..e5f85ae
--- /dev/null
+++ b/stats/data/pop-history.20040120
@@ -0,0 +1,288 @@
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
diff --git a/stats/data/pop-history.20040121 b/stats/data/pop-history.20040121
new file mode 100644
index 0000000..e5f85ae
--- /dev/null
+++ b/stats/data/pop-history.20040121
@@ -0,0 +1,288 @@
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
diff --git a/stats/data/pop-history.20040122 b/stats/data/pop-history.20040122
new file mode 100644
index 0000000..6ee721b
--- /dev/null
+++ b/stats/data/pop-history.20040122
@@ -0,0 +1,282 @@
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
diff --git a/stats/data/pop-history.20040123 b/stats/data/pop-history.20040123
new file mode 100644
index 0000000..3a0b76b
--- /dev/null
+++ b/stats/data/pop-history.20040123
@@ -0,0 +1,116 @@
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
diff --git a/stats/data/pop-history.20040124 b/stats/data/pop-history.20040124
new file mode 100644
index 0000000..e5f85ae
--- /dev/null
+++ b/stats/data/pop-history.20040124
@@ -0,0 +1,288 @@
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
diff --git a/stats/data/pop-history.20040125 b/stats/data/pop-history.20040125
new file mode 100644
index 0000000..e5f85ae
--- /dev/null
+++ b/stats/data/pop-history.20040125
@@ -0,0 +1,288 @@
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
diff --git a/stats/data/pop-history.20040126 b/stats/data/pop-history.20040126
new file mode 100644
index 0000000..e5f85ae
--- /dev/null
+++ b/stats/data/pop-history.20040126
@@ -0,0 +1,288 @@
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
diff --git a/stats/data/pop-history.20040127 b/stats/data/pop-history.20040127
new file mode 100644
index 0000000..e5f85ae
--- /dev/null
+++ b/stats/data/pop-history.20040127
@@ -0,0 +1,288 @@
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
diff --git a/stats/data/pop-history.20040128 b/stats/data/pop-history.20040128
new file mode 100644
index 0000000..e5f85ae
--- /dev/null
+++ b/stats/data/pop-history.20040128
@@ -0,0 +1,288 @@
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
diff --git a/stats/data/pop-history.20040129 b/stats/data/pop-history.20040129
new file mode 100644
index 0000000..e5f85ae
--- /dev/null
+++ b/stats/data/pop-history.20040129
@@ -0,0 +1,288 @@
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
diff --git a/stats/data/pop-history.20040130 b/stats/data/pop-history.20040130
new file mode 100644
index 0000000..e5f85ae
--- /dev/null
+++ b/stats/data/pop-history.20040130
@@ -0,0 +1,288 @@
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
diff --git a/stats/data/pop-history.20040131 b/stats/data/pop-history.20040131
new file mode 100644
index 0000000..e5f85ae
--- /dev/null
+++ b/stats/data/pop-history.20040131
@@ -0,0 +1,288 @@
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
diff --git a/stats/data/pop-history.20040201 b/stats/data/pop-history.20040201
new file mode 100644
index 0000000..e5f85ae
--- /dev/null
+++ b/stats/data/pop-history.20040201
@@ -0,0 +1,288 @@
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
diff --git a/stats/data/pop-history.20040202 b/stats/data/pop-history.20040202
new file mode 100644
index 0000000..e5f85ae
--- /dev/null
+++ b/stats/data/pop-history.20040202
@@ -0,0 +1,288 @@
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
diff --git a/stats/data/pop-history.20040203 b/stats/data/pop-history.20040203
new file mode 100644
index 0000000..e5f85ae
--- /dev/null
+++ b/stats/data/pop-history.20040203
@@ -0,0 +1,288 @@
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
diff --git a/stats/data/pop-history.20040204 b/stats/data/pop-history.20040204
new file mode 100644
index 0000000..e5f85ae
--- /dev/null
+++ b/stats/data/pop-history.20040204
@@ -0,0 +1,288 @@
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
diff --git a/stats/data/pop-history.20040205 b/stats/data/pop-history.20040205
new file mode 100644
index 0000000..e5f85ae
--- /dev/null
+++ b/stats/data/pop-history.20040205
@@ -0,0 +1,288 @@
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
diff --git a/stats/data/pop-history.20040206 b/stats/data/pop-history.20040206
new file mode 100644
index 0000000..e5f85ae
--- /dev/null
+++ b/stats/data/pop-history.20040206
@@ -0,0 +1,288 @@
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
diff --git a/stats/data/pop-history.20040207 b/stats/data/pop-history.20040207
new file mode 100644
index 0000000..e5f85ae
--- /dev/null
+++ b/stats/data/pop-history.20040207
@@ -0,0 +1,288 @@
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
diff --git a/stats/data/pop-history.20040208 b/stats/data/pop-history.20040208
new file mode 100644
index 0000000..e5f85ae
--- /dev/null
+++ b/stats/data/pop-history.20040208
@@ -0,0 +1,288 @@
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
diff --git a/stats/data/pop-history.20040209 b/stats/data/pop-history.20040209
new file mode 100644
index 0000000..e5f85ae
--- /dev/null
+++ b/stats/data/pop-history.20040209
@@ -0,0 +1,288 @@
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
diff --git a/stats/data/pop-history.20040210 b/stats/data/pop-history.20040210
new file mode 100644
index 0000000..e5f85ae
--- /dev/null
+++ b/stats/data/pop-history.20040210
@@ -0,0 +1,288 @@
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
diff --git a/stats/data/pop-history.20040211 b/stats/data/pop-history.20040211
new file mode 100644
index 0000000..e5f85ae
--- /dev/null
+++ b/stats/data/pop-history.20040211
@@ -0,0 +1,288 @@
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
diff --git a/stats/data/pop-history.20040212 b/stats/data/pop-history.20040212
new file mode 100644
index 0000000..e5f85ae
--- /dev/null
+++ b/stats/data/pop-history.20040212
@@ -0,0 +1,288 @@
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
diff --git a/stats/data/pop-history.20040213 b/stats/data/pop-history.20040213
new file mode 100644
index 0000000..e5f85ae
--- /dev/null
+++ b/stats/data/pop-history.20040213
@@ -0,0 +1,288 @@
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
diff --git a/stats/data/pop-history.20040214 b/stats/data/pop-history.20040214
new file mode 100644
index 0000000..e5f85ae
--- /dev/null
+++ b/stats/data/pop-history.20040214
@@ -0,0 +1,288 @@
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
diff --git a/stats/data/pop-history.20040215 b/stats/data/pop-history.20040215
new file mode 100644
index 0000000..e5f85ae
--- /dev/null
+++ b/stats/data/pop-history.20040215
@@ -0,0 +1,288 @@
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
diff --git a/stats/data/pop-history.20040216 b/stats/data/pop-history.20040216
new file mode 100644
index 0000000..e5f85ae
--- /dev/null
+++ b/stats/data/pop-history.20040216
@@ -0,0 +1,288 @@
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
diff --git a/stats/data/pop-history.20040217 b/stats/data/pop-history.20040217
new file mode 100644
index 0000000..e5f85ae
--- /dev/null
+++ b/stats/data/pop-history.20040217
@@ -0,0 +1,288 @@
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
diff --git a/stats/data/pop-history.20040218 b/stats/data/pop-history.20040218
new file mode 100644
index 0000000..e5f85ae
--- /dev/null
+++ b/stats/data/pop-history.20040218
@@ -0,0 +1,288 @@
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
diff --git a/stats/data/pop-history.20040219 b/stats/data/pop-history.20040219
new file mode 100644
index 0000000..c867c8b
--- /dev/null
+++ b/stats/data/pop-history.20040219
@@ -0,0 +1,287 @@
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
diff --git a/stats/data/pop-history.20040220 b/stats/data/pop-history.20040220
new file mode 100644
index 0000000..e5f85ae
--- /dev/null
+++ b/stats/data/pop-history.20040220
@@ -0,0 +1,288 @@
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
diff --git a/stats/data/pop-history.20040221 b/stats/data/pop-history.20040221
new file mode 100644
index 0000000..e5f85ae
--- /dev/null
+++ b/stats/data/pop-history.20040221
@@ -0,0 +1,288 @@
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
diff --git a/stats/data/pop-history.20040222 b/stats/data/pop-history.20040222
new file mode 100644
index 0000000..e5f85ae
--- /dev/null
+++ b/stats/data/pop-history.20040222
@@ -0,0 +1,288 @@
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
diff --git a/stats/data/pop-history.20040223 b/stats/data/pop-history.20040223
new file mode 100644
index 0000000..e5f85ae
--- /dev/null
+++ b/stats/data/pop-history.20040223
@@ -0,0 +1,288 @@
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
diff --git a/stats/data/pop-history.20040224 b/stats/data/pop-history.20040224
new file mode 100644
index 0000000..e5f85ae
--- /dev/null
+++ b/stats/data/pop-history.20040224
@@ -0,0 +1,288 @@
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
diff --git a/stats/data/pop-history.20040225 b/stats/data/pop-history.20040225
new file mode 100644
index 0000000..e5f85ae
--- /dev/null
+++ b/stats/data/pop-history.20040225
@@ -0,0 +1,288 @@
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
diff --git a/stats/data/pop-history.20040226 b/stats/data/pop-history.20040226
new file mode 100644
index 0000000..e5f85ae
--- /dev/null
+++ b/stats/data/pop-history.20040226
@@ -0,0 +1,288 @@
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
diff --git a/stats/data/pop-history.20040227 b/stats/data/pop-history.20040227
new file mode 100644
index 0000000..e5f85ae
--- /dev/null
+++ b/stats/data/pop-history.20040227
@@ -0,0 +1,288 @@
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
diff --git a/stats/data/pop-history.20040228 b/stats/data/pop-history.20040228
new file mode 100644
index 0000000..e5f85ae
--- /dev/null
+++ b/stats/data/pop-history.20040228
@@ -0,0 +1,288 @@
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
diff --git a/stats/data/pop-history.20040229 b/stats/data/pop-history.20040229
new file mode 100644
index 0000000..e5f85ae
--- /dev/null
+++ b/stats/data/pop-history.20040229
@@ -0,0 +1,288 @@
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
diff --git a/stats/data/pop-history.20040301 b/stats/data/pop-history.20040301
new file mode 100644
index 0000000..e5f85ae
--- /dev/null
+++ b/stats/data/pop-history.20040301
@@ -0,0 +1,288 @@
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
diff --git a/stats/data/pop-history.20040302 b/stats/data/pop-history.20040302
new file mode 100644
index 0000000..e5f85ae
--- /dev/null
+++ b/stats/data/pop-history.20040302
@@ -0,0 +1,288 @@
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
diff --git a/stats/data/pop-history.20040303 b/stats/data/pop-history.20040303
new file mode 100644
index 0000000..e5f85ae
--- /dev/null
+++ b/stats/data/pop-history.20040303
@@ -0,0 +1,288 @@
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
diff --git a/stats/data/pop-history.20040304 b/stats/data/pop-history.20040304
new file mode 100644
index 0000000..e5f85ae
--- /dev/null
+++ b/stats/data/pop-history.20040304
@@ -0,0 +1,288 @@
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
diff --git a/stats/data/pop-history.20040305 b/stats/data/pop-history.20040305
new file mode 100644
index 0000000..e5f85ae
--- /dev/null
+++ b/stats/data/pop-history.20040305
@@ -0,0 +1,288 @@
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
diff --git a/stats/data/pop-history.20040306 b/stats/data/pop-history.20040306
new file mode 100644
index 0000000..e5f85ae
--- /dev/null
+++ b/stats/data/pop-history.20040306
@@ -0,0 +1,288 @@
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
diff --git a/stats/data/pop-history.20040307 b/stats/data/pop-history.20040307
new file mode 100644
index 0000000..e5f85ae
--- /dev/null
+++ b/stats/data/pop-history.20040307
@@ -0,0 +1,288 @@
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
diff --git a/stats/data/pop-history.20040308 b/stats/data/pop-history.20040308
new file mode 100644
index 0000000..e5f85ae
--- /dev/null
+++ b/stats/data/pop-history.20040308
@@ -0,0 +1,288 @@
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
diff --git a/stats/data/pop-history.20040309 b/stats/data/pop-history.20040309
new file mode 100644
index 0000000..e5f85ae
--- /dev/null
+++ b/stats/data/pop-history.20040309
@@ -0,0 +1,288 @@
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
diff --git a/stats/data/pop-history.20040310 b/stats/data/pop-history.20040310
new file mode 100644
index 0000000..e5f85ae
--- /dev/null
+++ b/stats/data/pop-history.20040310
@@ -0,0 +1,288 @@
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
diff --git a/stats/data/pop-history.20040311 b/stats/data/pop-history.20040311
new file mode 100644
index 0000000..e5f85ae
--- /dev/null
+++ b/stats/data/pop-history.20040311
@@ -0,0 +1,288 @@
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
diff --git a/stats/data/pop-history.20040312 b/stats/data/pop-history.20040312
new file mode 100644
index 0000000..e5f85ae
--- /dev/null
+++ b/stats/data/pop-history.20040312
@@ -0,0 +1,288 @@
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
diff --git a/stats/data/pop-history.20040313 b/stats/data/pop-history.20040313
new file mode 100644
index 0000000..e5f85ae
--- /dev/null
+++ b/stats/data/pop-history.20040313
@@ -0,0 +1,288 @@
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
diff --git a/stats/data/pop-history.20040314 b/stats/data/pop-history.20040314
new file mode 100644
index 0000000..e5f85ae
--- /dev/null
+++ b/stats/data/pop-history.20040314
@@ -0,0 +1,288 @@
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
diff --git a/stats/data/pop-history.20040315 b/stats/data/pop-history.20040315
new file mode 100644
index 0000000..e5f85ae
--- /dev/null
+++ b/stats/data/pop-history.20040315
@@ -0,0 +1,288 @@
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
diff --git a/stats/data/pop-history.20040316 b/stats/data/pop-history.20040316
new file mode 100644
index 0000000..e5f85ae
--- /dev/null
+++ b/stats/data/pop-history.20040316
@@ -0,0 +1,288 @@
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
diff --git a/stats/data/pop-history.20040317 b/stats/data/pop-history.20040317
new file mode 100644
index 0000000..e5f85ae
--- /dev/null
+++ b/stats/data/pop-history.20040317
@@ -0,0 +1,288 @@
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
diff --git a/stats/data/pop-history.20040318 b/stats/data/pop-history.20040318
new file mode 100644
index 0000000..e5f85ae
--- /dev/null
+++ b/stats/data/pop-history.20040318
@@ -0,0 +1,288 @@
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
diff --git a/stats/data/pop-history.20040319 b/stats/data/pop-history.20040319
new file mode 100644
index 0000000..e5f85ae
--- /dev/null
+++ b/stats/data/pop-history.20040319
@@ -0,0 +1,288 @@
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
diff --git a/stats/data/pop-history.20040320 b/stats/data/pop-history.20040320
new file mode 100644
index 0000000..e5f85ae
--- /dev/null
+++ b/stats/data/pop-history.20040320
@@ -0,0 +1,288 @@
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
diff --git a/stats/data/pop-history.20040321 b/stats/data/pop-history.20040321
new file mode 100644
index 0000000..e5f85ae
--- /dev/null
+++ b/stats/data/pop-history.20040321
@@ -0,0 +1,288 @@
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
diff --git a/stats/data/pop-history.20040322 b/stats/data/pop-history.20040322
new file mode 100644
index 0000000..e5f85ae
--- /dev/null
+++ b/stats/data/pop-history.20040322
@@ -0,0 +1,288 @@
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
diff --git a/stats/data/pop-history.20040323 b/stats/data/pop-history.20040323
new file mode 100644
index 0000000..e5f85ae
--- /dev/null
+++ b/stats/data/pop-history.20040323
@@ -0,0 +1,288 @@
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
diff --git a/stats/data/pop-history.20040324 b/stats/data/pop-history.20040324
new file mode 100644
index 0000000..e5f85ae
--- /dev/null
+++ b/stats/data/pop-history.20040324
@@ -0,0 +1,288 @@
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
diff --git a/stats/data/pop-history.20040325 b/stats/data/pop-history.20040325
new file mode 100644
index 0000000..e5f85ae
--- /dev/null
+++ b/stats/data/pop-history.20040325
@@ -0,0 +1,288 @@
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
diff --git a/stats/data/pop-history.20040326 b/stats/data/pop-history.20040326
new file mode 100644
index 0000000..e5f85ae
--- /dev/null
+++ b/stats/data/pop-history.20040326
@@ -0,0 +1,288 @@
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
diff --git a/stats/data/pop-history.20040327 b/stats/data/pop-history.20040327
new file mode 100644
index 0000000..e5f85ae
--- /dev/null
+++ b/stats/data/pop-history.20040327
@@ -0,0 +1,288 @@
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
diff --git a/stats/data/pop-history.20040328 b/stats/data/pop-history.20040328
new file mode 100644
index 0000000..4555984
--- /dev/null
+++ b/stats/data/pop-history.20040328
@@ -0,0 +1,276 @@
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
diff --git a/stats/data/pop-history.20040329 b/stats/data/pop-history.20040329
new file mode 100644
index 0000000..e5f85ae
--- /dev/null
+++ b/stats/data/pop-history.20040329
@@ -0,0 +1,288 @@
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
diff --git a/stats/data/pop-history.20040330 b/stats/data/pop-history.20040330
new file mode 100644
index 0000000..e5f85ae
--- /dev/null
+++ b/stats/data/pop-history.20040330
@@ -0,0 +1,288 @@
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
diff --git a/stats/data/pop-history.20040331 b/stats/data/pop-history.20040331
new file mode 100644
index 0000000..e5f85ae
--- /dev/null
+++ b/stats/data/pop-history.20040331
@@ -0,0 +1,288 @@
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
diff --git a/stats/data/pop-history.20040401 b/stats/data/pop-history.20040401
new file mode 100644
index 0000000..e5f85ae
--- /dev/null
+++ b/stats/data/pop-history.20040401
@@ -0,0 +1,288 @@
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
diff --git a/stats/data/pop-history.20040402 b/stats/data/pop-history.20040402
new file mode 100644
index 0000000..e5f85ae
--- /dev/null
+++ b/stats/data/pop-history.20040402
@@ -0,0 +1,288 @@
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
diff --git a/stats/data/pop-history.20040403 b/stats/data/pop-history.20040403
new file mode 100644
index 0000000..e5f85ae
--- /dev/null
+++ b/stats/data/pop-history.20040403
@@ -0,0 +1,288 @@
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
diff --git a/stats/data/pop-history.20040404 b/stats/data/pop-history.20040404
new file mode 100644
index 0000000..e5f85ae
--- /dev/null
+++ b/stats/data/pop-history.20040404
@@ -0,0 +1,288 @@
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
diff --git a/stats/data/pop-history.20040405 b/stats/data/pop-history.20040405
new file mode 100644
index 0000000..e5f85ae
--- /dev/null
+++ b/stats/data/pop-history.20040405
@@ -0,0 +1,288 @@
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
diff --git a/stats/data/pop-history.20040406 b/stats/data/pop-history.20040406
new file mode 100644
index 0000000..e5f85ae
--- /dev/null
+++ b/stats/data/pop-history.20040406
@@ -0,0 +1,288 @@
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
diff --git a/stats/data/pop-history.20040407 b/stats/data/pop-history.20040407
new file mode 100644
index 0000000..e5f85ae
--- /dev/null
+++ b/stats/data/pop-history.20040407
@@ -0,0 +1,288 @@
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
diff --git a/stats/data/pop-history.20040408 b/stats/data/pop-history.20040408
new file mode 100644
index 0000000..e5f85ae
--- /dev/null
+++ b/stats/data/pop-history.20040408
@@ -0,0 +1,288 @@
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
diff --git a/stats/data/pop-history.20040409 b/stats/data/pop-history.20040409
new file mode 100644
index 0000000..e5f85ae
--- /dev/null
+++ b/stats/data/pop-history.20040409
@@ -0,0 +1,288 @@
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
diff --git a/stats/data/pop-history.20040410 b/stats/data/pop-history.20040410
new file mode 100644
index 0000000..e5f85ae
--- /dev/null
+++ b/stats/data/pop-history.20040410
@@ -0,0 +1,288 @@
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
diff --git a/stats/data/pop-history.20040411 b/stats/data/pop-history.20040411
new file mode 100644
index 0000000..e5f85ae
--- /dev/null
+++ b/stats/data/pop-history.20040411
@@ -0,0 +1,288 @@
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
diff --git a/stats/data/pop-history.20040412 b/stats/data/pop-history.20040412
new file mode 100644
index 0000000..e5f85ae
--- /dev/null
+++ b/stats/data/pop-history.20040412
@@ -0,0 +1,288 @@
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
diff --git a/stats/data/pop-history.20040413 b/stats/data/pop-history.20040413
new file mode 100644
index 0000000..e5f85ae
--- /dev/null
+++ b/stats/data/pop-history.20040413
@@ -0,0 +1,288 @@
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
diff --git a/stats/data/pop-history.20040414 b/stats/data/pop-history.20040414
new file mode 100644
index 0000000..e5f85ae
--- /dev/null
+++ b/stats/data/pop-history.20040414
@@ -0,0 +1,288 @@
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
diff --git a/stats/data/pop-history.20040415 b/stats/data/pop-history.20040415
new file mode 100644
index 0000000..e5f85ae
--- /dev/null
+++ b/stats/data/pop-history.20040415
@@ -0,0 +1,288 @@
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
diff --git a/stats/data/pop-history.20040416 b/stats/data/pop-history.20040416
new file mode 100644
index 0000000..e5f85ae
--- /dev/null
+++ b/stats/data/pop-history.20040416
@@ -0,0 +1,288 @@
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
diff --git a/stats/data/pop-history.20040417 b/stats/data/pop-history.20040417
new file mode 100644
index 0000000..e5f85ae
--- /dev/null
+++ b/stats/data/pop-history.20040417
@@ -0,0 +1,288 @@
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
diff --git a/stats/data/pop-history.20040418 b/stats/data/pop-history.20040418
new file mode 100644
index 0000000..e5f85ae
--- /dev/null
+++ b/stats/data/pop-history.20040418
@@ -0,0 +1,288 @@
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
diff --git a/stats/data/pop-history.20040419 b/stats/data/pop-history.20040419
new file mode 100644
index 0000000..e5f85ae
--- /dev/null
+++ b/stats/data/pop-history.20040419
@@ -0,0 +1,288 @@
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
diff --git a/stats/data/pop-history.20040420 b/stats/data/pop-history.20040420
new file mode 100644
index 0000000..e5f85ae
--- /dev/null
+++ b/stats/data/pop-history.20040420
@@ -0,0 +1,288 @@
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
diff --git a/stats/data/pop-history.20040421 b/stats/data/pop-history.20040421
new file mode 100644
index 0000000..e5f85ae
--- /dev/null
+++ b/stats/data/pop-history.20040421
@@ -0,0 +1,288 @@
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
diff --git a/stats/data/pop-history.20040422 b/stats/data/pop-history.20040422
new file mode 100644
index 0000000..e5f85ae
--- /dev/null
+++ b/stats/data/pop-history.20040422
@@ -0,0 +1,288 @@
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
diff --git a/stats/data/pop-history.20040423 b/stats/data/pop-history.20040423
new file mode 100644
index 0000000..e5f85ae
--- /dev/null
+++ b/stats/data/pop-history.20040423
@@ -0,0 +1,288 @@
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
diff --git a/stats/data/pop-history.20040424 b/stats/data/pop-history.20040424
new file mode 100644
index 0000000..e5f85ae
--- /dev/null
+++ b/stats/data/pop-history.20040424
@@ -0,0 +1,288 @@
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
diff --git a/stats/data/pop-history.20040425 b/stats/data/pop-history.20040425
new file mode 100644
index 0000000..e5f85ae
--- /dev/null
+++ b/stats/data/pop-history.20040425
@@ -0,0 +1,288 @@
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
diff --git a/stats/data/pop-history.20040426 b/stats/data/pop-history.20040426
new file mode 100644
index 0000000..e5f85ae
--- /dev/null
+++ b/stats/data/pop-history.20040426
@@ -0,0 +1,288 @@
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
diff --git a/stats/data/pop-history.20040427 b/stats/data/pop-history.20040427
new file mode 100644
index 0000000..e5f85ae
--- /dev/null
+++ b/stats/data/pop-history.20040427
@@ -0,0 +1,288 @@
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
diff --git a/stats/data/pop-history.20040428 b/stats/data/pop-history.20040428
new file mode 100644
index 0000000..e5f85ae
--- /dev/null
+++ b/stats/data/pop-history.20040428
@@ -0,0 +1,288 @@
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
diff --git a/stats/data/pop-history.20040429 b/stats/data/pop-history.20040429
new file mode 100644
index 0000000..e5f85ae
--- /dev/null
+++ b/stats/data/pop-history.20040429
@@ -0,0 +1,288 @@
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
diff --git a/stats/data/pop-history.20040430 b/stats/data/pop-history.20040430
new file mode 100644
index 0000000..e5f85ae
--- /dev/null
+++ b/stats/data/pop-history.20040430
@@ -0,0 +1,288 @@
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
diff --git a/stats/data/pop-history.20040501 b/stats/data/pop-history.20040501
new file mode 100644
index 0000000..e5f85ae
--- /dev/null
+++ b/stats/data/pop-history.20040501
@@ -0,0 +1,288 @@
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
diff --git a/stats/data/pop-history.20040502 b/stats/data/pop-history.20040502
new file mode 100644
index 0000000..e5f85ae
--- /dev/null
+++ b/stats/data/pop-history.20040502
@@ -0,0 +1,288 @@
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
diff --git a/stats/data/pop-history.20040503 b/stats/data/pop-history.20040503
new file mode 100644
index 0000000..e5f85ae
--- /dev/null
+++ b/stats/data/pop-history.20040503
@@ -0,0 +1,288 @@
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
diff --git a/stats/data/pop-history.20040504 b/stats/data/pop-history.20040504
new file mode 100644
index 0000000..d7ac343
--- /dev/null
+++ b/stats/data/pop-history.20040504
@@ -0,0 +1,224 @@
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
diff --git a/stats/data/pop-history.20040505 b/stats/data/pop-history.20040505
new file mode 100644
index 0000000..e5f85ae
--- /dev/null
+++ b/stats/data/pop-history.20040505
@@ -0,0 +1,288 @@
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
diff --git a/stats/data/pop-history.20040506 b/stats/data/pop-history.20040506
new file mode 100644
index 0000000..e5f85ae
--- /dev/null
+++ b/stats/data/pop-history.20040506
@@ -0,0 +1,288 @@
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
diff --git a/stats/data/pop-history.20040507 b/stats/data/pop-history.20040507
new file mode 100644
index 0000000..e5f85ae
--- /dev/null
+++ b/stats/data/pop-history.20040507
@@ -0,0 +1,288 @@
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
diff --git a/stats/data/pop-history.20040508 b/stats/data/pop-history.20040508
new file mode 100644
index 0000000..e5f85ae
--- /dev/null
+++ b/stats/data/pop-history.20040508
@@ -0,0 +1,288 @@
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
diff --git a/stats/data/pop-history.20040509 b/stats/data/pop-history.20040509
new file mode 100644
index 0000000..e5f85ae
--- /dev/null
+++ b/stats/data/pop-history.20040509
@@ -0,0 +1,288 @@
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
diff --git a/stats/data/pop-history.20040510 b/stats/data/pop-history.20040510
new file mode 100644
index 0000000..e5f85ae
--- /dev/null
+++ b/stats/data/pop-history.20040510
@@ -0,0 +1,288 @@
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
diff --git a/stats/data/pop-history.20040511 b/stats/data/pop-history.20040511
new file mode 100644
index 0000000..e5f85ae
--- /dev/null
+++ b/stats/data/pop-history.20040511
@@ -0,0 +1,288 @@
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
diff --git a/stats/data/pop-history.20040512 b/stats/data/pop-history.20040512
new file mode 100644
index 0000000..e5f85ae
--- /dev/null
+++ b/stats/data/pop-history.20040512
@@ -0,0 +1,288 @@
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
diff --git a/stats/data/pop-history.20040513 b/stats/data/pop-history.20040513
new file mode 100644
index 0000000..e5f85ae
--- /dev/null
+++ b/stats/data/pop-history.20040513
@@ -0,0 +1,288 @@
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
diff --git a/stats/data/pop-history.20040514 b/stats/data/pop-history.20040514
new file mode 100644
index 0000000..e5f85ae
--- /dev/null
+++ b/stats/data/pop-history.20040514
@@ -0,0 +1,288 @@
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
diff --git a/stats/data/pop-history.20040515 b/stats/data/pop-history.20040515
new file mode 100644
index 0000000..e5f85ae
--- /dev/null
+++ b/stats/data/pop-history.20040515
@@ -0,0 +1,288 @@
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
diff --git a/stats/data/pop-history.20040516 b/stats/data/pop-history.20040516
new file mode 100644
index 0000000..e5f85ae
--- /dev/null
+++ b/stats/data/pop-history.20040516
@@ -0,0 +1,288 @@
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
diff --git a/stats/data/pop-history.20040517 b/stats/data/pop-history.20040517
new file mode 100644
index 0000000..e5f85ae
--- /dev/null
+++ b/stats/data/pop-history.20040517
@@ -0,0 +1,288 @@
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
diff --git a/stats/data/pop-history.20040518 b/stats/data/pop-history.20040518
new file mode 100644
index 0000000..e5f85ae
--- /dev/null
+++ b/stats/data/pop-history.20040518
@@ -0,0 +1,288 @@
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
diff --git a/stats/data/pop-history.20040519 b/stats/data/pop-history.20040519
new file mode 100644
index 0000000..e5f85ae
--- /dev/null
+++ b/stats/data/pop-history.20040519
@@ -0,0 +1,288 @@
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
diff --git a/stats/data/pop-history.20040520 b/stats/data/pop-history.20040520
new file mode 100644
index 0000000..e5f85ae
--- /dev/null
+++ b/stats/data/pop-history.20040520
@@ -0,0 +1,288 @@
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
diff --git a/stats/data/pop-history.20040521 b/stats/data/pop-history.20040521
new file mode 100644
index 0000000..e5f85ae
--- /dev/null
+++ b/stats/data/pop-history.20040521
@@ -0,0 +1,288 @@
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
diff --git a/stats/data/pop-history.20040522 b/stats/data/pop-history.20040522
new file mode 100644
index 0000000..e5f85ae
--- /dev/null
+++ b/stats/data/pop-history.20040522
@@ -0,0 +1,288 @@
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
diff --git a/stats/data/pop-history.20040523 b/stats/data/pop-history.20040523
new file mode 100644
index 0000000..e5f85ae
--- /dev/null
+++ b/stats/data/pop-history.20040523
@@ -0,0 +1,288 @@
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
diff --git a/stats/data/pop-history.20040524 b/stats/data/pop-history.20040524
new file mode 100644
index 0000000..e5f85ae
--- /dev/null
+++ b/stats/data/pop-history.20040524
@@ -0,0 +1,288 @@
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
diff --git a/stats/data/pop-history.20040525 b/stats/data/pop-history.20040525
new file mode 100644
index 0000000..e5f85ae
--- /dev/null
+++ b/stats/data/pop-history.20040525
@@ -0,0 +1,288 @@
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
diff --git a/stats/data/pop-history.20040526 b/stats/data/pop-history.20040526
new file mode 100644
index 0000000..e5f85ae
--- /dev/null
+++ b/stats/data/pop-history.20040526
@@ -0,0 +1,288 @@
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
diff --git a/stats/data/pop-history.20040527 b/stats/data/pop-history.20040527
new file mode 100644
index 0000000..e5f85ae
--- /dev/null
+++ b/stats/data/pop-history.20040527
@@ -0,0 +1,288 @@
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
diff --git a/stats/data/pop-history.20040528 b/stats/data/pop-history.20040528
new file mode 100644
index 0000000..e5f85ae
--- /dev/null
+++ b/stats/data/pop-history.20040528
@@ -0,0 +1,288 @@
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
diff --git a/stats/data/pop-history.20040529 b/stats/data/pop-history.20040529
new file mode 100644
index 0000000..e5f85ae
--- /dev/null
+++ b/stats/data/pop-history.20040529
@@ -0,0 +1,288 @@
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
diff --git a/stats/data/pop-history.20040530 b/stats/data/pop-history.20040530
new file mode 100644
index 0000000..e5f85ae
--- /dev/null
+++ b/stats/data/pop-history.20040530
@@ -0,0 +1,288 @@
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
diff --git a/stats/data/pop-history.20040531 b/stats/data/pop-history.20040531
new file mode 100644
index 0000000..e5f85ae
--- /dev/null
+++ b/stats/data/pop-history.20040531
@@ -0,0 +1,288 @@
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
diff --git a/stats/data/pop-history.20040601 b/stats/data/pop-history.20040601
new file mode 100644
index 0000000..e5f85ae
--- /dev/null
+++ b/stats/data/pop-history.20040601
@@ -0,0 +1,288 @@
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
diff --git a/stats/data/pop-history.20040602 b/stats/data/pop-history.20040602
new file mode 100644
index 0000000..e5f85ae
--- /dev/null
+++ b/stats/data/pop-history.20040602
@@ -0,0 +1,288 @@
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
diff --git a/stats/data/pop-history.20040603 b/stats/data/pop-history.20040603
new file mode 100644
index 0000000..e5f85ae
--- /dev/null
+++ b/stats/data/pop-history.20040603
@@ -0,0 +1,288 @@
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
diff --git a/stats/data/pop-history.20040604 b/stats/data/pop-history.20040604
new file mode 100644
index 0000000..e5f85ae
--- /dev/null
+++ b/stats/data/pop-history.20040604
@@ -0,0 +1,288 @@
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
diff --git a/stats/data/pop-history.20040605 b/stats/data/pop-history.20040605
new file mode 100644
index 0000000..e5f85ae
--- /dev/null
+++ b/stats/data/pop-history.20040605
@@ -0,0 +1,288 @@
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
diff --git a/stats/data/pop-history.20040606 b/stats/data/pop-history.20040606
new file mode 100644
index 0000000..e5f85ae
--- /dev/null
+++ b/stats/data/pop-history.20040606
@@ -0,0 +1,288 @@
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
diff --git a/stats/data/pop-history.20040607 b/stats/data/pop-history.20040607
new file mode 100644
index 0000000..e5f85ae
--- /dev/null
+++ b/stats/data/pop-history.20040607
@@ -0,0 +1,288 @@
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
diff --git a/stats/data/pop-history.20040608 b/stats/data/pop-history.20040608
new file mode 100644
index 0000000..e5f85ae
--- /dev/null
+++ b/stats/data/pop-history.20040608
@@ -0,0 +1,288 @@
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
diff --git a/stats/data/pop-history.20040609 b/stats/data/pop-history.20040609
new file mode 100644
index 0000000..e5f85ae
--- /dev/null
+++ b/stats/data/pop-history.20040609
@@ -0,0 +1,288 @@
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
diff --git a/stats/data/pop-history.20040610 b/stats/data/pop-history.20040610
new file mode 100644
index 0000000..e5f85ae
--- /dev/null
+++ b/stats/data/pop-history.20040610
@@ -0,0 +1,288 @@
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
diff --git a/stats/data/pop-history.20040611 b/stats/data/pop-history.20040611
new file mode 100644
index 0000000..e5f85ae
--- /dev/null
+++ b/stats/data/pop-history.20040611
@@ -0,0 +1,288 @@
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
diff --git a/stats/data/pop-history.20040612 b/stats/data/pop-history.20040612
new file mode 100644
index 0000000..e5f85ae
--- /dev/null
+++ b/stats/data/pop-history.20040612
@@ -0,0 +1,288 @@
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
diff --git a/stats/data/pop-history.20040613 b/stats/data/pop-history.20040613
new file mode 100644
index 0000000..e5f85ae
--- /dev/null
+++ b/stats/data/pop-history.20040613
@@ -0,0 +1,288 @@
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
diff --git a/stats/data/pop-history.20040614 b/stats/data/pop-history.20040614
new file mode 100644
index 0000000..e5f85ae
--- /dev/null
+++ b/stats/data/pop-history.20040614
@@ -0,0 +1,288 @@
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
diff --git a/stats/data/pop-history.20040615 b/stats/data/pop-history.20040615
new file mode 100644
index 0000000..e5f85ae
--- /dev/null
+++ b/stats/data/pop-history.20040615
@@ -0,0 +1,288 @@
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
diff --git a/stats/data/pop-history.20040616 b/stats/data/pop-history.20040616
new file mode 100644
index 0000000..e5f85ae
--- /dev/null
+++ b/stats/data/pop-history.20040616
@@ -0,0 +1,288 @@
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
diff --git a/stats/data/pop-history.20040617 b/stats/data/pop-history.20040617
new file mode 100644
index 0000000..4307b77
--- /dev/null
+++ b/stats/data/pop-history.20040617
@@ -0,0 +1,180 @@
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
+2158
diff --git a/stats/data/smtp-history.20040116 b/stats/data/smtp-history.20040116
new file mode 100644
index 0000000..550e2ef
--- /dev/null
+++ b/stats/data/smtp-history.20040116
@@ -0,0 +1,169 @@
+0
+0
+0
+0
+0
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
diff --git a/stats/data/smtp-history.20040117 b/stats/data/smtp-history.20040117
new file mode 100644
index 0000000..0cb024d
--- /dev/null
+++ b/stats/data/smtp-history.20040117
@@ -0,0 +1,288 @@
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
diff --git a/stats/data/smtp-history.20040118 b/stats/data/smtp-history.20040118
new file mode 100644
index 0000000..0cb024d
--- /dev/null
+++ b/stats/data/smtp-history.20040118
@@ -0,0 +1,288 @@
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
diff --git a/stats/data/smtp-history.20040119 b/stats/data/smtp-history.20040119
new file mode 100644
index 0000000..0cb024d
--- /dev/null
+++ b/stats/data/smtp-history.20040119
@@ -0,0 +1,288 @@
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
diff --git a/stats/data/smtp-history.20040120 b/stats/data/smtp-history.20040120
new file mode 100644
index 0000000..0cb024d
--- /dev/null
+++ b/stats/data/smtp-history.20040120
@@ -0,0 +1,288 @@
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
diff --git a/stats/data/smtp-history.20040121 b/stats/data/smtp-history.20040121
new file mode 100644
index 0000000..0cb024d
--- /dev/null
+++ b/stats/data/smtp-history.20040121
@@ -0,0 +1,288 @@
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
diff --git a/stats/data/smtp-history.20040122 b/stats/data/smtp-history.20040122
new file mode 100644
index 0000000..05eccb3
--- /dev/null
+++ b/stats/data/smtp-history.20040122
@@ -0,0 +1,282 @@
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
diff --git a/stats/data/smtp-history.20040123 b/stats/data/smtp-history.20040123
new file mode 100644
index 0000000..6d35439
--- /dev/null
+++ b/stats/data/smtp-history.20040123
@@ -0,0 +1,116 @@
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
diff --git a/stats/data/smtp-history.20040124 b/stats/data/smtp-history.20040124
new file mode 100644
index 0000000..0cb024d
--- /dev/null
+++ b/stats/data/smtp-history.20040124
@@ -0,0 +1,288 @@
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
diff --git a/stats/data/smtp-history.20040125 b/stats/data/smtp-history.20040125
new file mode 100644
index 0000000..0cb024d
--- /dev/null
+++ b/stats/data/smtp-history.20040125
@@ -0,0 +1,288 @@
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
diff --git a/stats/data/smtp-history.20040126 b/stats/data/smtp-history.20040126
new file mode 100644
index 0000000..0cb024d
--- /dev/null
+++ b/stats/data/smtp-history.20040126
@@ -0,0 +1,288 @@
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
diff --git a/stats/data/smtp-history.20040127 b/stats/data/smtp-history.20040127
new file mode 100644
index 0000000..0cb024d
--- /dev/null
+++ b/stats/data/smtp-history.20040127
@@ -0,0 +1,288 @@
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
diff --git a/stats/data/smtp-history.20040128 b/stats/data/smtp-history.20040128
new file mode 100644
index 0000000..0cb024d
--- /dev/null
+++ b/stats/data/smtp-history.20040128
@@ -0,0 +1,288 @@
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
diff --git a/stats/data/smtp-history.20040129 b/stats/data/smtp-history.20040129
new file mode 100644
index 0000000..0cb024d
--- /dev/null
+++ b/stats/data/smtp-history.20040129
@@ -0,0 +1,288 @@
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
diff --git a/stats/data/smtp-history.20040130 b/stats/data/smtp-history.20040130
new file mode 100644
index 0000000..0cb024d
--- /dev/null
+++ b/stats/data/smtp-history.20040130
@@ -0,0 +1,288 @@
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
diff --git a/stats/data/smtp-history.20040131 b/stats/data/smtp-history.20040131
new file mode 100644
index 0000000..0cb024d
--- /dev/null
+++ b/stats/data/smtp-history.20040131
@@ -0,0 +1,288 @@
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
diff --git a/stats/data/smtp-history.20040201 b/stats/data/smtp-history.20040201
new file mode 100644
index 0000000..0cb024d
--- /dev/null
+++ b/stats/data/smtp-history.20040201
@@ -0,0 +1,288 @@
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
diff --git a/stats/data/smtp-history.20040202 b/stats/data/smtp-history.20040202
new file mode 100644
index 0000000..0cb024d
--- /dev/null
+++ b/stats/data/smtp-history.20040202
@@ -0,0 +1,288 @@
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
diff --git a/stats/data/smtp-history.20040203 b/stats/data/smtp-history.20040203
new file mode 100644
index 0000000..0cb024d
--- /dev/null
+++ b/stats/data/smtp-history.20040203
@@ -0,0 +1,288 @@
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
diff --git a/stats/data/smtp-history.20040204 b/stats/data/smtp-history.20040204
new file mode 100644
index 0000000..0cb024d
--- /dev/null
+++ b/stats/data/smtp-history.20040204
@@ -0,0 +1,288 @@
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
diff --git a/stats/data/smtp-history.20040205 b/stats/data/smtp-history.20040205
new file mode 100644
index 0000000..0cb024d
--- /dev/null
+++ b/stats/data/smtp-history.20040205
@@ -0,0 +1,288 @@
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
diff --git a/stats/data/smtp-history.20040206 b/stats/data/smtp-history.20040206
new file mode 100644
index 0000000..0cb024d
--- /dev/null
+++ b/stats/data/smtp-history.20040206
@@ -0,0 +1,288 @@
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
diff --git a/stats/data/smtp-history.20040207 b/stats/data/smtp-history.20040207
new file mode 100644
index 0000000..0cb024d
--- /dev/null
+++ b/stats/data/smtp-history.20040207
@@ -0,0 +1,288 @@
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
diff --git a/stats/data/smtp-history.20040208 b/stats/data/smtp-history.20040208
new file mode 100644
index 0000000..0cb024d
--- /dev/null
+++ b/stats/data/smtp-history.20040208
@@ -0,0 +1,288 @@
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
diff --git a/stats/data/smtp-history.20040209 b/stats/data/smtp-history.20040209
new file mode 100644
index 0000000..0cb024d
--- /dev/null
+++ b/stats/data/smtp-history.20040209
@@ -0,0 +1,288 @@
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
diff --git a/stats/data/smtp-history.20040210 b/stats/data/smtp-history.20040210
new file mode 100644
index 0000000..0cb024d
--- /dev/null
+++ b/stats/data/smtp-history.20040210
@@ -0,0 +1,288 @@
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
diff --git a/stats/data/smtp-history.20040211 b/stats/data/smtp-history.20040211
new file mode 100644
index 0000000..0cb024d
--- /dev/null
+++ b/stats/data/smtp-history.20040211
@@ -0,0 +1,288 @@
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
diff --git a/stats/data/smtp-history.20040212 b/stats/data/smtp-history.20040212
new file mode 100644
index 0000000..0cb024d
--- /dev/null
+++ b/stats/data/smtp-history.20040212
@@ -0,0 +1,288 @@
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
diff --git a/stats/data/smtp-history.20040213 b/stats/data/smtp-history.20040213
new file mode 100644
index 0000000..0cb024d
--- /dev/null
+++ b/stats/data/smtp-history.20040213
@@ -0,0 +1,288 @@
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
diff --git a/stats/data/smtp-history.20040214 b/stats/data/smtp-history.20040214
new file mode 100644
index 0000000..0cb024d
--- /dev/null
+++ b/stats/data/smtp-history.20040214
@@ -0,0 +1,288 @@
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
diff --git a/stats/data/smtp-history.20040215 b/stats/data/smtp-history.20040215
new file mode 100644
index 0000000..0cb024d
--- /dev/null
+++ b/stats/data/smtp-history.20040215
@@ -0,0 +1,288 @@
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
diff --git a/stats/data/smtp-history.20040216 b/stats/data/smtp-history.20040216
new file mode 100644
index 0000000..0cb024d
--- /dev/null
+++ b/stats/data/smtp-history.20040216
@@ -0,0 +1,288 @@
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
diff --git a/stats/data/smtp-history.20040217 b/stats/data/smtp-history.20040217
new file mode 100644
index 0000000..0cb024d
--- /dev/null
+++ b/stats/data/smtp-history.20040217
@@ -0,0 +1,288 @@
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
diff --git a/stats/data/smtp-history.20040218 b/stats/data/smtp-history.20040218
new file mode 100644
index 0000000..0cb024d
--- /dev/null
+++ b/stats/data/smtp-history.20040218
@@ -0,0 +1,288 @@
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
diff --git a/stats/data/smtp-history.20040219 b/stats/data/smtp-history.20040219
new file mode 100644
index 0000000..460d016
--- /dev/null
+++ b/stats/data/smtp-history.20040219
@@ -0,0 +1,287 @@
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
diff --git a/stats/data/smtp-history.20040220 b/stats/data/smtp-history.20040220
new file mode 100644
index 0000000..0cb024d
--- /dev/null
+++ b/stats/data/smtp-history.20040220
@@ -0,0 +1,288 @@
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
diff --git a/stats/data/smtp-history.20040221 b/stats/data/smtp-history.20040221
new file mode 100644
index 0000000..0cb024d
--- /dev/null
+++ b/stats/data/smtp-history.20040221
@@ -0,0 +1,288 @@
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
diff --git a/stats/data/smtp-history.20040222 b/stats/data/smtp-history.20040222
new file mode 100644
index 0000000..0cb024d
--- /dev/null
+++ b/stats/data/smtp-history.20040222
@@ -0,0 +1,288 @@
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
diff --git a/stats/data/smtp-history.20040223 b/stats/data/smtp-history.20040223
new file mode 100644
index 0000000..0cb024d
--- /dev/null
+++ b/stats/data/smtp-history.20040223
@@ -0,0 +1,288 @@
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
diff --git a/stats/data/smtp-history.20040224 b/stats/data/smtp-history.20040224
new file mode 100644
index 0000000..0cb024d
--- /dev/null
+++ b/stats/data/smtp-history.20040224
@@ -0,0 +1,288 @@
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
diff --git a/stats/data/smtp-history.20040225 b/stats/data/smtp-history.20040225
new file mode 100644
index 0000000..0cb024d
--- /dev/null
+++ b/stats/data/smtp-history.20040225
@@ -0,0 +1,288 @@
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
diff --git a/stats/data/smtp-history.20040226 b/stats/data/smtp-history.20040226
new file mode 100644
index 0000000..0cb024d
--- /dev/null
+++ b/stats/data/smtp-history.20040226
@@ -0,0 +1,288 @@
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
diff --git a/stats/data/smtp-history.20040227 b/stats/data/smtp-history.20040227
new file mode 100644
index 0000000..0cb024d
--- /dev/null
+++ b/stats/data/smtp-history.20040227
@@ -0,0 +1,288 @@
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
diff --git a/stats/data/smtp-history.20040228 b/stats/data/smtp-history.20040228
new file mode 100644
index 0000000..0cb024d
--- /dev/null
+++ b/stats/data/smtp-history.20040228
@@ -0,0 +1,288 @@
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
diff --git a/stats/data/smtp-history.20040229 b/stats/data/smtp-history.20040229
new file mode 100644
index 0000000..0cb024d
--- /dev/null
+++ b/stats/data/smtp-history.20040229
@@ -0,0 +1,288 @@
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
diff --git a/stats/data/smtp-history.20040301 b/stats/data/smtp-history.20040301
new file mode 100644
index 0000000..0cb024d
--- /dev/null
+++ b/stats/data/smtp-history.20040301
@@ -0,0 +1,288 @@
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
diff --git a/stats/data/smtp-history.20040302 b/stats/data/smtp-history.20040302
new file mode 100644
index 0000000..0cb024d
--- /dev/null
+++ b/stats/data/smtp-history.20040302
@@ -0,0 +1,288 @@
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
diff --git a/stats/data/smtp-history.20040303 b/stats/data/smtp-history.20040303
new file mode 100644
index 0000000..0cb024d
--- /dev/null
+++ b/stats/data/smtp-history.20040303
@@ -0,0 +1,288 @@
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
diff --git a/stats/data/smtp-history.20040304 b/stats/data/smtp-history.20040304
new file mode 100644
index 0000000..0cb024d
--- /dev/null
+++ b/stats/data/smtp-history.20040304
@@ -0,0 +1,288 @@
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
diff --git a/stats/data/smtp-history.20040305 b/stats/data/smtp-history.20040305
new file mode 100644
index 0000000..0cb024d
--- /dev/null
+++ b/stats/data/smtp-history.20040305
@@ -0,0 +1,288 @@
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
diff --git a/stats/data/smtp-history.20040306 b/stats/data/smtp-history.20040306
new file mode 100644
index 0000000..0cb024d
--- /dev/null
+++ b/stats/data/smtp-history.20040306
@@ -0,0 +1,288 @@
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
diff --git a/stats/data/smtp-history.20040307 b/stats/data/smtp-history.20040307
new file mode 100644
index 0000000..0cb024d
--- /dev/null
+++ b/stats/data/smtp-history.20040307
@@ -0,0 +1,288 @@
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
diff --git a/stats/data/smtp-history.20040308 b/stats/data/smtp-history.20040308
new file mode 100644
index 0000000..0cb024d
--- /dev/null
+++ b/stats/data/smtp-history.20040308
@@ -0,0 +1,288 @@
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
diff --git a/stats/data/smtp-history.20040309 b/stats/data/smtp-history.20040309
new file mode 100644
index 0000000..0cb024d
--- /dev/null
+++ b/stats/data/smtp-history.20040309
@@ -0,0 +1,288 @@
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
diff --git a/stats/data/smtp-history.20040310 b/stats/data/smtp-history.20040310
new file mode 100644
index 0000000..0cb024d
--- /dev/null
+++ b/stats/data/smtp-history.20040310
@@ -0,0 +1,288 @@
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
diff --git a/stats/data/smtp-history.20040311 b/stats/data/smtp-history.20040311
new file mode 100644
index 0000000..0cb024d
--- /dev/null
+++ b/stats/data/smtp-history.20040311
@@ -0,0 +1,288 @@
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
diff --git a/stats/data/smtp-history.20040312 b/stats/data/smtp-history.20040312
new file mode 100644
index 0000000..0cb024d
--- /dev/null
+++ b/stats/data/smtp-history.20040312
@@ -0,0 +1,288 @@
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
diff --git a/stats/data/smtp-history.20040313 b/stats/data/smtp-history.20040313
new file mode 100644
index 0000000..0cb024d
--- /dev/null
+++ b/stats/data/smtp-history.20040313
@@ -0,0 +1,288 @@
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
diff --git a/stats/data/smtp-history.20040314 b/stats/data/smtp-history.20040314
new file mode 100644
index 0000000..0cb024d
--- /dev/null
+++ b/stats/data/smtp-history.20040314
@@ -0,0 +1,288 @@
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
diff --git a/stats/data/smtp-history.20040315 b/stats/data/smtp-history.20040315
new file mode 100644
index 0000000..0cb024d
--- /dev/null
+++ b/stats/data/smtp-history.20040315
@@ -0,0 +1,288 @@
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
diff --git a/stats/data/smtp-history.20040316 b/stats/data/smtp-history.20040316
new file mode 100644
index 0000000..0cb024d
--- /dev/null
+++ b/stats/data/smtp-history.20040316
@@ -0,0 +1,288 @@
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
diff --git a/stats/data/smtp-history.20040317 b/stats/data/smtp-history.20040317
new file mode 100644
index 0000000..0cb024d
--- /dev/null
+++ b/stats/data/smtp-history.20040317
@@ -0,0 +1,288 @@
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
diff --git a/stats/data/smtp-history.20040318 b/stats/data/smtp-history.20040318
new file mode 100644
index 0000000..0cb024d
--- /dev/null
+++ b/stats/data/smtp-history.20040318
@@ -0,0 +1,288 @@
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
diff --git a/stats/data/smtp-history.20040319 b/stats/data/smtp-history.20040319
new file mode 100644
index 0000000..0cb024d
--- /dev/null
+++ b/stats/data/smtp-history.20040319
@@ -0,0 +1,288 @@
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
diff --git a/stats/data/smtp-history.20040320 b/stats/data/smtp-history.20040320
new file mode 100644
index 0000000..0cb024d
--- /dev/null
+++ b/stats/data/smtp-history.20040320
@@ -0,0 +1,288 @@
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
diff --git a/stats/data/smtp-history.20040321 b/stats/data/smtp-history.20040321
new file mode 100644
index 0000000..0cb024d
--- /dev/null
+++ b/stats/data/smtp-history.20040321
@@ -0,0 +1,288 @@
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
diff --git a/stats/data/smtp-history.20040322 b/stats/data/smtp-history.20040322
new file mode 100644
index 0000000..0cb024d
--- /dev/null
+++ b/stats/data/smtp-history.20040322
@@ -0,0 +1,288 @@
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
diff --git a/stats/data/smtp-history.20040323 b/stats/data/smtp-history.20040323
new file mode 100644
index 0000000..0cb024d
--- /dev/null
+++ b/stats/data/smtp-history.20040323
@@ -0,0 +1,288 @@
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
diff --git a/stats/data/smtp-history.20040324 b/stats/data/smtp-history.20040324
new file mode 100644
index 0000000..0cb024d
--- /dev/null
+++ b/stats/data/smtp-history.20040324
@@ -0,0 +1,288 @@
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
diff --git a/stats/data/smtp-history.20040325 b/stats/data/smtp-history.20040325
new file mode 100644
index 0000000..0cb024d
--- /dev/null
+++ b/stats/data/smtp-history.20040325
@@ -0,0 +1,288 @@
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
diff --git a/stats/data/smtp-history.20040326 b/stats/data/smtp-history.20040326
new file mode 100644
index 0000000..0cb024d
--- /dev/null
+++ b/stats/data/smtp-history.20040326
@@ -0,0 +1,288 @@
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
diff --git a/stats/data/smtp-history.20040327 b/stats/data/smtp-history.20040327
new file mode 100644
index 0000000..0cb024d
--- /dev/null
+++ b/stats/data/smtp-history.20040327
@@ -0,0 +1,288 @@
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
diff --git a/stats/data/smtp-history.20040328 b/stats/data/smtp-history.20040328
new file mode 100644
index 0000000..a39f6b9
--- /dev/null
+++ b/stats/data/smtp-history.20040328
@@ -0,0 +1,276 @@
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
diff --git a/stats/data/smtp-history.20040329 b/stats/data/smtp-history.20040329
new file mode 100644
index 0000000..0cb024d
--- /dev/null
+++ b/stats/data/smtp-history.20040329
@@ -0,0 +1,288 @@
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
diff --git a/stats/data/smtp-history.20040330 b/stats/data/smtp-history.20040330
new file mode 100644
index 0000000..0cb024d
--- /dev/null
+++ b/stats/data/smtp-history.20040330
@@ -0,0 +1,288 @@
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
diff --git a/stats/data/smtp-history.20040331 b/stats/data/smtp-history.20040331
new file mode 100644
index 0000000..0cb024d
--- /dev/null
+++ b/stats/data/smtp-history.20040331
@@ -0,0 +1,288 @@
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
diff --git a/stats/data/smtp-history.20040401 b/stats/data/smtp-history.20040401
new file mode 100644
index 0000000..0cb024d
--- /dev/null
+++ b/stats/data/smtp-history.20040401
@@ -0,0 +1,288 @@
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
diff --git a/stats/data/smtp-history.20040402 b/stats/data/smtp-history.20040402
new file mode 100644
index 0000000..0cb024d
--- /dev/null
+++ b/stats/data/smtp-history.20040402
@@ -0,0 +1,288 @@
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
diff --git a/stats/data/smtp-history.20040403 b/stats/data/smtp-history.20040403
new file mode 100644
index 0000000..0cb024d
--- /dev/null
+++ b/stats/data/smtp-history.20040403
@@ -0,0 +1,288 @@
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
diff --git a/stats/data/smtp-history.20040404 b/stats/data/smtp-history.20040404
new file mode 100644
index 0000000..0cb024d
--- /dev/null
+++ b/stats/data/smtp-history.20040404
@@ -0,0 +1,288 @@
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
diff --git a/stats/data/smtp-history.20040405 b/stats/data/smtp-history.20040405
new file mode 100644
index 0000000..0cb024d
--- /dev/null
+++ b/stats/data/smtp-history.20040405
@@ -0,0 +1,288 @@
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
diff --git a/stats/data/smtp-history.20040406 b/stats/data/smtp-history.20040406
new file mode 100644
index 0000000..0cb024d
--- /dev/null
+++ b/stats/data/smtp-history.20040406
@@ -0,0 +1,288 @@
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
diff --git a/stats/data/smtp-history.20040407 b/stats/data/smtp-history.20040407
new file mode 100644
index 0000000..0cb024d
--- /dev/null
+++ b/stats/data/smtp-history.20040407
@@ -0,0 +1,288 @@
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
diff --git a/stats/data/smtp-history.20040408 b/stats/data/smtp-history.20040408
new file mode 100644
index 0000000..0cb024d
--- /dev/null
+++ b/stats/data/smtp-history.20040408
@@ -0,0 +1,288 @@
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
diff --git a/stats/data/smtp-history.20040409 b/stats/data/smtp-history.20040409
new file mode 100644
index 0000000..0cb024d
--- /dev/null
+++ b/stats/data/smtp-history.20040409
@@ -0,0 +1,288 @@
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
diff --git a/stats/data/smtp-history.20040410 b/stats/data/smtp-history.20040410
new file mode 100644
index 0000000..0cb024d
--- /dev/null
+++ b/stats/data/smtp-history.20040410
@@ -0,0 +1,288 @@
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
diff --git a/stats/data/smtp-history.20040411 b/stats/data/smtp-history.20040411
new file mode 100644
index 0000000..0cb024d
--- /dev/null
+++ b/stats/data/smtp-history.20040411
@@ -0,0 +1,288 @@
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
diff --git a/stats/data/smtp-history.20040412 b/stats/data/smtp-history.20040412
new file mode 100644
index 0000000..0cb024d
--- /dev/null
+++ b/stats/data/smtp-history.20040412
@@ -0,0 +1,288 @@
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
diff --git a/stats/data/smtp-history.20040413 b/stats/data/smtp-history.20040413
new file mode 100644
index 0000000..0cb024d
--- /dev/null
+++ b/stats/data/smtp-history.20040413
@@ -0,0 +1,288 @@
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
diff --git a/stats/data/smtp-history.20040414 b/stats/data/smtp-history.20040414
new file mode 100644
index 0000000..0cb024d
--- /dev/null
+++ b/stats/data/smtp-history.20040414
@@ -0,0 +1,288 @@
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
diff --git a/stats/data/smtp-history.20040415 b/stats/data/smtp-history.20040415
new file mode 100644
index 0000000..0cb024d
--- /dev/null
+++ b/stats/data/smtp-history.20040415
@@ -0,0 +1,288 @@
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
diff --git a/stats/data/smtp-history.20040416 b/stats/data/smtp-history.20040416
new file mode 100644
index 0000000..0cb024d
--- /dev/null
+++ b/stats/data/smtp-history.20040416
@@ -0,0 +1,288 @@
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
diff --git a/stats/data/smtp-history.20040417 b/stats/data/smtp-history.20040417
new file mode 100644
index 0000000..0cb024d
--- /dev/null
+++ b/stats/data/smtp-history.20040417
@@ -0,0 +1,288 @@
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
diff --git a/stats/data/smtp-history.20040418 b/stats/data/smtp-history.20040418
new file mode 100644
index 0000000..0cb024d
--- /dev/null
+++ b/stats/data/smtp-history.20040418
@@ -0,0 +1,288 @@
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
diff --git a/stats/data/smtp-history.20040419 b/stats/data/smtp-history.20040419
new file mode 100644
index 0000000..0cb024d
--- /dev/null
+++ b/stats/data/smtp-history.20040419
@@ -0,0 +1,288 @@
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
diff --git a/stats/data/smtp-history.20040420 b/stats/data/smtp-history.20040420
new file mode 100644
index 0000000..0cb024d
--- /dev/null
+++ b/stats/data/smtp-history.20040420
@@ -0,0 +1,288 @@
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
diff --git a/stats/data/smtp-history.20040421 b/stats/data/smtp-history.20040421
new file mode 100644
index 0000000..0cb024d
--- /dev/null
+++ b/stats/data/smtp-history.20040421
@@ -0,0 +1,288 @@
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
diff --git a/stats/data/smtp-history.20040422 b/stats/data/smtp-history.20040422
new file mode 100644
index 0000000..0cb024d
--- /dev/null
+++ b/stats/data/smtp-history.20040422
@@ -0,0 +1,288 @@
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
diff --git a/stats/data/smtp-history.20040423 b/stats/data/smtp-history.20040423
new file mode 100644
index 0000000..0cb024d
--- /dev/null
+++ b/stats/data/smtp-history.20040423
@@ -0,0 +1,288 @@
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
diff --git a/stats/data/smtp-history.20040424 b/stats/data/smtp-history.20040424
new file mode 100644
index 0000000..0cb024d
--- /dev/null
+++ b/stats/data/smtp-history.20040424
@@ -0,0 +1,288 @@
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
diff --git a/stats/data/smtp-history.20040425 b/stats/data/smtp-history.20040425
new file mode 100644
index 0000000..0cb024d
--- /dev/null
+++ b/stats/data/smtp-history.20040425
@@ -0,0 +1,288 @@
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
diff --git a/stats/data/smtp-history.20040426 b/stats/data/smtp-history.20040426
new file mode 100644
index 0000000..0cb024d
--- /dev/null
+++ b/stats/data/smtp-history.20040426
@@ -0,0 +1,288 @@
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
diff --git a/stats/data/smtp-history.20040427 b/stats/data/smtp-history.20040427
new file mode 100644
index 0000000..0cb024d
--- /dev/null
+++ b/stats/data/smtp-history.20040427
@@ -0,0 +1,288 @@
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
diff --git a/stats/data/smtp-history.20040428 b/stats/data/smtp-history.20040428
new file mode 100644
index 0000000..0cb024d
--- /dev/null
+++ b/stats/data/smtp-history.20040428
@@ -0,0 +1,288 @@
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
diff --git a/stats/data/smtp-history.20040429 b/stats/data/smtp-history.20040429
new file mode 100644
index 0000000..0cb024d
--- /dev/null
+++ b/stats/data/smtp-history.20040429
@@ -0,0 +1,288 @@
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
diff --git a/stats/data/smtp-history.20040430 b/stats/data/smtp-history.20040430
new file mode 100644
index 0000000..0cb024d
--- /dev/null
+++ b/stats/data/smtp-history.20040430
@@ -0,0 +1,288 @@
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
diff --git a/stats/data/smtp-history.20040501 b/stats/data/smtp-history.20040501
new file mode 100644
index 0000000..0cb024d
--- /dev/null
+++ b/stats/data/smtp-history.20040501
@@ -0,0 +1,288 @@
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
diff --git a/stats/data/smtp-history.20040502 b/stats/data/smtp-history.20040502
new file mode 100644
index 0000000..0cb024d
--- /dev/null
+++ b/stats/data/smtp-history.20040502
@@ -0,0 +1,288 @@
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
diff --git a/stats/data/smtp-history.20040503 b/stats/data/smtp-history.20040503
new file mode 100644
index 0000000..0cb024d
--- /dev/null
+++ b/stats/data/smtp-history.20040503
@@ -0,0 +1,288 @@
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
diff --git a/stats/data/smtp-history.20040504 b/stats/data/smtp-history.20040504
new file mode 100644
index 0000000..42367c5
--- /dev/null
+++ b/stats/data/smtp-history.20040504
@@ -0,0 +1,224 @@
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
diff --git a/stats/data/smtp-history.20040505 b/stats/data/smtp-history.20040505
new file mode 100644
index 0000000..0cb024d
--- /dev/null
+++ b/stats/data/smtp-history.20040505
@@ -0,0 +1,288 @@
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
diff --git a/stats/data/smtp-history.20040506 b/stats/data/smtp-history.20040506
new file mode 100644
index 0000000..0cb024d
--- /dev/null
+++ b/stats/data/smtp-history.20040506
@@ -0,0 +1,288 @@
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
diff --git a/stats/data/smtp-history.20040507 b/stats/data/smtp-history.20040507
new file mode 100644
index 0000000..0cb024d
--- /dev/null
+++ b/stats/data/smtp-history.20040507
@@ -0,0 +1,288 @@
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
diff --git a/stats/data/smtp-history.20040508 b/stats/data/smtp-history.20040508
new file mode 100644
index 0000000..0cb024d
--- /dev/null
+++ b/stats/data/smtp-history.20040508
@@ -0,0 +1,288 @@
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
diff --git a/stats/data/smtp-history.20040509 b/stats/data/smtp-history.20040509
new file mode 100644
index 0000000..0cb024d
--- /dev/null
+++ b/stats/data/smtp-history.20040509
@@ -0,0 +1,288 @@
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
diff --git a/stats/data/smtp-history.20040510 b/stats/data/smtp-history.20040510
new file mode 100644
index 0000000..0cb024d
--- /dev/null
+++ b/stats/data/smtp-history.20040510
@@ -0,0 +1,288 @@
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
diff --git a/stats/data/smtp-history.20040511 b/stats/data/smtp-history.20040511
new file mode 100644
index 0000000..0cb024d
--- /dev/null
+++ b/stats/data/smtp-history.20040511
@@ -0,0 +1,288 @@
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
diff --git a/stats/data/smtp-history.20040512 b/stats/data/smtp-history.20040512
new file mode 100644
index 0000000..0cb024d
--- /dev/null
+++ b/stats/data/smtp-history.20040512
@@ -0,0 +1,288 @@
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
diff --git a/stats/data/smtp-history.20040513 b/stats/data/smtp-history.20040513
new file mode 100644
index 0000000..0cb024d
--- /dev/null
+++ b/stats/data/smtp-history.20040513
@@ -0,0 +1,288 @@
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
diff --git a/stats/data/smtp-history.20040514 b/stats/data/smtp-history.20040514
new file mode 100644
index 0000000..0cb024d
--- /dev/null
+++ b/stats/data/smtp-history.20040514
@@ -0,0 +1,288 @@
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
diff --git a/stats/data/smtp-history.20040515 b/stats/data/smtp-history.20040515
new file mode 100644
index 0000000..0cb024d
--- /dev/null
+++ b/stats/data/smtp-history.20040515
@@ -0,0 +1,288 @@
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
diff --git a/stats/data/smtp-history.20040516 b/stats/data/smtp-history.20040516
new file mode 100644
index 0000000..0cb024d
--- /dev/null
+++ b/stats/data/smtp-history.20040516
@@ -0,0 +1,288 @@
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
diff --git a/stats/data/smtp-history.20040517 b/stats/data/smtp-history.20040517
new file mode 100644
index 0000000..0cb024d
--- /dev/null
+++ b/stats/data/smtp-history.20040517
@@ -0,0 +1,288 @@
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
diff --git a/stats/data/smtp-history.20040518 b/stats/data/smtp-history.20040518
new file mode 100644
index 0000000..0cb024d
--- /dev/null
+++ b/stats/data/smtp-history.20040518
@@ -0,0 +1,288 @@
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
diff --git a/stats/data/smtp-history.20040519 b/stats/data/smtp-history.20040519
new file mode 100644
index 0000000..0cb024d
--- /dev/null
+++ b/stats/data/smtp-history.20040519
@@ -0,0 +1,288 @@
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
diff --git a/stats/data/smtp-history.20040520 b/stats/data/smtp-history.20040520
new file mode 100644
index 0000000..0cb024d
--- /dev/null
+++ b/stats/data/smtp-history.20040520
@@ -0,0 +1,288 @@
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
diff --git a/stats/data/smtp-history.20040521 b/stats/data/smtp-history.20040521
new file mode 100644
index 0000000..0cb024d
--- /dev/null
+++ b/stats/data/smtp-history.20040521
@@ -0,0 +1,288 @@
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
diff --git a/stats/data/smtp-history.20040522 b/stats/data/smtp-history.20040522
new file mode 100644
index 0000000..0cb024d
--- /dev/null
+++ b/stats/data/smtp-history.20040522
@@ -0,0 +1,288 @@
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
diff --git a/stats/data/smtp-history.20040523 b/stats/data/smtp-history.20040523
new file mode 100644
index 0000000..0cb024d
--- /dev/null
+++ b/stats/data/smtp-history.20040523
@@ -0,0 +1,288 @@
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
diff --git a/stats/data/smtp-history.20040524 b/stats/data/smtp-history.20040524
new file mode 100644
index 0000000..0cb024d
--- /dev/null
+++ b/stats/data/smtp-history.20040524
@@ -0,0 +1,288 @@
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
diff --git a/stats/data/smtp-history.20040525 b/stats/data/smtp-history.20040525
new file mode 100644
index 0000000..0cb024d
--- /dev/null
+++ b/stats/data/smtp-history.20040525
@@ -0,0 +1,288 @@
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
diff --git a/stats/data/smtp-history.20040526 b/stats/data/smtp-history.20040526
new file mode 100644
index 0000000..0cb024d
--- /dev/null
+++ b/stats/data/smtp-history.20040526
@@ -0,0 +1,288 @@
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
diff --git a/stats/data/smtp-history.20040527 b/stats/data/smtp-history.20040527
new file mode 100644
index 0000000..0cb024d
--- /dev/null
+++ b/stats/data/smtp-history.20040527
@@ -0,0 +1,288 @@
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
diff --git a/stats/data/smtp-history.20040528 b/stats/data/smtp-history.20040528
new file mode 100644
index 0000000..0cb024d
--- /dev/null
+++ b/stats/data/smtp-history.20040528
@@ -0,0 +1,288 @@
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
diff --git a/stats/data/smtp-history.20040529 b/stats/data/smtp-history.20040529
new file mode 100644
index 0000000..0cb024d
--- /dev/null
+++ b/stats/data/smtp-history.20040529
@@ -0,0 +1,288 @@
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
diff --git a/stats/data/smtp-history.20040530 b/stats/data/smtp-history.20040530
new file mode 100644
index 0000000..0cb024d
--- /dev/null
+++ b/stats/data/smtp-history.20040530
@@ -0,0 +1,288 @@
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
diff --git a/stats/data/smtp-history.20040531 b/stats/data/smtp-history.20040531
new file mode 100644
index 0000000..0cb024d
--- /dev/null
+++ b/stats/data/smtp-history.20040531
@@ -0,0 +1,288 @@
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
diff --git a/stats/data/smtp-history.20040601 b/stats/data/smtp-history.20040601
new file mode 100644
index 0000000..0cb024d
--- /dev/null
+++ b/stats/data/smtp-history.20040601
@@ -0,0 +1,288 @@
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
diff --git a/stats/data/smtp-history.20040602 b/stats/data/smtp-history.20040602
new file mode 100644
index 0000000..0cb024d
--- /dev/null
+++ b/stats/data/smtp-history.20040602
@@ -0,0 +1,288 @@
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
diff --git a/stats/data/smtp-history.20040603 b/stats/data/smtp-history.20040603
new file mode 100644
index 0000000..0cb024d
--- /dev/null
+++ b/stats/data/smtp-history.20040603
@@ -0,0 +1,288 @@
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
diff --git a/stats/data/smtp-history.20040604 b/stats/data/smtp-history.20040604
new file mode 100644
index 0000000..0cb024d
--- /dev/null
+++ b/stats/data/smtp-history.20040604
@@ -0,0 +1,288 @@
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
diff --git a/stats/data/smtp-history.20040605 b/stats/data/smtp-history.20040605
new file mode 100644
index 0000000..0cb024d
--- /dev/null
+++ b/stats/data/smtp-history.20040605
@@ -0,0 +1,288 @@
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
diff --git a/stats/data/smtp-history.20040606 b/stats/data/smtp-history.20040606
new file mode 100644
index 0000000..0cb024d
--- /dev/null
+++ b/stats/data/smtp-history.20040606
@@ -0,0 +1,288 @@
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
diff --git a/stats/data/smtp-history.20040607 b/stats/data/smtp-history.20040607
new file mode 100644
index 0000000..0cb024d
--- /dev/null
+++ b/stats/data/smtp-history.20040607
@@ -0,0 +1,288 @@
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
diff --git a/stats/data/smtp-history.20040608 b/stats/data/smtp-history.20040608
new file mode 100644
index 0000000..0cb024d
--- /dev/null
+++ b/stats/data/smtp-history.20040608
@@ -0,0 +1,288 @@
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
diff --git a/stats/data/smtp-history.20040609 b/stats/data/smtp-history.20040609
new file mode 100644
index 0000000..0cb024d
--- /dev/null
+++ b/stats/data/smtp-history.20040609
@@ -0,0 +1,288 @@
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
diff --git a/stats/data/smtp-history.20040610 b/stats/data/smtp-history.20040610
new file mode 100644
index 0000000..0cb024d
--- /dev/null
+++ b/stats/data/smtp-history.20040610
@@ -0,0 +1,288 @@
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
diff --git a/stats/data/smtp-history.20040611 b/stats/data/smtp-history.20040611
new file mode 100644
index 0000000..0cb024d
--- /dev/null
+++ b/stats/data/smtp-history.20040611
@@ -0,0 +1,288 @@
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
diff --git a/stats/data/smtp-history.20040612 b/stats/data/smtp-history.20040612
new file mode 100644
index 0000000..0cb024d
--- /dev/null
+++ b/stats/data/smtp-history.20040612
@@ -0,0 +1,288 @@
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
diff --git a/stats/data/smtp-history.20040613 b/stats/data/smtp-history.20040613
new file mode 100644
index 0000000..0cb024d
--- /dev/null
+++ b/stats/data/smtp-history.20040613
@@ -0,0 +1,288 @@
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
diff --git a/stats/data/smtp-history.20040614 b/stats/data/smtp-history.20040614
new file mode 100644
index 0000000..0cb024d
--- /dev/null
+++ b/stats/data/smtp-history.20040614
@@ -0,0 +1,288 @@
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
diff --git a/stats/data/smtp-history.20040615 b/stats/data/smtp-history.20040615
new file mode 100644
index 0000000..0cb024d
--- /dev/null
+++ b/stats/data/smtp-history.20040615
@@ -0,0 +1,288 @@
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
diff --git a/stats/data/smtp-history.20040616 b/stats/data/smtp-history.20040616
new file mode 100644
index 0000000..0cb024d
--- /dev/null
+++ b/stats/data/smtp-history.20040616
@@ -0,0 +1,288 @@
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
diff --git a/stats/data/smtp-history.20040617 b/stats/data/smtp-history.20040617
new file mode 100644
index 0000000..8c21929
--- /dev/null
+++ b/stats/data/smtp-history.20040617
@@ -0,0 +1,180 @@
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
+5481
diff --git a/stats/iptraf.log b/stats/iptraf.log
new file mode 100644
index 0000000..03d5cdb
--- /dev/null
+++ b/stats/iptraf.log
@@ -0,0 +1,40 @@
+Fri Jan 16 09:56:42 2004; ******** TCP/UDP service monitor started ********
+
+*** TCP/UDP traffic log, generated Fri Jan 16 09:58:42 2004
+
+TCP/22: 951 packets, 105308 bytes total, 7.02 kbits/s; 561 packets, 44436 bytes incoming, 2.96 kbits/s; 390 packets, 60872 bytes outgoing, 4.05 kbits/s
+
+UDP/53: 2 packets, 296 bytes total, 0.04 kbits/s; 1 packets, 64 bytes incoming, 0.00 kbits/s; 1 packets, 232 bytes outgoing, 0.02 kbits/s
+
+TCP/135: 1 packets, 48 bytes total, 0.00 kbits/s; 1 packets, 48 bytes incoming, 0.00 kbits/s; 0 packets, 0 bytes outgoing, 0.00 kbits/s
+
+
+Running time: 120 seconds
+Fri Jan 16 09:58:42 2004; ******** TCP/UDP service monitor stopped ********
+Fri Jan 16 10:10:39 2004; ******** TCP/UDP service monitor started ********
+
+*** TCP/UDP traffic log, generated Fri Jan 16 10:15:39 2004
+
+TCP/22: 1872 packets, 211740 bytes total, 5.64 kbits/s; 1108 packets, 90688 bytes incoming, 2.42 kbits/s; 764 packets, 121052 bytes outgoing, 3.23 kbits/s
+
+TCP/901: 1 packets, 48 bytes total, 0.00 kbits/s; 1 packets, 48 bytes incoming, 0.00 kbits/s; 0 packets, 0 bytes outgoing, 0.00 kbits/s
+
+TCP/80: 720 packets, 643832 bytes total, 18.01 kbits/s; 262 packets, 17607 bytes incoming, 0.49 kbits/s; 458 packets, 626225 bytes outgoing, 17.51 kbits/s
+
+UDP/53: 78 packets, 8877 bytes total, 0.26 kbits/s; 39 packets, 3088 bytes incoming, 0.09 kbits/s; 39 packets, 5789 bytes outgoing, 0.17 kbits/s
+
+TCP/110: 38 packets, 2158 bytes total, 0.07 kbits/s; 20 packets, 890 bytes incoming, 0.03 kbits/s; 18 packets, 1268 bytes outgoing, 0.04 kbits/s
+
+TCP/113: 17 packets, 937 bytes total, 0.03 kbits/s; 9 packets, 512 bytes incoming, 0.02 kbits/s; 8 packets, 425 bytes outgoing, 0.01 kbits/s
+
+TCP/21: 149 packets, 8895 bytes total, 0.31 kbits/s; 73 packets, 3669 bytes incoming, 0.13 kbits/s; 76 packets, 5226 bytes outgoing, 0.18 kbits/s
+
+TCP/20: 57 packets, 8384 bytes total, 0.32 kbits/s; 22 packets, 1216 bytes incoming, 0.04 kbits/s; 35 packets, 7168 bytes outgoing, 0.27 kbits/s
+
+TCP/25: 45 packets, 5481 bytes total, 0.32 kbits/s; 22 packets, 4063 bytes incoming, 0.24 kbits/s; 23 packets, 1418 bytes outgoing, 0.08 kbits/s
+
+TCP/135: 3 packets, 144 bytes total, 0.02 kbits/s; 3 packets, 144 bytes incoming, 0.02 kbits/s; 0 packets, 0 bytes outgoing, 0.00 kbits/s
+
+
+Running time: 300 seconds
+Fri Jan 16 10:15:39 2004; ******** TCP/UDP service monitor stopped ********
diff --git a/stats/plot_all.sh b/stats/plot_all.sh
new file mode 100755
index 0000000..9402160
--- /dev/null
+++ b/stats/plot_all.sh
@@ -0,0 +1,53 @@
+#! /bin/bash
+
+sleep 5 #give iptraf time to write its data into the log file
+
+WWWDIR=/home/server/www/nico/org/schottelius/tech/stats
+TRAFLOG=/root/bin/stats/iptraf.log
+WDIR=/root/bin/stats
+TODAY=$(/bin/date +%s)
+UDATE=$(/bin/date +%Y%m%d)
+NAME=all.gif
+
+SMTP=$(grep "TCP/25" $TRAFLOG|tail -n1|cut -f2 -d","|cut -f2 -d" ")
+POP=$(grep "TCP/110" $TRAFLOG|tail -n1|cut -f2 -d","|cut -f2 -d" ")
+NAMED=$(grep "UDP/53" $TRAFLOG|tail -n1|cut -f2 -d","|cut -f2 -d" ")
+
+echo "smtp: $SMTP"
+echo "pop3: $POP"
+echo "named: $NAMED"
+
+if [ -z $NAMED ]; then
+ NAMED="0";
+fi
+
+if [ -z $SMTP ]; then
+ SMTP="0";
+fi
+
+if [ -z $POP ]; then
+ POP="0";
+fi
+
+# archive results
+
+echo $SMTP >> $WDIR/data/smtp-history.$UDATE
+echo $POP >> $WDIR/data/pop-history.$UDATE
+echo $NAMED >> $WDIR/data/named-history.$UDATE
+
+rrdtool update $WDIR/rrdtool/all.rrd $TODAY:$SMTP:$POP3:$NAMED
+
+
+#draw the graph
+
+
+rrdtool graph $WWWDIR/$NAME \
+--start -86400 \
+--vertical-label "bytes per second" \
+-w 600 -h 200 \
+DEF:smtp=$WDIR/rrdtool/all.rrd:smtp:AVERAGE \
+DEF:pop3=$WDIR/rrdtool/all.rrd:pop3:AVERAGE \
+DEF:named=$WDIR/rrdtool/all.rrd:named:AVERAGE \
+AREA:smtp#00ff00:"SMTP" \
+LINE1:pop3#0000ff:"POP3" \
+LINE2:named#ff0000:"DNS"
diff --git a/stats/plot_mailserver.sh b/stats/plot_mailserver.sh
new file mode 100755
index 0000000..c7ba3d4
--- /dev/null
+++ b/stats/plot_mailserver.sh
@@ -0,0 +1,43 @@
+#! /bin/bash
+
+sleep 5 #give iptraf time to write its data into the log file
+
+WWWDIR=/home/server/www/nico/org/schottelius/tech/stats
+TRAFLOG=/root/bin/stats/iptraf.log
+WDIR=/root/bin/stats
+TODAY=$(/bin/date +%s)
+UDATE=$(/bin/date +%Y%m%d)
+
+SMTP=$(grep "TCP/25" $TRAFLOG|tail -n1|cut -f2 -d","|cut -f2 -d" ")
+POP=$(grep "TCP/110" $TRAFLOG|tail -n1|cut -f2 -d","|cut -f2 -d" ")
+
+echo "smtp: $SMTP"
+echo "pop3: $POP"
+
+if [ -z $SMTP ]; then
+ SMTP="0";
+fi
+
+if [ -z $POP ]; then
+ POP="0";
+fi
+
+# archive results
+
+echo $SMTP >> $WDIR/data/smtp-history.$UDATE
+echo $POP >> $WDIR/data/pop-history.$UDATE
+
+rrdtool update $WDIR/rrdtool/mailserver.rrd $TODAY:$SMTP:$POP3
+
+
+#draw the graph
+
+
+rrdtool graph $WWWDIR/mailserver.gif \
+--start -86400 \
+--vertical-label "bytes per second" \
+-w 600 -h 200 \
+DEF:smtp=$WDIR/rrdtool/mailserver.rrd:smtp:AVERAGE \
+DEF:pop3=$WDIR/rrdtool/mailserver.rrd:pop3:AVERAGE \
+AREA:smtp#00ff00:"SMTP traffic" \
+LINE1:pop3#0000ff:"POP3 traffic"
diff --git a/stats/plot_memory.sh b/stats/plot_memory.sh
new file mode 100755
index 0000000..8e3218e
--- /dev/null
+++ b/stats/plot_memory.sh
@@ -0,0 +1,28 @@
+#! /bin/bash
+
+WDIR=/root/bin/stats
+TODAY=$(/bin/date +%s)
+WWWDIR=/home/server/www/nico/org/schottelius/tech/stats
+
+## extract mem values from /proc/meminfo
+
+RAM=`grep MemFree /proc/meminfo|tr -s [:blank:]|cut -f2 -d" "`
+SWAP=`grep SwapFree /proc/meminfo|tr -s [:blank:]|cut -f2 -d" "`
+#SWAP=`grep /proc/meminfo|tr -s [:blank:]|cut -f2 -d" "`
+
+#echo $SWAP
+
+## write data into the RRD
+
+rrdtool update $WDIR/rrdtool/memory.rrd $TODAY:$RAM:$SWAP
+
+## draw the graph
+
+rrdtool graph $WWWDIR/memory.gif \
+--start -86400 \
+--vertical-label "kBytes free" \
+-w 600 -h 200 \
+DEF:ram=$WDIR/rrdtool/memory.rrd:ram:AVERAGE \
+DEF:swap=$WDIR/rrdtool/memory.rrd:swap:AVERAGE \
+AREA:ram#00ff00:"RAM" \
+LINE1:swap#0000ff:"Swap"
diff --git a/stats/rrdtool-create b/stats/rrdtool-create
new file mode 100644
index 0000000..ad91c9d
--- /dev/null
+++ b/stats/rrdtool-create
@@ -0,0 +1 @@
+rrdtool create rrdtool/all.rrd DS:smtp:ABSOLUTE:600:U:U DS:pop3:ABSOLUTE:600:U:U DS:named:ABSOLUTE:600:U:U RRA:AVERAGE:0.5:1:600 RRA:AVERAGE:0.5:6:700 RRA:AVERAGE:0.5:24:775 RRA:AVERAGE:0.5:288:797 RRA:MAX:0.5:1:600 RRA:MAX:0.5:6:700 RRA:MAX:0.5:24:775 RRA:MAX:0.5:288:797
diff --git a/stats/rrdtool/all.rrd b/stats/rrdtool/all.rrd
new file mode 100644
index 0000000..527b60e
Binary files /dev/null and b/stats/rrdtool/all.rrd differ
diff --git a/stats/rrdtool/mailserver.rrd b/stats/rrdtool/mailserver.rrd
new file mode 100644
index 0000000..6a02163
Binary files /dev/null and b/stats/rrdtool/mailserver.rrd differ
diff --git a/stats/rrdtool/memory.rrd b/stats/rrdtool/memory.rrd
new file mode 100644
index 0000000..8a0195e
Binary files /dev/null and b/stats/rrdtool/memory.rrd differ
diff --git a/synaptics-tuning b/synaptics-tuning
new file mode 100755
index 0000000..0b540f4
--- /dev/null
+++ b/synaptics-tuning
@@ -0,0 +1,7 @@
+#!/bin/sh
+
+synclient HorizTwoFingerScroll=1
+synclient HorizHysteresis=50
+synclient VertHysteresis=50
+synclient VertScrollDelta=-111
+synclient HorizScrollDelta=-111
diff --git a/sys/README b/sys/README
new file mode 100644
index 0000000..6e698e8
--- /dev/null
+++ b/sys/README
@@ -0,0 +1 @@
+Scripts used for system tuning/configuration/administration.
diff --git a/tag-mails b/tag-mails
new file mode 100755
index 0000000..5e3402a
--- /dev/null
+++ b/tag-mails
@@ -0,0 +1,216 @@
+#!/bin/sh
+
+notmuch tag +ungleich +ticket from:redmine@ungleich.ch
+
+notmuch tag +ungleich from:@ungleich.ch or to:@ungleich.ch
+notmuch tag +mitarbeiter from:tobias.kiefer@ungleich.ch or from:david.huerlimann@ungleich.ch or from:fiala@mfiala.net
+notmuch tag +ungleich +monitoring from:monitor@ungleich.ch
+
+notmuch tag +p.c.systems from:@pcsystems.de or to:@pcsystems.de
+
+notmuch tag +magrathea from:@magrathea.eu or to:@magrathea.eu
+notmuch tag +magrathea from:@magrathea.de or to:@magrathea.de
+notmuch tag +kunde tag:magrathea
+
+notmuch tag +local.ch from:@local.ch or from:"Philipp Keller"
+
+notmuch tag +ethz from:@inf.ethz.ch or to:@inf.ethz.ch
+notmuch tag +ethz from:@ethz.ch or to:@ethz.ch
+
+notmuch tag +hsz-t from:nico-hsz-t@schottelius.org or to:nico-hsz-t@schottelius.org
+
+notmuch tag +agilentia from:@agilentia.ch or to:@agilentia.ch
+notmuch tag +kunde tag:agilentia
+
+
+notmuch tag +panter +system -inbox to:system@panter.ch
+notmuch tag +panter +system -inbox to:system@panter.ch
+notmuch tag +panter +system -inbox to:sumasy@panter.ch
+notmuch tag +panter +system -inbox to:root@chatbyphonak.com
+notmuch tag +panter +system -inbox from:root@zahnfee.denteo.ch
+notmuch tag +panter +referenceimiage from:@referenceimage.com or to:@referenceimage.com or from:monit@ri-staging
+notmuch tag +kunde +referenceimage -inbox from:rails@panter.ch to:referenceimage@ungleich.ch
+notmuch tag +panter +monit -inbox from:monit@hev-forms-production or from:monit@hev-forms-staging or from:monit@recomy-staging
+notmuch tag +panter +srg from:@srgssr.ch or to:@srgssr.ch
+notmuch tag +panter +cron -inbox from:root@*.panter.ch or from:root@*.panter.biz or from:root@*.referenceimage.com
+notmuch tag +panter +cron +recomy -inbox from:monit@recomy-production
+notmuch tag +panter -inbox to:technik+jenkins@panter.ch
+notmuch tag +panter +newrelic -inbox from:productupdate@newrelic.com to:nico@panter.ch
+notmuch tag +panter from:@panter.ch or to:@panter.ch
+notmuch tag +kunde tag:panter
+
+notmuch tag +kunde from:krishna@mailbox.org or to:krishna@mailbox.org
+
+notmuch tag +cron to:root@localhost
+
+notmuch tag +straumann from:@straumann.com
+
+notmuch tag +sts +kunde from:@stssensors.com or to:@stssensors.com
+notmuch tag +petspremium +initos +kunde from:@petspremium.de or to:@petspremium.de
+notmuch tag +petspremium +initos +kunde from:@initos.com or to:@initos.com
+
+notmuch tag +entwine +jira subject:Entwine-Jira
+notmuch tag +entwine +jira +ticket +support -inbox from:servers@entwinemedia.com subject:SUPPORT-
+notmuch tag +entwine +maintenance subject:"Uninett Weekly maintenance"
+notmuch tag +entwine from:redmine@ungleich.ch subject:"entwine"
+notmuch tag +entwine from:@entwinemedia.com or to:@entwinemedia.com
+notmuch tag +entwine +backup -inbox from:root@backup.entwinemedia.com
+notmuch tag +entwine +newrelic -inbox from:productupdate@newrelic.com to:nico@entwinemedia.com
+notmuch tag +entwine +serverdensity -inbox from:@serverdensity.com or to:@serverdensity.com
+notmuch tag +entwine +serverdensity -inbox from:"Server Density" and to:nico@entwinemedia.com
+notmuch tag +entwine +newrelic -inbox from:noreply@newrelic.com and to:nico@entwinemedia.com
+notmuch tag +entwine +basecamp from:notifications@basecamp.com and to:nico@entwinemedia.com
+notmuch tag +entwine +basecamp from:notifications@entwine.basecamphq.com and to:nico@entwinemedia.com
+notmuch tag +entwine +newrelic -inbox from:noreply@newrelic.com and to:operations@entwinemedia.com
+notmuch tag +kunde tag:entwine
+
+notmuch tag +teralytics from:@teralytics.ch or to:@teralytics.ch
+notmuch tag +teralytics from:@teralytics.net or to:@teralytics.net
+notmuch tag +teralytics +jira +ticket from:jira@teralyticsag.atlassian.net
+notmuch tag +teralytics from:redmine@ungleich.ch subject:"teralytics"
+notmuch tag +teralytics +cron -inbox from:internal@teralytics.ch
+notmuch tag +teralytics -inbox to:infrastructure@teralytics.ch from:nagios@
+notmuch tag +kunde tag:teralytics
+
+notmuch tag +voicerepublic from:@voicerepublic.com or to:@voicerepublic.com
+notmuch tag +voicerepublic +system -inbox to:root@kluuu.com
+notmuch tag +kunde tag:voicerepublic
+
+notmuch tag +vendor +esag +lenovo from:@esag-shop.ch
+notmuch tag +vendor +post from:@post.ch
+notmuch tag +vendor +sbb +verkehr to:nico-sbb.ch@schottelius.org
+notmuch tag +vendor +postfinance +finanzen from:@postfinance.ch
+notmuch tag +finanzen +steuer +zuerich from:nico-steuer-zh@schottelius.org or to:nico-steuer-zh@schottelius.org
+
+notmuch tag +vendor +telephoenix +voip +telefon from:telephoenix.ch
+notmuch tag +vendor +axa-winterthur +versicherung +ungleich from:nicola.meier@axa-winterthur.ch or from:alexander.waesch@axa-winterthur.ch
+notmuch tag +vendor +post +postbox to:nico-swisspostbox@schottelius.org
+notmuch tag +vendor +ch-open from:@ch-open.ch
+notmuch tag +vendor +dell from:@dell.com or to:@dell.com
+notmuch tag +vendor +dalco from:@dalco.ch or to:@dalco.ch
+notmuch tag +vendor +nexellent +rechenzentrum from:@nexellent.ch or to:@nexellent.ch or from:@rt-1.dmz.ch.nexellent.com
+notmuch tag +vendor +init7 from:@init7.net or to:@init7.net
+notmuch tag +vendor +acceleris from:@acceleris.ch
+notmuch tag +vendor +partner +stepping-stone from:@stepping-stone.ch or to:@stepping-stone.ch
+notmuch tag +vendor +buchhaltung +runmyaccounts from:@runmyaccounts.com or to:@runmyaccounts.com
+notmuch tag +vendor +hardware +microspot from:@microspot.ch to:@microspot.ch
+notmuch tag +vendor +dns +inwx from:@inwx.de or to:nico-inwxo@schotteli.us
+notmuch tag +vendor +sumiswalder +versicherung from:@sumiswalder.ch
+notmuch tag +vendor +digitec from:@digitec.ch
+notmuch tag +vendor +fairphone to:nico-fairphone.com@schottelius.org
+notmuch tag +partner +openclouddays from:matthias.guenter@mentor.ch
+notmuch tag +vendor +bhphotovideo nico-bhphotovideo@schottelius.org
+notmuch tag +vendor +ebookers to:nico-ebookers.ch@schottelius.org
+notmuch tag +vendor +tbgs from:@tbgs.ch
+notmuch tag +vendor +misco from:@misco.de
+notmuch tag +vendor +hetzner from:@hetzner.de
+notmuch tag +vendor +asus from:@asus.com or to:nico-asus@schottelius.org
+notmuch tag +vendor +freecall24 to:freecall24.ch@ungleich.ch
+notmuch tag +vendor +kuehlschrank from:@venova.ch
+
+notmuch tag +vendor +ungleich +odesk from:@odesk.com or to:nico-odesk.com@schottelius.org
+
+notmuch tag +vendor +auktion from:@ricardo.ch
+
+
+notmuch tag +cron from:"Cron Daemon"
+
+notmuch tag +ccollect subject:"ccollect"
+notmuch tag +cdi.st subject:cdi.st
+
+notmuch tag +ccc +schweiz +chaostreff -inbox to:chaostreffs@lists.ccc.de
+notmuch tag +ccc +schweiz -inbox to:chaosliste@chaostreff.ch
+notmuch tag +ccc +dresden +c3d2 -inbox to:c3d2@lists.c3d2.de
+notmuch tag +ccc +schweiz +zuerich -inbox to:zuerich@chaostreff.ch or to:zuerich-announce@chaostreff.ch
+notmuch tag +ccc from:telmich@schottelius.org or to:telmich@schottelius.org
+notmuch tag +ccc +intern -inbox to:intern@lists.ccc.de or to:intern@ccc.de
+notmuch tag +ccc +hannover +leitstelle511 -inbox to:511@hannover.ccc.de
+notmuch tag +c3d2 +ccc +dresden -inbox to:nico-ccc-c3d2@schottelius.org
+
+notmuch tag +google to:nico-google.com@schottelius.org
+notmuch tag +google to:terzoidterzoid@gmail.com
+notmuch tag +google to:nico.schottelius@gmail.com
+notmuch tag +twitter from:@twitter.com
+
+notmuch tag +foss +gallery +llgal -inbox to:llgal-users@gna.org
+notmuch tag +foss +glusterfs -inbox to:gluster-users@gluster.org
+notmuch tag +foss +fosdem +conference from:@fosdem.org or from:Kris.Buytaert@inuits.eu
+notmuch tag +foss +archlinux +linux +pacman -inbox to:pacman-dev@archlinux.org
+notmuch tag +foss +archlinux +linux +ticket from:bugs@archlinux.org
+notmuch tag +foss +lugs +linux -inbox from:reminder@lugs.ch or to:linux@lugs.ch or to:lugs@lugs.ch
+notmuch tag +foss +debian +linux -inbox to:community@lists.debian.ch
+notmuch tag +foss +coda +filesystem +linux to:codalist@coda.cs.cmu.edu
+notmuch tag +foss +puppet +configuration-management -inbox to:puppet-users@googlegroups.com
+notmuch tag +foss +ssh -inbox to:openssh-unix-dev@mindrot.org
+notmuch tag +foss +cdist to:cdist-owner@l.schottelius.org or to:cdist@l.schottelius.org or to:cdist@noreply.github.com
+notmuch tag +foss +cdist +sourceforge -inbox from:noreply@code.cdist.p.re.sf.net
+notmuch tag +foss +linux +kernel to:stable@vger.kernel.org or to:stable-commits@vger.kernel.org
+notmuch tag +foss +linux +dash +shell -inbox to:dash@vger.kernel.org
+notmuch tag +foss +filesystem +kernel -inbox to:codalist@coda.cs.cmu.edu
+notmuch tag +foss +security +kernel -inbox to:owl-users@lists.openwall.com or owl-dev@lists.openwall.com or to:owl-council@lists.openwall.com
+notmuch tag +foss +security -inbox to:password-store@lists.zx2c4.com
+notmuch tag +foss +sourceforge -inbox to:users@lists.repoforge.org
+notmuch tag +foss +github +vcs from:@github.com
+notmuch tag +foss +python +gpg -inbox to:python-gnupg@googlegroups.com
+notmuch tag +foss +nico -inbox to:commits@l.schottelius.org
+notmuch tag +foss +llgal +gallery to:llgal-users@gna.org
+notmuch tag +foss +hostap +linux +wireless -inbox to:hostap@lists.shmoo.com
+notmuch tag +foss +monitoring -inbox to:assimilation@lists.community.tummy.com or to:assim-devel@lists.community.tummy.com
+
+notmuch tag +posix -inbox to:austin-group-l@opengroup.org
+notmuch tag +net +swinog to:swinog@swinog.ch or to:swinog@lists.swinog.ch
+notmuch tag +net +meetup to:nico-meetup.com@schottelius.org
+notmuch tag +net +usenix to:nico-usenix.org@schottelius.org or from:@usenix.org
+notmuch tag +net +kakoa from:@kakao.com
+notmuch tag +net +idee.ch from:@idee.ch
+
+
+notmuch tag +familie from:thilo@schottelius.net or from:thilo.schottelius@gmail.com
+notmuch tag +sanghee from:verysanghee@gmail.com or to:nico-sanghee@schottelius.org or to:verysanghee@gmail.com
+notmuch tag +sanghee from:Sarah.Baebler@gl.ch
+notmuch tag +freunde +andrea.stenzel to:nico-fr-andrea@schottelius.org
+notmuch tag +freunde +dani from:ammanda1@students.zhaw.ch or to:ammanda1@students.zhaw.ch
+notmuch tag +freunde +simone to:simone@glinz.li or from:simone@glinz.li
+notmuch tag +freunde +tomas.pospisek from:tpo@sourcepole.ch
+notmuch tag +freunde +andi from:@v-net.ch or to:@v-net.ch
+notmuch tag +freunde +jihye to:nico-jihye@schottelius.org or from:monpoussin89@hotmail.com
+notmuch tag +freunde +steven from:aerueegg@bluewin.ch or from:steven-nico@armstrong.cc or from:steven.armstrong@inf.ethz.ch or to:nico-steven@schottelius.org or from:steven.armstrong@ungleich.ch
+notmuch tag +freunde +simone.glinz from:simone@glinz.li
+notmuch tag +freunde +ying from:yoongying_loop@hotmail.com
+notmuch tag +freunde +alain from:munen@shogen-dojo.org or from:munen@voicerepublic.com or from:alain.lafon@dispatched.ch or from:munen@dispatched.ch
+notmuch tag +freunde +tonnerre from:tonnerre@ngas.ch
+notmuch tag +freunde +linda from:hartmannlinda@hotmail.com
+notmuch tag +freunde +denis from:d.tehlar@gmx.net or to:d.tehlar@gmx.net
+notmuch tag +freunde +xia from:xiaoxia.li@gmx.net or to:xiaoxia.li@gmx.net
+notmuch tag +su from:subisous@gmail.com or from:s-joho@swissonline.ch or from:susan.joho@juliusbaer.com
+
+
+notmuch tag +bildung +teaching +zhaw from:@zhaw.ch or to:@zhaw.ch
+
+notmuch tag +consul +foss -inbox to:consul-tool@googlegroups.com
+
+notmuch tag +jiu-jitsu to:nico-jcu@schottelius.org or to:nico-jiu@schottelius.org
+notmuch tag +jiu-jitsu +rheinfelden from:"Oliver Gugel" or to:nico-jiu-rhf@schottelius.org
+notmuch tag +jiu-jitsu to:nico-pjjcz@schottelius.org or from:Kfl@kapo.zh.ch or from:andy-san@bluewin.ch
+notmuch tag +jiu-jitsu +bern from:alfredo.rauber@bluewin.ch
+notmuch tag +jiu-jitsu +denisguelat from:clan.guelat@wanadoo.fr
+
+notmuch tag +sprache +korea to:nico-koreanclass101.com@schottelius.org
+
+notmuch tag +sport +hobby tag:jiu-jitsu
+
+notmuch tag +luchsingen from:huerzele@active.ch
+
+notmuch tag -inbox folder:postponed/
+notmuch tag +outgoing -inbox folder:outgoing/
+notmuch tag +outgoing -inbox folder:sent/
+notmuch tag +outgoing folder:firmen/ungleich/outgoing/
+notmuch tag +outgoing folder:firmen/local.ch/outgoing/
+notmuch tag +outgoing folder:firmen/ethz/outgoing/
+
+# notmuch dump > ~/Maildir/notmuch-dump
+
+# Have alot and mutt-kz see the same messages in the inbox
+#notmuch tag +killed tag:archive
+#notmuch tag +archive tag:killed
+# reconfigured alot to use archive, too
diff --git a/tcpdump-command b/tcpdump-command
new file mode 100644
index 0000000..21692f8
--- /dev/null
+++ b/tcpdump-command
@@ -0,0 +1,2 @@
+tcpdump -q -x port ftp or ftp-data | sed 's/..:..:..\..*//'
+
diff --git a/testenv b/testenv
new file mode 100755
index 0000000..a173bc4
--- /dev/null
+++ b/testenv
@@ -0,0 +1,833 @@
+#!/usr/bin/perl -w
+#
+# TWiki Collaboration Platform, http://TWiki.org/
+#
+# Copyright (C) 2000-2003 Peter Thoeny, peter@thoeny.com
+#
+# For licensing info read license.txt file in the TWiki root.
+# This program is free software; you can redistribute it and/or
+# modify it under the terms of the GNU General Public License
+# as published by the Free Software Foundation; either version 2
+# of the License, or (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details, published at
+# http://www.gnu.org/copyleft/gpl.html
+#
+# DESCRIPTION: Test utility to see if CGI is running and enabled
+# for the bin directory, and check a variety of TWiki, Perl and RCS
+# setup.
+
+package TWiki;
+
+# Set library paths in @INC, at compile time
+BEGIN {
+ # Try to use setlib.cfg, use default path if missing
+ if ( -r './setlib.cfg' ) {
+ require './setlib.cfg';
+ } else {
+ unshift @INC, '../lib';
+ }
+}
+
+use vars qw( $useLocale );
+
+# ===========================
+# Read the configuration file at compile time in order to set locale
+BEGIN {
+ do "TWiki.cfg"; # Includes OS detection
+
+ # Do a dynamic 'use locale' for this script
+ if( $useLocale ) {
+ require locale;
+ import locale ();
+ }
+}
+
+
+# use strict; # Recommended for mod_perl, enable for Perl 5.6.1 only
+ # Doesn't work well here, due to 'do "TWiki.cfg"'
+# use diagnostics; # Debug only
+
+
+my $setlibAvail = -r './setlib.cfg';
+
+
+&main();
+
+
+sub checkBasicModules {
+ # Check whether basic CGI modules exist (some broken installations of
+ # Perl don't have this, even though they are standard modules), and warn user
+ my @basicMods = @_;
+
+ my $modMissing = 0;
+ my $mod;
+ foreach $mod (@basicMods) {
+ eval "use $mod";
+ if ($@) {
+ unless ($modMissing) {
+ print "Content-type: text/html\n\n";
+ print "Perl Module(s) missing\n";
+ print "\n";
+ print "Perl Module(s) missing\n";
+ }
+ $modMissing = 1;
+ print "Warning: ";
+ print "Essential module $mod not installed - please check your Perl\n";
+ print "installation, including the setting of \@INC, and re-install Perl if necessary. \n";
+ }
+ }
+ # If any critical modules missing, display @INC and give up
+ if ($modMissing) {
+ print "\@INC setting: ";
+ print join " \n", @INC;
+ print " \n";
+ print "\n\n";
+ exit;
+ }
+}
+
+
+sub main
+{
+
+my $perlverRequired = 5.00503; # Oldest supported version of Perl
+my $perlverRequiredString = '5.005_03';
+my $perlverRecommended = '5.6.1';
+my $ActivePerlRecommendedBuild = 631; # Fixes PERL5SHELL bugs
+
+my $rcsverRequired = 5.7;
+
+my @basicMods = qw( CGI CGI::Carp ); # Required for testenv to work
+
+my @requiredMods = ( # Required for TWiki
+ @basicMods,
+ 'File::Copy',
+ );
+
+# Required on non-Unix platforms (mainly Windows)
+my @requiredModsNonUnix = (
+ 'Digest::SHA1', # For register script
+ 'MIME::Base64', # For register script
+ 'Net::SMTP', # For registration emails and mailnotify
+ );
+
+# Optional modules on all platforms
+my @optionalMods = (
+ 'Algorithm::Diff', # For RcsLite
+ 'MIME::Base64', # For outbound HTTP Authentication to proxies
+ 'POSIX', # For internationalisation (core module)
+ );
+
+
+open(STDERR,'>&STDOUT'); # redirect errors to browser
+$| = 1; # no buffering - FIXME: mod_perl issue?
+
+
+# Check for modules required by this script
+&checkBasicModules( @basicMods );
+
+# Load CGI modules (run-time, after checking they are accessible)
+require CGI;
+require CGI::Carp;
+import CGI::Carp qw( fatalsToBrowser );
+
+my $query = new CGI;
+
+
+print "Content-type: text/html\n\n";
+print <
+Test TWiki environment
+
+Test the environment for TWiki
+Please read the TWikiInstallationNotes for more information on TWiki installation.
+Environment variables:
+
+EOM
+my $key;
+for $key ( sort keys %ENV ) {
+ print "$key | $ENV{$key} | \n";
+}
+print <
+CGI Setup:
+
+EOM
+
+
+
+# Make %ENV safer for CGI (should reflect TWiki.pm)
+my $originalPath = $ENV{'PATH'} || '';
+if( $safeEnvPath ) {
+ $ENV{'PATH'} = $safeEnvPath;
+}
+delete @ENV{ qw( IFS CDPATH ENV BASH_ENV ) };
+
+# Get Perl version - output looks neater with new variable
+my $perlvernum = $];
+my $perlver;
+if (defined $^V) {
+ $perlver = $^V; # New in Perl 5.6.1, one byte per part
+ $perlver = ord(substr($perlver,0)) . "." . ord(substr($perlver,1))
+ . "." . ord(substr($perlver,2));
+} else {
+ $perlver = $perlvernum
+}
+
+
+
+# Set $detailedOS if not using later versions of TWiki.cfg for BeijingRelease
+# - this code enables the latest testenv to be used with Dec 2001 and
+# earlier releases.
+if ( !defined $detailedOS ) {
+ require Config;
+ $detailedOS = $Config::Config{'osname'};
+ # print "$detailedOS ";
+}
+
+# Detect Perl flavour on Windows, and Cygwin Perl/RCS package versions
+my $perltype;
+my $cygwinRcsVerNum;
+if ($detailedOS eq 'cygwin') {
+ $perltype = 'Cygwin'; # Cygwin Perl only
+ my ($pkg, $pkgName);
+
+ # Get Cygwin perl's package version number
+ $pkgName = 'perl';
+ $pkg = `/bin/cygcheck -c $pkgName | /bin/grep $pkgName 2>/dev/null`;
+ if ($?) {
+ $pkg = " [Can't identify package - cygcheck or grep not installed]";
+ $perlver .= $pkg
+ } else {
+ $pkg = (split ' ', $pkg)[1]; # Package version
+ $perlver = $pkg;
+ }
+
+ # Get Cygwin RCS's package version number
+ $pkgName = 'rcs';
+ $pkg = `/bin/cygcheck -c $pkgName | /bin/grep $pkgName 2>/dev/null`;
+ if ($?) {
+ $pkg = " [Can't identify package - cygcheck or grep not installed]";
+ $perlver .= $pkg
+ } else {
+ $pkg = (split ' ', $pkg)[1]; # Package version
+ $cygwinRcsVerNum = $pkg;
+ }
+} elsif ($detailedOS =~ /win/i && $detailedOS !~ /darwin/i ) {
+ # Windows Perl - try ActivePerl-only function: returns number if
+ # successful, otherwise treated as a literal (bareword).
+ my $isActivePerl= eval 'Win32::BuildNumber !~ /Win32/';
+ if( $isActivePerl ) {
+ $perltype = 'ActiveState';
+ $perlver .= ", build " . Win32::BuildNumber();
+ } else {
+ # Could be SiePerl or some other Win32 port of Perl
+ $perltype = 'SiePerl/Other Win32 Perl';
+ }
+} else {
+ $perltype = 'generic';
+}
+
+# Detect executable name suffix, e.g. .exe on Windows or '' on Unix
+my $exeSuffix='';
+if ( $Config::Config{'_exe'}) {
+ $exeSuffix = $Config::Config{'_exe'};
+}
+
+
+my $thePathInfo = $query->path_info();
+# my $theRemoteUser = $query->remote_user();
+my $theTopic = $query->param( 'topic' );
+my $theUrl = $query->url;
+
+# Detect whether mod_perl was loaded into Apache
+my $LOAD_MOD_PERL = ( exists $ENV{'SERVER_SOFTWARE'} &&
+ ( $ENV{'SERVER_SOFTWARE'} =~ /mod_perl/ )) &&
+ "loaded" || "not loaded";
+
+# Detect whether we are actually running under mod_perl
+# - test for MOD_PERL alone, which is enough.
+my $USE_MOD_PERL = ( exists $ENV{'MOD_PERL'} ) && "Used" || "Not used";
+
+
+# OS
+print "Operating system: | " . ucfirst(lc($OS));
+print " ($detailedOS)" if ( $detailedOS ne '' );
+print " | \n";
+
+# Perl version and type
+print "Perl version: | $perlver";
+print " ($perltype)" if $perltype ne 'generic';
+print " | \n";
+if ( $perlvernum < $perlverRequired ) {
+ print " | Warning: ";
+ print "This version of Perl is too old for use with TWiki - upgrade to at least Perl $perlverRequiredString\n";
+ print "and preferably to Perl $perlverRecommended.\n";
+ print " | \n";
+}
+
+# Perl @INC (lib path)
+print "\@INC library path: | " .
+ ( join " \n", @INC ) .
+ " | \n";
+print " | Note:\n";
+print "This is the Perl library path, used to load TWiki modules, ";
+print "third-party modules used by some plugins, and Perl built-in modules.";
+print " | \n";
+
+# Add to list of required modules if non-Unix, or MacOS X (detected by
+# Perl as 'Darwin')
+if ( $detailedOS =~ /darwin/i or $OS ne 'UNIX' ) {
+ push @requiredMods, @requiredModsNonUnix;
+}
+
+
+# Turn off fatalsToBrowser while checking module loads, to avoid load errors in
+# browser in some environments.
+$CGI::Carp::WRAP = $CGI::Carp::WRAP = 0; # Avoid warnings...
+
+# Check that the TWiki.pm module can be found
+print "TWiki module in \@INC path: | ";
+$mod = 'TWiki';
+eval "use $mod";
+print " |
---|
| \n";
+my $twikiFound = 0;
+if ($@) {
+ print "Warning: ";
+ print "'$mod.pm' not found - check path to twiki/lib ";
+ print " and edit twiki/bin/setlib.cfg if necessary" if $setlibAvail;
+ print ".\n";
+ print " | \n";
+} else {
+ $twikiFound = 1;
+ my $mod_version = eval '$TWiki::wikiversion';
+ $mod_version ||= 'unknown';
+ print "OK, $mod.pm found (TWiki version: $mod_version)";
+ print "\n";
+}
+print "\n";
+
+# Do locale settings if TWiki.pm was found
+my $showLocales = 0;
+if ($twikiFound) {
+ TWiki::setupLocale();
+ $showLocales = 1;
+}
+
+
+# Check that each of the required Perl modules can be loaded, and
+# print its version number.
+print "Required Perl modules: | ";
+foreach $mod (@requiredMods) {
+ eval "use $mod";
+ print " |
---|
| \n";
+ if ($@) {
+ print "Warning: ";
+ print "'$mod' not installed - check TWiki documentation to see if this is required.\n";
+ print " | \n";
+ } else {
+ my $mod_version;
+ $mod_version = ${"${mod}::VERSION"};
+ print "$mod ($mod_version)";
+ print "\n";
+ }
+ print "\n";
+}
+
+# Check that each of the optional Perl modules can be loaded, and
+# print its version number.
+print "Optional Perl modules: | ";
+foreach $mod (@optionalMods) {
+ eval "use $mod";
+ print " |
---|
| \n";
+ if ($@) {
+ print "Note: ";
+ print "Optional module '$mod' not installed - check TWiki documentation to see if your configuration needs this module.\n";
+ print " | \n";
+ } else {
+ my $mod_version = $ {"$ {mod}::VERSION"};
+ print "$mod ($mod_version)";
+ print "\n";
+ }
+ print "\n";
+}
+
+# All module checks done, OK to enable fatalsToBrowser
+import CGI::Carp qw( fatalsToBrowser );
+
+
+print "PATH_INFO: | $thePathInfo | \n";
+print " | Note:\n";
+print "For a URL such as $theUrl/foo/bar, \n";
+print "the correct PATH_INFO is /foo/bar, without any prefixed path \n";
+print "components. Test this now \n";
+print "- particularly if you are using Apache or IIS, or are using a web hosting provider.\n";
+print "The page resulting from the test link should have a PATH_INFO of /foo/bar.\n";
+print " | \n";
+print "mod_perl: | $USE_MOD_PERL for this script (mod_perl $LOAD_MOD_PERL) | \n";
+
+
+# Get userid (ActiveState or other Perl), should work on all Perl systems
+my $usr = lc( getlogin || getpwuid($<) );
+#
+# Get group info
+my $grp = "";
+if( $OS eq 'UNIX' or ($OS eq 'WINDOWS' and $perltype eq 'Cygwin' ) ) {
+ foreach( split( " ", $( ) ) { # Unix/Cygwin Perl
+ my $onegrp = getgrgid( $_ );
+ $grp .= " " . lc($onegrp);
+ }
+} else { # ActiveState or other Win32 Perl
+ # Try to use Cygwin's 'id' command - may be on the path, since Cygwin
+ # is probably installed to supply ls, egrep, etc - if it isn't, give up.
+ # Run command without stderr output, to avoid CGI giving error.
+ # Get names of primary and other groups.
+ $grp = lc(qx(sh -c '( id -un ; id -gn) 2>/dev/null' 2>nul ));
+ if ($?) {
+ $grp = "[Can't identify groups - no Cygwin 'id' or 'sh' command on path]";
+ }
+}
+
+print "User: | $usr | \n";
+print " | Note: ";
+print "Your CGI scripts are executing as this user.";
+print " | \n";
+if( $usr ne "nobody" ) {
+ print " | Warning: ";
+ print "Since your CGI script is not running as user nobody, ";
+ print "you need to change the locks in the *,v RCS files of the TWiki ";
+ print "distribution from nobody to $usr.\n";
+ print "Otherwise, changes to topics will not be logged by RCS.\n";
+ print " | \n";
+}
+print "Group(s): | ";
+print "$grp";
+print " |
---|
\n";
+
+
+
+print "Test of TWiki.cfg Configuration:\n";
+
+# TWiki.cfg read earlier
+
+print "\n";
+
+print "\$wikiHomeUrl: | $wikiHomeUrl | \n";
+my $junk1 = $wikiHomeUrl; # Avoid warning
+print " | Note: ";
+print "This is the link of the TWiki icon in the upper left corner.";
+print " | \n";
+
+print "\$defaultUrlHost: | $defaultUrlHost | \n";
+print " | Note: ";
+print "This must be the protocol and host part (with optional port number) of ";
+print "the TWiki URL.";
+print " | \n";
+my $val = $ENV{"HTTP_HOST"} || '';
+if( $defaultUrlHost !~ /$val/ ) {
+ print " | Warning: ";
+ print "This does not match HTTP_HOST";
+ print " | \n";
+}
+
+print "\$scriptUrlPath: | $scriptUrlPath | \n";
+print " | Note: ";
+print "This must be the URI of the TWiki cgi-bin directory.";
+print " | \n";
+$val = $ENV{"REQUEST_URI"} || '';
+if( $val !~ /^$scriptUrlPath/ ) {
+ print " | Warning: ";
+ print "This does not match REQUEST_URI";
+ print " | \n";
+}
+
+print "\$pubUrlPath: | $pubUrlPath | \n";
+print " | Note: ";
+print "This must be the URI of the public directory.";
+print "This is not set correctly if the ";
+print "$pubUrlPath/wikiHome.gif image below is broken: ";
+print "";
+print " | \n";
+
+print "\$pubDir: | $pubDir | \n";
+print " | Note: ";
+print "This is the public directory, as seen from the file system. ";
+print "It must correspond to \$pubUrlPath.";
+print " | \n";
+if( ! ( -e "$pubDir/wikiHome.gif" ) ) {
+ print " | Error: ";
+ print "Directory does not exist or file wikiHome.gif does not exist in this directory.";
+ print " | \n";
+} elsif( ! testFileIsWritable( "$pubDir/testenv.test" ) ) {
+ # directory is not writable
+ print " | Error: ";
+ print "This directory is not writable by $usr user.";
+ print " | \n";
+}
+
+print "\$templateDir: | $templateDir | \n";
+print " | Note: ";
+print "This is the TWiki template directory, as seen from the file system. ";
+print " | \n";
+if( ! ( -e "$templateDir/view.tmpl" ) ) {
+ print " | Error: ";
+ print "Directory does not exist or file view.tmpl does not exist in this directory.";
+ print " | \n";
+} elsif( testFileIsWritable( "$templateDir/testenv.test" ) ) {
+ # directory is writable
+ print " | Warning: ";
+ print "Security issue: This directory should not be writable by the $usr user.";
+ print " | \n";
+}
+
+print "\$dataDir: | $dataDir | \n";
+print " | Note: ";
+print "This is the data directory where TWiki stores all topics.";
+print " | \n";
+if( ! ( -e "$dataDir" ) ) {
+ print " | Error: ";
+ print "Directory does not exist.";
+ print " | \n";
+} elsif( ! testFileIsWritable( "$dataDir/testenv.test" ) ) {
+ # directory is not writable
+ print " | Error: ";
+ print "This directory must be writable by the $usr user.";
+ print " | \n";
+}
+
+# Check 'sendmail'
+$val = $mailProgram;
+$val =~ s/([^\s]*).*/$1/g;
+# Don't warn on Windows, as Net::SMTP is normally used
+if( $OS ne 'WINDOWS' && ! ( -e $val ) ) {
+ print " | Warning: ";
+ print "Mail program $val not found. Check the path.";
+ print " | \n";
+}
+
+print "\$mailProgram: | $mailProgram | \n";
+print " | Note: ";
+if( $OS ne 'WINDOWS' ) {
+ print "This is the mail program TWiki uses to send mail.";
+} else {
+ print "This is not typically used on Windows - the Perl Net::SMTP module is used instead.";
+}
+print " | \n";
+
+
+# Check RCS directory
+print "\$rcsDir: | $rcsDir | \n";
+print " | Note: ";
+print "This is the directory where RCS is located.";
+print " | \n";
+
+# Check RCS
+if( ! ( -e "$rcsDir/ci$exeSuffix" ) ) {
+ # RCS not installed
+ print " | Warning: ";
+ print "RCS program $rcsDir/ci$exeSuffix not found. Check \$rcsDir setting in TWiki.cfg. ";
+ print "TWiki will not work (unless you are ";
+ print "using TWiki's built-in RCS implementation, RcsLite).";
+ print " | \n";
+
+} else {
+ # Check RCS version
+ my $rcsVerNum = `$rcsDir/ci$exeSuffix -V`; # May fail due to diff or DLL not on PATH
+ $rcsVerNum = (split(/\s+/, $rcsVerNum))[2] || ""; # Recover from unset variable
+
+ print "RCS Version: | $rcsVerNum";
+ print " (Cygwin package rcs-$cygwinRcsVerNum)" if defined($cygwinRcsVerNum);
+ print " | \n";
+ print " | Note: ";
+ print "This is the version of RCS which will be used.";
+ print " | \n";
+
+ if( $rcsVerNum && $rcsVerNum < $rcsverRequired ) {
+ # RCS too old
+ print " | Warning: ";
+ print "RCS program is too old, upgrade to version $rcsverRequired or higher.";
+ print " | \n";
+ }
+}
+
+# Check 'ls'
+print "\$lsCmd: | $lsCmd | \n";
+print " | Note: ";
+print "This is the file list program TWiki uses to list topics.";
+print " | \n";
+$val = $lsCmd . $exeSuffix;
+$val =~ s/([^\s]*).*/$1/go;
+if( ! ( -e $val ) ) {
+ print " | Warning: ";
+ print "List program $val not found. Check the path.";
+ print " | \n";
+}
+
+# Check 'grep'
+print "\$egrepCmd: | $egrepCmd | \n";
+print " | Note: ";
+print "This is a program TWiki uses for search.";
+print " | \n";
+$val = $egrepCmd . $exeSuffix;
+$val =~ s/([^\s]*).*/$1/go;
+if( ! ( -e $val ) ) {
+ print " | Warning: ";
+ print "Search program $val not found. Check the path.";
+ print " | \n";
+}
+
+# Check 'fgrep'
+print "\$fgrepCmd: | $fgrepCmd | \n";
+print " | Note: ";
+print "This is a program TWiki uses for search.";
+print " | \n";
+$val = $fgrepCmd . $exeSuffix;
+$val =~ s/([^\s]*).*/$1/go;
+if( ! ( -e $val ) ) {
+ print " | Warning: ";
+ print "Search program $val not found. Check the path.";
+ print " | \n";
+}
+
+print "\$safeEnvPath: | $safeEnvPath | \n";
+print " | Note: ";
+print "This is used to initialise the PATH variable, and is used to run the\n";
+print "'diff' program used by RCS, as well as to run shell programs such as\n";
+if( $OS eq 'WINDOWS' ) {
+ print "cmd.exe or Cygwin's 'bash'.\n";
+ print " \n";
+ if( $perltype eq 'Cygwin' ) {
+ print "Since you are using Cygwin Perl, 'bash' will be used without any special setup.\n";
+ } elsif( $perltype eq 'ActiveState' ) {
+ print "To use 'bash' with ActiveState Perl, see the PERL5SHELL section below\n";
+ print "- this is recommended\n";
+ print "if Cygwin is installed.\n";
+ }
+ print " \n";
+} else {
+ print "Bourne shell or 'bash'.";
+}
+if( $safeEnvPath eq '' ) {
+ print " |
---|
| Warning: \n";
+ print "Security issue: \$safeEnvPath set to empty string. Check TWiki.cfg.\n";
+ print " | \n";
+}
+print "\n";
+
+
+# Generate a separate table about specific environment variables
+print " \n";
+print "Path and Shell Environment\n";
+print "\n";
+
+# PATH check on all platforms
+
+print "Original PATH: | $originalPath | \n";
+print " | Note: ";
+print "This is the PATH value passed in from the web server to this script - it is reset by TWiki scripts to the PATH below, and is provided here for comparison purposes only.\n";
+print " | \n";
+
+my $currentPath = $ENV{'PATH'} || ''; # As re-set earlier in this routine
+print "Current PATH: | $currentPath | \n";
+print " | Note: ";
+print "This is the actual PATH setting that will be used by Perl to run programs.\n";
+print "It is normally identical to \$safeEnvPath, unless that variable is empty.\n";
+print " | \n";
+
+
+# Check that diff is found in PATH and is GNU diff - used by various RCS
+# commands, including ci. Since Windows makes it hard to capture stderr
+# ('2>&1' works only on Win2000 or higher), and Windows will usually have
+# GNU diff in any case, we only check for diff on Unix/Linux and Cygwin.
+if( $OS eq 'UNIX' or ($OS eq 'WINDOWS' and $perltype eq 'Cygwin' ) ) {
+ print "diff: | ";
+ my $diffOut = `diff 2>&1` || "";
+ my $notFound = ( $? == -1 );
+ if( $notFound ) {
+ print "Warning: ";
+ print "'diff' program was not found on the current PATH.\n";
+ print " | ";
+ } else {
+ # diff found, check that it's GNU - using '-v' should cause error if not GNU,
+ # since there are no arguments (tested with Solaris diff).
+ $diffOut = `diff -v 2>&1` || "";
+ if( $diffOut !~ /\bGNU\b/ ) {
+ print "Warning: ";
+ print "'diff' program was found on the PATH but is not GNU diff - this may cause problems.\n";
+ print " | ";
+ } else {
+ print "GNU diff was found on the PATH - this is the recommended diff tool.";
+ print " | ";
+ }
+ }
+
+ # Final table row applies to all cases
+ print " | Note:\n";
+ print "The 'diff' command is used by RCS to compare files.\n";
+ print " | ";
+}
+
+# PERL5SHELL check for non-Cygwin Perl on Windows only
+if( $OS eq 'WINDOWS' && $perltype ne 'Cygwin' ) {
+
+ # ActiveState or SiePerl/other
+ my $perl5shell = $ENV{'PERL5SHELL'} || '';
+ print "\n";
+ print "PERL5SHELL: | $perl5shell | \n";
+ print " | Note: ";
+ print "This environment variable is used by ActiveState and other Win32 Perls to run \n";
+ print "commands from TWiki scripts - it determines which shell\n";
+ print "program is used to run commands that use 'pipes'. Examples of shell programs are \n";
+ print "cmd.exe, command.com (aka 'DOS Prompt'), and Cygwin's 'bash'\n";
+ print "(recommended if Cygwin is installed).\n";
+ print " \n";
+ print "To use 'bash' with ActiveState or other Win32 Perls, you should set the \n";
+ print "PERL5SHELL environment variable to something like c:/YOURCYGWINDIR/bin/bash.exe -c.\n";
+ print "This should be set in the System Environment, and ideally set \n";
+ print "directly in the web server (e.g. using the Apache SetEnv \n";
+ print "command, followed by an Apache restart). Once this is done, you should re-run testenv\n";
+ print "to check that PERL5SHELL is set properly.\n";
+ if ($perltype eq 'ActiveState' and
+ Win32::BuildNumber() < $ActivePerlRecommendedBuild ) {
+ print " \n";
+ print "Warning: ";
+ print "ActiveState Perl must be upgraded to build $ActivePerlRecommendedBuild if you are going to use PERL5SHELL, which was broken in earlier builds.";
+ }
+ print " \n";
+ print " | \n";
+}
+
+# Generate a separate table for locale setup
+if ( $showLocales ) { # Only if TWiki.pm found
+ print " \n";
+ print "Internationalisation and Locale Setup\n";
+ print "\n";
+
+ # $useLocale
+ print "\$useLocale: | $useLocale | \n";
+ print " | Note: ";
+ print "This TWiki.cfg setting controls whether locales are used by Perl and 'grep'.\n";
+ print " | \n";
+
+ if( $OS eq 'WINDOWS' ) {
+ # Warn re known broken locale setup
+ print " | Warning: ";
+ print "Using Perl on Windows, which may have missing or incorrect locales (in Cygwin or ActiveState Perl, respectively)\n";
+ print "- use of \$useLocale = 0 is recommended unless you know your version of Perl has working locale support.\n";
+ print " | \n";
+ }
+
+ # $siteLocale
+ print "\$siteLocale: | $siteLocale | \n";
+ print " | Note: ";
+ print "This TWiki.cfg parameter sets the site-wide locale - for\n";
+ print "example, de_AT.ISO-8859-1 where 'de' is the language code, 'AT' the country code and 'ISO-8859-1' is the character set. Use the locale -a command on your system to determine available locales.\n";
+ print " | \n";
+
+ # Try to see if required locale was correctly set earlier
+ my $currentLocale = setlocale(&LC_CTYPE);
+ if ( $currentLocale ne $siteLocale ) {
+ print " | Warning: ";
+ print "Unable to set locale to $siteLocale, actual locale is $currentLocale\n";
+ print "- please test your locale settings.\n";
+ print " | \n";
+ }
+
+ # Locales are off, or using pre-5.6 Perl, so have to explicitly list the accented characters
+ my $perlVerPreferred = 5.006; # 5.6 or higher has [:lower:] etc
+ if ( not $useLocale or $perlvernum < $perlVerPreferred ) {
+
+ # If using Perl 5.005_03 or lower, generate upper and lower case character
+ # classes to avoid doing this at run-time in TWiki.
+ my $forUpperNat;
+ my $forLowerNat;
+ if ( $perlvernum < $perlVerPreferred ) {
+
+ # Get strings with the non-ASCII alphabetic characters only, upper and lower case
+ $forUpperNat = join '', grep { lc($_) ne $_ and m/[^A-Z]/ } map { chr($_) } 1..255;
+ $forLowerNat = join '', grep { uc($_) ne $_ and m/[^a-z]/ } map { chr($_) } 1..255;
+ }
+
+ # $upperNational
+ print "\$upperNational: | $upperNational | \n";
+ print " | Note: ";
+ print "This TWiki.cfg parameter is used when \$useLocale is 0, to work around missing or non-working locales.\n";
+ print "It is also used with Perl 5.005 for efficiency reasons - upgrading to Perl 5.6.1 with working locales is recommended, and removes the need for this. \n";
+ print "If required, this parameter should be set to the upper case accented characters you require in your locale.\n";
+ if ( $forUpperNat ) {
+ print " The following upper case accented characters have been found in this locale and should be considered for use in this parameter: $forUpperNat \n";
+ }
+ print " | \n";
+
+ # $lowerNational
+ print "\$lowerNational: | $lowerNational | \n";
+ print " | Note: ";
+ print "This TWiki.cfg parameter is used whenever \$upperNational is used.\n";
+ print "This parameter should be set to the lower case accented characters you require in your locale.\n";
+ if ( $forLowerNat ) {
+ print " The following lower case accented characters have been found in this locale and should be considered for use in this parameter: $forLowerNat \n";
+ }
+ print " | \n";
+ }
+}
+
+print " \n";
+
+print <
+
+ | | | | |