[19568] in Perl-Users-Digest
Perl-Users Digest, Issue: 1763 Volume: 10
daemon@ATHENA.MIT.EDU (Perl-Users Digest)
Mon Sep 17 18:11:03 2001
Date: Mon, 17 Sep 2001 15:10:15 -0700 (PDT)
From: Perl-Users Digest <Perl-Users-Request@ruby.OCE.ORST.EDU>
To: Perl-Users@ruby.OCE.ORST.EDU (Perl-Users Digest)
Message-Id: <1000764614-v10-i1763@ruby.oce.orst.edu>
Content-Type: text
Perl-Users Digest Mon, 17 Sep 2001 Volume: 10 Number: 1763
Today's topics:
What does this do ? "select( (select($writer), $|=1)[0] (Stan Brown)
Re: What does this do ? "select( (select($writer), $|=1 <bart.lateur@skynet.be>
Re: What does this do ? "select( (select($writer), $|=1 <rsherman@ce.gatech.edu>
Re: What does this do ? "select( (select($writer), $|=1 (Stan Brown)
Re: What does this do ? "select( (select($writer), $|=1 (Randal L. Schwartz)
write to a file handle (Joe Chung)
Re: write to a file handle <clay@panix.com>
Re: write to a file handle (Joe Chung)
Digest Administrivia (Last modified: 6 Apr 01) (Perl-Users-Digest Admin)
----------------------------------------------------------------------
Date: 17 Sep 2001 14:33:44 -0400
From: stanb@panix.com (Stan Brown)
Subject: What does this do ? "select( (select($writer), $|=1)[0] );" ?
Message-Id: <9o5fm8$s8h$1@panix3.panix.com>
I'm trying desperatlu to debug a script that forks a child to do some data
extraction from a DB, then sends it back to the paretn using Storable.
At present it's hanging on fd_retrieve, when there is no data ready. This
is a problem since it needs to be updating the Tk widgtes at this time.
I really can't figure out why it's winding up being called with no data
reay on the pipe.
So, what does this line do?
select( (select($writer), $|=1)[0] );
And could it be the culprit?
------------------------------
Date: Mon, 17 Sep 2001 19:05:34 GMT
From: Bart Lateur <bart.lateur@skynet.be>
Subject: Re: What does this do ? "select( (select($writer), $|=1)[0] );" ?
Message-Id: <80icqtcv63babmebp7hnss21ive3r2lf3a@4ax.com>
Stan Brown wrote:
>So, what does this line do?
>
>select( (select($writer), $|=1)[0] );
>
>And could it be the culprit?
I think not.
It's a shortcut for
{
my $old = select($writer);
$| = 1;
select($old);
}
The value for $| defines the buffering behaviour for the currentlty
selected output filehandle, but not for any other. So this first makes
$writer the current filehandle for writing, saving info on which was the
selected filehandle before that, then it sets $|, and then it reselects
the previous filehandle.
>At present it's hanging on fd_retrieve, when there is no data ready. This
>is a problem since it needs to be updating the Tk widgtes at this time.
Then maybe using the other select() call, first test if anything IS
available before attempting to read from it. Or, change the behaviour of
the input filehandle so that it doesn't wait for input. There's a
function available through Fcntl, to do that.
--
Bart.
------------------------------
Date: Mon, 17 Sep 2001 15:16:44 +0500
From: Robert Sherman <rsherman@ce.gatech.edu>
Subject: Re: What does this do ? "select( (select($writer), $|=1)[0] );" ?
Message-Id: <3BA5CD8C.84941D18@ce.gatech.edu>
Stan Brown wrote:
>
> I'm trying desperatlu to debug a script that forks a child to do some data
> extraction from a DB, then sends it back to the paretn using Storable.
>
> At present it's hanging on fd_retrieve, when there is no data ready. This
> is a problem since it needs to be updating the Tk widgtes at this time.
>
> I really can't figure out why it's winding up being called with no data
> reay on the pipe.
>
> So, what does this line do?
>
> select( (select($writer), $|=1)[0] );
>
> And could it be the culprit?
$|=1 sets autoflush
select filehandle returns the current output filehandle, and then sets
it to the filehandle specified
so it looks like this just switches the default output filehandle to
$writer so it can set autoflush on it, then immediately sets it back to
what it was before.
actually, upon further inspection, this idiom is almost word-for-word in
the camel...(3rd ed., p. 781, under the select function).
--
robert sherman
css, cee
georgia institute of technology
atlanta, ga, usa
------------------------------
Date: 17 Sep 2001 15:27:18 -0400
From: stanb@panix.com (Stan Brown)
Subject: Re: What does this do ? "select( (select($writer), $|=1)[0] );" ?
Message-Id: <9o5iqm$1ed$1@panix1.panix.com>
In <80icqtcv63babmebp7hnss21ive3r2lf3a@4ax.com> Bart Lateur <bart.lateur@skynet.be> writes:
>Stan Brown wrote:
>>So, what does this line do?
>>
>>select( (select($writer), $|=1)[0] );
>>
>>And could it be the culprit?
>I think not.
>It's a shortcut for
> {
> my $old = select($writer);
> $| = 1;
> select($old);
> }
>The value for $| defines the buffering behaviour for the currentlty
>selected output filehandle, but not for any other. So this first makes
>$writer the current filehandle for writing, saving info on which was the
>selected filehandle before that, then it sets $|, and then it reselects
>the previous filehandle.
>>At present it's hanging on fd_retrieve, when there is no data ready. This
>>is a problem since it needs to be updating the Tk widgtes at this time.
>Then maybe using the other select() call, first test if anything IS
>available before attempting to read from it. Or, change the behaviour of
>the input filehandle so that it doesn't wait for input. There's a
>function available through Fcntl, to do that.
Thanks for the fast reply.
If you don't mind, could I spell out a few more dtails of what I'm trying
to do, and perhaps you can point out the error of my ways.
Conceptualy I have a perlTK script that forks a child to retrieve data from
Oracle. The parent the is taksed with ahndling the Tk main loop, and
retreiveing data sent to it by the chiled.
Here are teh 2 relevant peices of code. For the parent:
sub fetch_records ($$$) {
#####################################################################
#
# Prepares and executes a database query, based upon the
# info in %data_fileds
#
# Inputs
#
# 1. Name of the table we are working on
# 2. Total number of rows in the table we are working on
# 3. pointer to hash of column names, and atributes
#
# Side effects
# Spawns a child task to execute the DB fetch
# The callback triggered by this cahild does the followig:
# Sets %record_set[] to contain all the returned records
# Adds quantity of records, and currently displayed record
# number widgets to main window
#
#####################################################################
my ($ltable,$total_rows_this_table,$hash_pointer)=@_;
my $pid;
my $pipe;
my $rc;
my $sths;
my $rp = 0;
my $function_name = (caller(0))[3];
my $argtmp = join ', ', map "Arg$_ " .
( defined $_[$_] ? "->$_[$_]<-" :
'*UNDEF*'), 0 .. $#_;
print_debug(2,"Entering $function_name()\n",0,0);
print_debug(3,"$argtmp\n",0,0);
my $stmt = create_query_statement($ltable,$hash_pointer);
print_debug(1, "**** Query = \n->$stmt<-\n",1,0);
$record_qty = 0;
undef $records_array_ref;
# $MW->Busy;
pipe my ($reader, $writer) or die "pipe: $!";
if( my $pid = fork ) {
# parent process here
print_debug(1,"Parent task\n",0,1);
$child_pid = $pid;
close $writer;
$please_wait_popup = popup_info("Retrieving Records From DB. Please wait");
$MW->fileevent($reader,
"readable",
[\&new_records_avail,
$reader,
$pid,
$total_rows_this_table]);
} elsif( defined $pid ) {
# child process here
print_debug(1,"Child task started\n",0,1);
close $reader;
select( (select($writer), $|=1)[0] );
eval {
# Prepare query
print_debug(1, "Prepare Satrted\n",1,1);
$sths = $dbh->prepare("$stmt");
print_debug(1, "Prepare Done. Execute Started\n",1,1);
$rc = $sths->execute or die $DBI::errstr;
print_debug(1, "Execute done\n",1,1);
while( my $onerow = $sths->fetchrow_arrayref ) {
store_fd( $onerow, $writer ) or die "can't store to $writer\n";
if($rp == 100)
{
# SDB
print_debug(1,"Sleeping\n",1,0);
sleep(10);
print_debug(1,"Done sleeping\n",1,0);
$rp = 0;
}
++$rp;
}
store_fd( [], $writer ) or die "can't store to $writer\n";
print_debug(1, "Fetch done\n",1,0);
};
store_fd \$DBI::errstr, $writer if $@;
close $writer;
$sths->finish();
print_debug(5,"Child task done\n",0,1);
undef $child_pid;
POSIX::_exit(0);
}
print_debug(3,"Returning from $function_name()\n",0,0);
}
Rhis forks the child, and sets up a fileevent callback to allow for the
child to get it's atention. The callback loooks like this:
sub new_records_avail($$$) {
######################################################################
#
# new_records_avail
#
# The callback routine, that is called when the child task, which
# does the actual DB fetch, has data available.
#
# Inpits
#
# 1. The filehandle to read from
# 2. The pid of the child
# 3. The total number of records in the table we are working on
#
#####################################################################
my ($reader,$pid,$total_rows_this_table)=@_;
my $rb;
my $sb;
my $cb;
my $col;
my $plural;
my $junk;
my(@seperator_attributes) = qw/-width 10 -height 40/;
my $function_name = (caller(0))[3];
my $argtmp = join ', ', map "Arg$_ " .
( defined $_[$_] ? "->$_[$_]<-" :
'*UNDEF*'), 0 .. $#_;
print_debug(1,"Entering $function_name()\n",1,0);
print_debug(3,"$argtmp\n",0,0);
my $arow = fd_retrieve $reader;
# SDB
print_debug(1,"Got $arow()\n",1,0);
die "Unexpected eof $!" if !$arow;
if( !@$arow ) {
print_debug(1, "Done With Fetching commify($record_qty) Selected Records\n",1,1);
$MW->fileevent( $reader, "readable", "" );
if ($record_qty == 1)
{
$next_button->configure( -state => 'disabled');
$prev_button->configure( -state => 'disabled');
}
print_debug(1, "Sending kill for preocess $pid\n",1,1);
kill 9, $pid;
waitpid( $pid , 0);
print_debug(1, "Preocess $pid is terminated\n",1,1);
close $reader;
$MW->Unbusy();
if (defined $please_wait_popup)
{
$please_wait_popup->destroy();
}
popup_msg("All Records That Match Your Selected Criteria Have Now Been Fetched");
if($record_qty == 0)
{
popup_msg("No Records match this query");
}
else
{
if($record_qty > 1)
{
$plural = "Records";
}
else
{
$plural = "Record";
}
my $cq = commify($record_qty);
$fetch_status = "Displaying Record $pos Of $cq $plural Fetched So Far.";
# Go to new state
#
# Yes, I know I said all of these should be in DoIT()
# However now that the actual DB fetch is done
# via a child process, this is asynchronous,
# and MUST be done in this callback
$State = 'PROCESING_QUERY_RESULTS';
}
return;
}
@{$records_array_ref->[$record_qty]} = @$arow;
if($record_qty == 0)
{
STDOUT->autoflush(1);
print_debug(1, "First record recieved\n",1,1);
# Display first record
$pos = 1;
# We depend upon the order of the columns to retrieve
# in the SELECT statement being created in this same order
# I don't like this, but the alternative was copying
# all the retrieved data rows, and this was prooblematic
# on large (1 million row) record sets
my $i = 0;
foreach $col (sort keys %cols)
{
if($cols{$col}{'DATA_TYPE'} eq 'DATE')
{
my $dt = ParseDate( $records_array_ref->[($pos - 1)]->[$i]);
$data_fields{$col} = UnixDate($dt, "%s");
}
else
{
$data_fields{$col} = $records_array_ref->[($pos - 1)]->[$i];
print_debug(6,
"Set data_fields{col} for $col to ->$data_fields{$col}<-\n",
0,
0);
}
$i++;
}
# Make a copy, BEFORE anyone can change this
# Need this to use in UPDATE
%this_record = %data_fields;
$MW->packPropagate(1);
# Create a little space between buttons and record qty status fileds
$rec_spacer = $MW->Frame(@seperator_attributes);
$rec_spacer->pack( -side => 'left');
$rec_label = $MW->Label(-text => "Displaying Record" ,
-anchor => 'se',
-height => 1,
-justify => 'center');
$rec_label->pack( -side => 'top' ,
-expand => 'n' ,
-fill => 'none' );
my $w = length($record_qty);
$rec_entry = $MW->Entry(-textvariable => \$pos ,
-relief => 'solid' ,
-borderwidth => 0 ,
-takefocus => 0 ,
-width => $w );
$rec_entry->pack( -side => 'top' ,
-expand => 'n' ,
-fill => 'none' );
$w = length($fetch_status) + 10;
$rec_label2 = $MW->Entry(-textvariable => \$fetch_status,
-relief => 'solid' ,
-borderwidth => 0 ,
-takefocus => 0,
-width => $w );
$fetch_status = "Displaying Record 1 Of 1 Records Fetched So Far.";
$w = length($fetch_status);
$rec_label2->pack( -side => 'top' ,
-expand => 'y' ,
-fill => 'x' );
# Got record(s)
# Set widgets to proper enabled/disabled state for the allowed
# actions in this state
if(defined $insert_button)
{
$insert_button->configure( -state => 'active');
}
if(defined $update_button)
{
$update_button->configure( -state => 'active');
}
if(defined $delete_button)
{
$delete_button->configure( -state => 'active');
}
$execute_button->configure( -state => 'disabled');
$enter_button->configure( -state => 'active');
$next_button->configure( -state => 'active');
$prev_button->configure( -state => 'active');
if(defined $save_button)
{
$save_button->configure( -state => 'active');
}
foreach $rb (@radiobuttons) {
if(defined $rb)
{
$rb->configure( -state => 'active');
}
}
while (($junk, $cb) = each %comparebuttons) {
if(defined $cb)
{
$cb->configure( -state => 'disabled');
}
}
while (($junk, $sb) = each %sortbuttons) {
if(defined $sb)
{
$sb->configure( -state => 'disabled');
}
}
++$record_qty;
print_debug(1, "First record Processing Complete\n",1,1);
return;
}
++$record_qty;
# SDB
++$qr;
if($qr == ($total_rows_this_table / 100))
{
if($record_qty > 1)
{
$plural = "Records";
}
else
{
$plural = "Record";
}
my $cq = commify($record_qty);
$fetch_status = "Displaying Record $pos Of $cq $plural Fetched So Far.";
my $qty = commify($record_qty);
print "\r$qty";
$qr = 0;
$MW->update();
}
print_debug(1,"Returning from $function_name()\n",1,0);
}
Here is some debug traceing of this task, as it runs:
$ script$ ./f*pl -d1 brkr$ ./f*pl -d1 b300$
./foo.pl: - Connecting to brown:0
./foo.pl: - State = ENTERING_QUERY.
./foo.pl: Mon Sep 17 14:56:50 2001: - **** Query =
->SELECT A_2_B_THD_VOLTS , A_2_B_VOLTS , A_CURRENT , A_DEMAND , A_THD_CURRENT , BRKR_STATE , B_2_C_THD_VOLTS , B_2_C_VOLTS , B_CURRENT , B_DEMAND , B_THD_CURRENT , C_2_A_VOLTS , C_CURRENT , C_DEMAND , C_THD_CURRENT , DSTAMP , HZ , KVA , KVARS , KVA_DEMAND , KW , KW_DEMAND , PF , TSTAMP FROM B300 WHERE DSTAMP > TO_DATE('09-Sep-2001 14:56:31' , 'DD-MON-YYYY HH24:MI:SS' ) ORDER BY DSTAMP<-
./foo.pl: PID->23068: - Child task started
./foo.pl: Mon Sep 17 14:56:50 2001: PID->23068: - Prepare Satrted
./foo.pl: PID->23066: - Parent task
./foo.pl: Mon Sep 17 14:56:50 2001: PID->23068: - Prepare Done. Execute Started
./foo.pl: Mon Sep 17 14:56:50 2001: PID->23068: - Execute done
./foo.pl: - State = IN_QUERY.
./foo.pl: Mon Sep 17 14:56:50 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:56:50 2001: - Got ARRAY(0x409728dc)()
./foo.pl: Mon Sep 17 14:56:50 2001: PID->23066: - First record recieved
./foo.pl: Mon Sep 17 14:56:51 2001: PID->23066: - First record Processing Complete
./foo.pl: Mon Sep 17 14:56:51 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:56:51 2001: - Got ARRAY(0x404b34d4)()
./foo.pl: Mon Sep 17 14:56:51 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:56:51 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:56:51 2001: - Got ARRAY(0x40978918)()
./foo.pl: Mon Sep 17 14:56:51 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:56:51 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:56:51 2001: - Got ARRAY(0x409788e8)()
./foo.pl: Mon Sep 17 14:56:51 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:56:51 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:56:51 2001: - Got ARRAY(0x409788c4)()
./foo.pl: Mon Sep 17 14:56:51 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:56:51 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:56:51 2001: - Got ARRAY(0x40973c68)()
./foo.pl: Mon Sep 17 14:56:51 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:56:51 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:56:51 2001: - Got ARRAY(0x4097687c)()
./foo.pl: Mon Sep 17 14:56:51 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:56:51 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:56:51 2001: - Got ARRAY(0x40978924)()
./foo.pl: Mon Sep 17 14:56:51 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:56:51 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:56:51 2001: - Got ARRAY(0x40978900)()
./foo.pl: Mon Sep 17 14:56:51 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:56:51 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:56:51 2001: - Got ARRAY(0x4097f0e8)()
./foo.pl: Mon Sep 17 14:56:51 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:56:51 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:56:51 2001: - Got ARRAY(0x409730e8)()
./foo.pl: Mon Sep 17 14:56:51 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:56:51 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:56:51 2001: - Got ARRAY(0x4096c310)()
./foo.pl: Mon Sep 17 14:56:51 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:56:51 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:56:51 2001: - Got ARRAY(0x4096eda0)()
./foo.pl: Mon Sep 17 14:56:51 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:56:51 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:56:51 2001: - Got ARRAY(0x40973c98)()
./foo.pl: Mon Sep 17 14:56:51 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:56:51 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:56:51 2001: - Got ARRAY(0x40973ddc)()
./foo.pl: Mon Sep 17 14:56:51 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:56:51 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:56:51 2001: - Got ARRAY(0x40973154)()
./foo.pl: Mon Sep 17 14:56:51 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:56:51 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:56:51 2001: - Got ARRAY(0x40973220)()
./foo.pl: Mon Sep 17 14:56:51 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:56:51 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:56:51 2001: - Got ARRAY(0x409733a0)()
./foo.pl: Mon Sep 17 14:56:51 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:56:51 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:56:51 2001: - Got ARRAY(0x40973280)()
./foo.pl: Mon Sep 17 14:56:51 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:56:51 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:56:51 2001: - Got ARRAY(0x40973214)()
./foo.pl: Mon Sep 17 14:56:51 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:56:51 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:56:51 2001: - Got ARRAY(0x40973238)()
./foo.pl: Mon Sep 17 14:56:51 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:56:51 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:56:51 2001: - Got ARRAY(0x40970c20)()
./foo.pl: Mon Sep 17 14:56:51 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:56:51 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:56:51 2001: - Got ARRAY(0x40973274)()
./foo.pl: Mon Sep 17 14:56:51 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:56:51 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:56:51 2001: - Got ARRAY(0x409732b0)()
./foo.pl: Mon Sep 17 14:56:51 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:56:51 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:56:51 2001: - Got ARRAY(0x40969d94)()
./foo.pl: Mon Sep 17 14:56:51 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:56:51 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:56:51 2001: - Got ARRAY(0x4095eab0)()
./foo.pl: Mon Sep 17 14:56:51 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:56:51 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:56:51 2001: - Got ARRAY(0x4095cf14)()
./foo.pl: Mon Sep 17 14:56:51 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:56:51 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:56:51 2001: - Got ARRAY(0x40950924)()
./foo.pl: Mon Sep 17 14:56:51 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:56:51 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:56:51 2001: - Got ARRAY(0x4094f250)()
./foo.pl: Mon Sep 17 14:56:51 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:56:51 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:56:51 2001: - Got ARRAY(0x409443a0)()
./foo.pl: Mon Sep 17 14:56:51 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:56:51 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:56:51 2001: - Got ARRAY(0x4094df8c)()
./foo.pl: Mon Sep 17 14:56:51 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:56:51 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:56:51 2001: - Got ARRAY(0x4095cd34)()
./foo.pl: Mon Sep 17 14:56:51 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:56:51 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:56:51 2001: - Got ARRAY(0x4095b948)()
./foo.pl: Mon Sep 17 14:56:51 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:56:51 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:56:51 2001: - Got ARRAY(0x409574e0)()
./foo.pl: Mon Sep 17 14:56:51 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:56:51 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:56:51 2001: - Got ARRAY(0x40958358)()
./foo.pl: Mon Sep 17 14:56:51 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:56:51 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:56:51 2001: - Got ARRAY(0x4095e9fc)()
./foo.pl: Mon Sep 17 14:56:51 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:56:51 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:56:51 2001: - Got ARRAY(0x40961f80)()
./foo.pl: Mon Sep 17 14:56:51 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:56:51 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:56:51 2001: - Got ARRAY(0x4095e900)()
./foo.pl: Mon Sep 17 14:56:51 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:56:51 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:56:51 2001: - Got ARRAY(0x40938474)()
./foo.pl: Mon Sep 17 14:56:51 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:56:51 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:56:51 2001: - Got ARRAY(0x40969d94)()
./foo.pl: Mon Sep 17 14:56:51 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:56:51 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:56:51 2001: - Got ARRAY(0x4095eab0)()
./foo.pl: Mon Sep 17 14:56:51 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:56:51 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:56:51 2001: - Got ARRAY(0x4095cf14)()
./foo.pl: Mon Sep 17 14:56:51 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:56:51 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:56:51 2001: - Got ARRAY(0x40950924)()
./foo.pl: Mon Sep 17 14:56:51 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:56:51 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:56:51 2001: - Got ARRAY(0x409384c8)()
./foo.pl: Mon Sep 17 14:56:51 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:56:51 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:56:51 2001: - Got ARRAY(0x40935894)()
./foo.pl: Mon Sep 17 14:56:51 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:56:51 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:56:51 2001: - Got ARRAY(0x4092fb34)()
./foo.pl: Mon Sep 17 14:56:51 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:56:51 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:56:51 2001: - Got ARRAY(0x4091c474)()
./foo.pl: Mon Sep 17 14:56:51 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:56:51 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:56:51 2001: - Got ARRAY(0x4090ec5c)()
./foo.pl: Mon Sep 17 14:56:51 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:56:51 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:56:51 2001: - Got ARRAY(0x4090c2f8)()
./foo.pl: Mon Sep 17 14:56:51 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:56:51 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:56:51 2001: - Got ARRAY(0x40904a44)()
./foo.pl: Mon Sep 17 14:56:51 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:56:51 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:56:51 2001: - Got ARRAY(0x40906b34)()
./foo.pl: Mon Sep 17 14:56:51 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:56:51 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:56:51 2001: - Got ARRAY(0x40900088)()
./foo.pl: Mon Sep 17 14:56:51 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:56:51 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:56:51 2001: - Got ARRAY(0x408fd3c4)()
./foo.pl: Mon Sep 17 14:56:51 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:56:51 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:56:51 2001: - Got ARRAY(0x408fb798)()
./foo.pl: Mon Sep 17 14:56:51 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:56:51 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:56:51 2001: - Got ARRAY(0x408fe96c)()
./foo.pl: Mon Sep 17 14:56:51 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:56:51 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:56:51 2001: - Got ARRAY(0x408f8d7c)()
./foo.pl: Mon Sep 17 14:56:51 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:56:51 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:56:51 2001: - Got ARRAY(0x408f751c)()
./foo.pl: Mon Sep 17 14:56:51 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:56:51 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:56:51 2001: - Got ARRAY(0x408f4690)()
./foo.pl: Mon Sep 17 14:56:51 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:56:51 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:56:51 2001: - Got ARRAY(0x408f469c)()
./foo.pl: Mon Sep 17 14:56:51 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:56:51 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:56:51 2001: - Got ARRAY(0x408e8ef0)()
./foo.pl: Mon Sep 17 14:56:51 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:56:51 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:56:51 2001: - Got ARRAY(0x408e8da0)()
./foo.pl: Mon Sep 17 14:56:51 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:56:51 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:56:51 2001: - Got ARRAY(0x408decec)()
./foo.pl: Mon Sep 17 14:56:51 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:56:51 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:56:51 2001: - Got ARRAY(0x408e29e4)()
./foo.pl: Mon Sep 17 14:56:51 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:56:51 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:56:51 2001: - Got ARRAY(0x408db31c)()
./foo.pl: Mon Sep 17 14:56:51 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:56:51 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:56:51 2001: - Got ARRAY(0x408d966c)()
./foo.pl: Mon Sep 17 14:56:51 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:56:51 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:56:51 2001: - Got ARRAY(0x408d9444)()
./foo.pl: Mon Sep 17 14:56:51 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:56:51 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:56:51 2001: - Got ARRAY(0x408d681c)()
./foo.pl: Mon Sep 17 14:56:51 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:56:51 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:56:51 2001: - Got ARRAY(0x408d25dc)()
./foo.pl: Mon Sep 17 14:56:51 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:56:51 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:56:51 2001: - Got ARRAY(0x408cdbdc)()
./foo.pl: Mon Sep 17 14:56:51 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:56:51 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:56:51 2001: - Got ARRAY(0x408cdb64)()
./foo.pl: Mon Sep 17 14:56:51 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:56:51 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:56:51 2001: - Got ARRAY(0x408c67a4)()
./foo.pl: Mon Sep 17 14:56:51 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:56:51 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:56:51 2001: - Got ARRAY(0x408bf558)()
./foo.pl: Mon Sep 17 14:56:51 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:56:51 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:56:51 2001: - Got ARRAY(0x408c08c4)()
./foo.pl: Mon Sep 17 14:56:51 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:56:51 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:56:51 2001: - Got ARRAY(0x40843e6c)()
./foo.pl: Mon Sep 17 14:56:51 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:56:51 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:56:51 2001: - Got ARRAY(0x40843d94)()
./foo.pl: Mon Sep 17 14:56:51 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:56:51 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:56:51 2001: - Got ARRAY(0x40839394)()
./foo.pl: Mon Sep 17 14:56:51 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:56:51 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:56:51 2001: - Sleeping
./foo.pl: Mon Sep 17 14:57:01 2001: - Done sleeping
./foo.pl: Mon Sep 17 14:57:01 2001: - Got ARRAY(0x4083931c)()
./foo.pl: Mon Sep 17 14:57:01 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:01 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:01 2001: - Got ARRAY(0x409d842c)()
./foo.pl: Mon Sep 17 14:57:01 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:01 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:01 2001: - Got ARRAY(0x409d854c)()
./foo.pl: Mon Sep 17 14:57:01 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:01 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:01 2001: - Got ARRAY(0x409d8684)()
./foo.pl: Mon Sep 17 14:57:01 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:01 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:01 2001: - Got ARRAY(0x409d87bc)()
./foo.pl: Mon Sep 17 14:57:01 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:01 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:01 2001: - Got ARRAY(0x40a62118)()
./foo.pl: Mon Sep 17 14:57:01 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:01 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:01 2001: - Got ARRAY(0x40a62250)()
./foo.pl: Mon Sep 17 14:57:01 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:01 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:01 2001: - Got ARRAY(0x40a62388)()
./foo.pl: Mon Sep 17 14:57:01 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:01 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:01 2001: - Got ARRAY(0x40a624d4)()
./foo.pl: Mon Sep 17 14:57:01 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:01 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:01 2001: - Got ARRAY(0x40a6260c)()
./foo.pl: Mon Sep 17 14:57:01 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:01 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:01 2001: - Got ARRAY(0x40a62744)()
./foo.pl: Mon Sep 17 14:57:01 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:01 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:01 2001: - Got ARRAY(0x40a62c98)()
./foo.pl: Mon Sep 17 14:57:01 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:01 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:01 2001: - Got ARRAY(0x40a62dd0)()
./foo.pl: Mon Sep 17 14:57:01 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:01 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:01 2001: - Got ARRAY(0x40a62f08)()
./foo.pl: Mon Sep 17 14:57:01 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:01 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:01 2001: - Got ARRAY(0x40a63c5c)()
./foo.pl: Mon Sep 17 14:57:01 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:01 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:01 2001: - Got ARRAY(0x40a63d94)()
./foo.pl: Mon Sep 17 14:57:01 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:01 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:01 2001: - Got ARRAY(0x40a63ecc)()
./foo.pl: Mon Sep 17 14:57:01 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:01 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:01 2001: - Got ARRAY(0x40a64420)()
./foo.pl: Mon Sep 17 14:57:01 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:01 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:01 2001: - Got ARRAY(0x40a64558)()
./foo.pl: Mon Sep 17 14:57:01 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:01 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:01 2001: - Got ARRAY(0x40a64690)()
./foo.pl: Mon Sep 17 14:57:01 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:01 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:01 2001: - Got ARRAY(0x40a647c8)()
./foo.pl: Mon Sep 17 14:57:01 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:01 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:01 2001: - Got ARRAY(0x40a6551c)()
./foo.pl: Mon Sep 17 14:57:01 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:01 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:01 2001: - Got ARRAY(0x40a65654)()
./foo.pl: Mon Sep 17 14:57:01 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:01 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:01 2001: - Got ARRAY(0x40a6578c)()
./foo.pl: Mon Sep 17 14:57:01 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:01 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:01 2001: - Got ARRAY(0x40a664e0)()
./foo.pl: Mon Sep 17 14:57:01 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:01 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:01 2001: - Got ARRAY(0x40a66618)()
./foo.pl: Mon Sep 17 14:57:01 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:01 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:01 2001: - Got ARRAY(0x40a66750)()
./foo.pl: Mon Sep 17 14:57:01 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:01 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:01 2001: - Got ARRAY(0x40a67ca4)()
./foo.pl: Mon Sep 17 14:57:01 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:01 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:01 2001: - Got ARRAY(0x40a67ddc)()
./foo.pl: Mon Sep 17 14:57:01 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:01 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:01 2001: - Got ARRAY(0x40a67f14)()
./foo.pl: Mon Sep 17 14:57:01 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:01 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:02 2001: - Got ARRAY(0x40a68468)()
./foo.pl: Mon Sep 17 14:57:02 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:02 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:02 2001: - Got ARRAY(0x40a685a0)()
./foo.pl: Mon Sep 17 14:57:02 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:02 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:02 2001: - Got ARRAY(0x40a686d8)()
./foo.pl: Mon Sep 17 14:57:02 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:02 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:02 2001: - Got ARRAY(0x40a69c2c)()
./foo.pl: Mon Sep 17 14:57:02 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:02 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:02 2001: - Got ARRAY(0x40a69d64)()
./foo.pl: Mon Sep 17 14:57:02 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:02 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:02 2001: - Got ARRAY(0x40a69e9c)()
./foo.pl: Mon Sep 17 14:57:02 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:02 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:02 2001: - Got ARRAY(0x40a69fd4)()
./foo.pl: Mon Sep 17 14:57:02 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:02 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:02 2001: - Got ARRAY(0x40a6a528)()
./foo.pl: Mon Sep 17 14:57:02 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:02 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:02 2001: - Got ARRAY(0x40a6a660)()
./foo.pl: Mon Sep 17 14:57:02 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:02 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:02 2001: - Got ARRAY(0x40a6a798)()
./foo.pl: Mon Sep 17 14:57:02 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:02 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:02 2001: - Got ARRAY(0x40a6b4ec)()
./foo.pl: Mon Sep 17 14:57:02 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:02 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:02 2001: - Got ARRAY(0x40a6b624)()
./foo.pl: Mon Sep 17 14:57:02 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:02 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:02 2001: - Got ARRAY(0x40a6b75c)()
./foo.pl: Mon Sep 17 14:57:02 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:02 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:02 2001: - Got ARRAY(0x40a6c0b8)()
./foo.pl: Mon Sep 17 14:57:02 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:02 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:02 2001: - Got ARRAY(0x40a6c1f0)()
./foo.pl: Mon Sep 17 14:57:02 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:02 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:02 2001: - Got ARRAY(0x40a6c328)()
./foo.pl: Mon Sep 17 14:57:02 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:02 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:02 2001: - Got ARRAY(0x40a6c87c)()
./foo.pl: Mon Sep 17 14:57:02 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:02 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:02 2001: - Got ARRAY(0x40a6c9b4)()
./foo.pl: Mon Sep 17 14:57:02 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:02 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:02 2001: - Got ARRAY(0x40a6caec)()
./foo.pl: Mon Sep 17 14:57:02 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:02 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:02 2001: - Got ARRAY(0x40a6d040)()
./foo.pl: Mon Sep 17 14:57:02 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:02 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:02 2001: - Got ARRAY(0x40a6d178)()
./foo.pl: Mon Sep 17 14:57:02 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:02 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:02 2001: - Got ARRAY(0x40a6d2b0)()
./foo.pl: Mon Sep 17 14:57:02 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:02 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:02 2001: - Got ARRAY(0x40a6d3e8)()
./foo.pl: Mon Sep 17 14:57:02 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:02 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:02 2001: - Got ARRAY(0x40a6e93c)()
./foo.pl: Mon Sep 17 14:57:02 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:02 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:02 2001: - Got ARRAY(0x40a6ea74)()
./foo.pl: Mon Sep 17 14:57:02 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:02 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:02 2001: - Got ARRAY(0x40a6ebac)()
./foo.pl: Mon Sep 17 14:57:02 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:02 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:02 2001: - Sleeping
./foo.pl: Mon Sep 17 14:57:02 2001: - Got ARRAY(0x40a6f100)()
./foo.pl: Mon Sep 17 14:57:02 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:02 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:02 2001: - Got ARRAY(0x40a6f238)()
./foo.pl: Mon Sep 17 14:57:02 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:02 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:02 2001: - Got ARRAY(0x40a6f370)()
./foo.pl: Mon Sep 17 14:57:02 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:02 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:02 2001: - Got ARRAY(0x40a700c4)()
./foo.pl: Mon Sep 17 14:57:02 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:02 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:02 2001: - Got ARRAY(0x40a701fc)()
./foo.pl: Mon Sep 17 14:57:02 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:02 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:02 2001: - Got ARRAY(0x40a70334)()
./foo.pl: Mon Sep 17 14:57:02 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:02 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:02 2001: - Got ARRAY(0x40a70888)()
./foo.pl: Mon Sep 17 14:57:02 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:02 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:02 2001: - Got ARRAY(0x40a709c0)()
./foo.pl: Mon Sep 17 14:57:02 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:02 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:02 2001: - Got ARRAY(0x40a70af8)()
./foo.pl: Mon Sep 17 14:57:02 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:02 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:02 2001: - Got ARRAY(0x40a7284c)()
./foo.pl: Mon Sep 17 14:57:02 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:02 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:02 2001: - Got ARRAY(0x40a72984)()
./foo.pl: Mon Sep 17 14:57:02 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:02 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:02 2001: - Got ARRAY(0x40a72abc)()
./foo.pl: Mon Sep 17 14:57:02 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:02 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:02 2001: - Got ARRAY(0x40a72bf4)()
./foo.pl: Mon Sep 17 14:57:02 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:02 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:02 2001: - Got ARRAY(0x40a73948)()
./foo.pl: Mon Sep 17 14:57:02 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:02 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:02 2001: - Got ARRAY(0x40a73a80)()
./foo.pl: Mon Sep 17 14:57:02 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:02 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:02 2001: - Got ARRAY(0x40a73bb8)()
./foo.pl: Mon Sep 17 14:57:02 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:02 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:02 2001: - Got ARRAY(0x40a74504)()
./foo.pl: Mon Sep 17 14:57:02 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:02 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:02 2001: - Got ARRAY(0x40a7463c)()
./foo.pl: Mon Sep 17 14:57:02 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:02 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:02 2001: - Got ARRAY(0x40a74774)()
./foo.pl: Mon Sep 17 14:57:02 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:02 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:02 2001: - Got ARRAY(0x40a754c8)()
./foo.pl: Mon Sep 17 14:57:02 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:02 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:02 2001: - Got ARRAY(0x40a75600)()
./foo.pl: Mon Sep 17 14:57:02 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:02 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:02 2001: - Got ARRAY(0x40a75738)()
./foo.pl: Mon Sep 17 14:57:02 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:02 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:02 2001: - Got ARRAY(0x40a75c8c)()
./foo.pl: Mon Sep 17 14:57:02 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:02 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:02 2001: - Got ARRAY(0x40a75dc4)()
./foo.pl: Mon Sep 17 14:57:02 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:02 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:02 2001: - Got ARRAY(0x40a75efc)()
./foo.pl: Mon Sep 17 14:57:02 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:02 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:02 2001: - Got ARRAY(0x40a76858)()
./foo.pl: Mon Sep 17 14:57:02 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:02 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:02 2001: - Got ARRAY(0x40a76990)()
./foo.pl: Mon Sep 17 14:57:02 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:02 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:02 2001: - Got ARRAY(0x40a76ac8)()
./foo.pl: Mon Sep 17 14:57:02 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:02 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:02 2001: - Got ARRAY(0x40a7781c)()
./foo.pl: Mon Sep 17 14:57:02 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:02 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:02 2001: - Got ARRAY(0x40a77954)()
./foo.pl: Mon Sep 17 14:57:02 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:02 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:02 2001: - Got ARRAY(0x40a77a8c)()
./foo.pl: Mon Sep 17 14:57:02 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:02 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:02 2001: - Got ARRAY(0x40a77bc4)()
./foo.pl: Mon Sep 17 14:57:02 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:02 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:02 2001: - Got ARRAY(0x40a78918)()
./foo.pl: Mon Sep 17 14:57:02 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:02 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:02 2001: - Got ARRAY(0x40a78a50)()
./foo.pl: Mon Sep 17 14:57:02 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:02 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:02 2001: - Got ARRAY(0x40a78b88)()
./foo.pl: Mon Sep 17 14:57:02 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:02 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:02 2001: - Got ARRAY(0x40a790dc)()
./foo.pl: Mon Sep 17 14:57:02 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:02 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:02 2001: - Got ARRAY(0x40a79214)()
./foo.pl: Mon Sep 17 14:57:02 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:02 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:02 2001: - Got ARRAY(0x40a7934c)()
./foo.pl: Mon Sep 17 14:57:02 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:02 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:02 2001: - Got ARRAY(0x40a798a0)()
./foo.pl: Mon Sep 17 14:57:02 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:02 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:02 2001: - Got ARRAY(0x40a799d8)()
./foo.pl: Mon Sep 17 14:57:02 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:02 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:02 2001: - Got ARRAY(0x40a79b10)()
./foo.pl: Mon Sep 17 14:57:02 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:02 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:02 2001: - Got ARRAY(0x40a7a864)()
./foo.pl: Mon Sep 17 14:57:02 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:02 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:02 2001: - Got ARRAY(0x40a7a99c)()
./foo.pl: Mon Sep 17 14:57:02 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:02 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:02 2001: - Got ARRAY(0x40a7aad4)()
./foo.pl: Mon Sep 17 14:57:02 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:02 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:02 2001: - Got ARRAY(0x40a7c028)()
./foo.pl: Mon Sep 17 14:57:02 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:02 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:02 2001: - Got ARRAY(0x40a7c160)()
./foo.pl: Mon Sep 17 14:57:02 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:02 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:12 2001: - Done sleeping
./foo.pl: Mon Sep 17 14:57:12 2001: - Got ARRAY(0x40a7c298)()
./foo.pl: Mon Sep 17 14:57:12 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:12 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:12 2001: - Got ARRAY(0x40a7c3d0)()
./foo.pl: Mon Sep 17 14:57:12 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:12 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:12 2001: - Got ARRAY(0x40a7d124)()
./foo.pl: Mon Sep 17 14:57:12 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:12 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:12 2001: - Got ARRAY(0x40a7d25c)()
./foo.pl: Mon Sep 17 14:57:12 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:12 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:12 2001: - Got ARRAY(0x40a7d394)()
./foo.pl: Mon Sep 17 14:57:12 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:12 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:12 2001: - Got ARRAY(0x40a7e0e8)()
./foo.pl: Mon Sep 17 14:57:12 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:12 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:12 2001: - Got ARRAY(0x40a7e220)()
./foo.pl: Mon Sep 17 14:57:12 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:12 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:12 2001: - Got ARRAY(0x40a7e358)()
./foo.pl: Mon Sep 17 14:57:12 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:12 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:12 2001: - Got ARRAY(0x40a7e8ac)()
./foo.pl: Mon Sep 17 14:57:12 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:12 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:12 2001: - Got ARRAY(0x40a7e9e4)()
./foo.pl: Mon Sep 17 14:57:12 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:12 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:12 2001: - Got ARRAY(0x40a7eb1c)()
./foo.pl: Mon Sep 17 14:57:12 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:12 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:12 2001: - Got ARRAY(0x40a7f870)()
./foo.pl: Mon Sep 17 14:57:12 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:12 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:12 2001: - Got ARRAY(0x40a7f9a8)()
./foo.pl: Mon Sep 17 14:57:12 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:12 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:12 2001: - Got ARRAY(0x40a7fae0)()
./foo.pl: Mon Sep 17 14:57:12 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:12 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:12 2001: - Got ARRAY(0x40a7fc2c)()
./foo.pl: Mon Sep 17 14:57:12 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:12 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:12 2001: - Got ARRAY(0x40a7fd64)()
./foo.pl: Mon Sep 17 14:57:12 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:12 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:12 2001: - Got ARRAY(0x40a7fe9c)()
./foo.pl: Mon Sep 17 14:57:12 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:12 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:12 2001: - Got ARRAY(0x40a7ffd4)()
./foo.pl: Mon Sep 17 14:57:12 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:12 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:12 2001: - Got ARRAY(0x40a81528)()
./foo.pl: Mon Sep 17 14:57:12 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:12 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:12 2001: - Got ARRAY(0x40a81660)()
./foo.pl: Mon Sep 17 14:57:12 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:12 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:12 2001: - Got ARRAY(0x40a81798)()
./foo.pl: Mon Sep 17 14:57:12 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:12 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:12 2001: - Got ARRAY(0x40a81cec)()
./foo.pl: Mon Sep 17 14:57:12 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:12 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:12 2001: - Got ARRAY(0x40a81e24)()
./foo.pl: Mon Sep 17 14:57:12 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:12 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:12 2001: - Got ARRAY(0x40a81f5c)()
./foo.pl: Mon Sep 17 14:57:12 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:12 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:12 2001: - Got ARRAY(0x40a824b0)()
./foo.pl: Mon Sep 17 14:57:12 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:12 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:12 2001: - Got ARRAY(0x40a825e8)()
./foo.pl: Mon Sep 17 14:57:12 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:12 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:12 2001: - Got ARRAY(0x40a82720)()
./foo.pl: Mon Sep 17 14:57:12 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:12 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:12 2001: - Got ARRAY(0x40a83474)()
./foo.pl: Mon Sep 17 14:57:12 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:12 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:12 2001: - Got ARRAY(0x40a835ac)()
./foo.pl: Mon Sep 17 14:57:12 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:12 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:12 2001: - Got ARRAY(0x40a836e4)()
./foo.pl: Mon Sep 17 14:57:12 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:12 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:12 2001: - Got ARRAY(0x40a83c38)()
./foo.pl: Mon Sep 17 14:57:12 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:12 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:12 2001: - Got ARRAY(0x40a83d70)()
./foo.pl: Mon Sep 17 14:57:12 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:12 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:12 2001: - Got ARRAY(0x40a83ea8)()
./foo.pl: Mon Sep 17 14:57:12 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:12 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:12 2001: - Got ARRAY(0x40a83fe0)()
./foo.pl: Mon Sep 17 14:57:12 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:12 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:12 2001: - Got ARRAY(0x40a85d34)()
./foo.pl: Mon Sep 17 14:57:12 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:12 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:12 2001: - Got ARRAY(0x40a85e6c)()
./foo.pl: Mon Sep 17 14:57:12 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:12 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:12 2001: - Got ARRAY(0x40a85fa4)()
./foo.pl: Mon Sep 17 14:57:12 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:12 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:12 2001: - Got ARRAY(0x40a864f8)()
./foo.pl: Mon Sep 17 14:57:12 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:12 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:12 2001: - Got ARRAY(0x40a86630)()
./foo.pl: Mon Sep 17 14:57:12 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:12 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:12 2001: - Got ARRAY(0x40a86768)()
./foo.pl: Mon Sep 17 14:57:12 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:12 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:12 2001: - Got ARRAY(0x40a874bc)()
./foo.pl: Mon Sep 17 14:57:12 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:12 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:12 2001: - Got ARRAY(0x40a875f4)()
./foo.pl: Mon Sep 17 14:57:12 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:12 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:12 2001: - Got ARRAY(0x40a8772c)()
./foo.pl: Mon Sep 17 14:57:12 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:12 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:12 2001: - Got ARRAY(0x40a87c80)()
./foo.pl: Mon Sep 17 14:57:12 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:12 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:12 2001: - Got ARRAY(0x40a87db8)()
./foo.pl: Mon Sep 17 14:57:12 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:12 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:12 2001: - Got ARRAY(0x40a87ef0)()
./foo.pl: Mon Sep 17 14:57:12 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:12 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:12 2001: - Got ARRAY(0x40a88c44)()
./foo.pl: Mon Sep 17 14:57:12 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:12 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:12 2001: - Got ARRAY(0x40a88d7c)()
./foo.pl: Mon Sep 17 14:57:12 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:12 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:12 2001: - Got ARRAY(0x40a88eb4)()
./foo.pl: Mon Sep 17 14:57:12 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:12 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:12 2001: - Got ARRAY(0x40a88fec)()
./foo.pl: Mon Sep 17 14:57:12 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:12 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:12 2001: - Got ARRAY(0x40a89948)()
./foo.pl: Mon Sep 17 14:57:12 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:12 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:12 2001: - Got ARRAY(0x40a89a80)()
./foo.pl: Mon Sep 17 14:57:12 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:12 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:12 2001: - Got ARRAY(0x40a89bb8)()
./foo.pl: Mon Sep 17 14:57:12 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:12 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:12 2001: - Got ARRAY(0x40a8a90c)()
./foo.pl: Mon Sep 17 14:57:12 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:12 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:12 2001: - Got ARRAY(0x40a8aa44)()
./foo.pl: Mon Sep 17 14:57:12 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:12 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:12 2001: - Got ARRAY(0x40a8ab7c)()
./foo.pl: Mon Sep 17 14:57:12 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:12 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:12 2001: - Got ARRAY(0x40a8b8d0)()
./foo.pl: Mon Sep 17 14:57:12 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:12 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:12 2001: - Got ARRAY(0x40a8ba08)()
./foo.pl: Mon Sep 17 14:57:12 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:12 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:12 2001: - Got ARRAY(0x40a8bb40)()
./foo.pl: Mon Sep 17 14:57:12 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:12 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:12 2001: - Got ARRAY(0x40a8c094)()
./foo.pl: Mon Sep 17 14:57:12 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:12 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:12 2001: - Got ARRAY(0x40a8c1cc)()
./foo.pl: Mon Sep 17 14:57:12 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:12 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:12 2001: - Got ARRAY(0x40a8c304)()
./foo.pl: Mon Sep 17 14:57:12 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:12 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:12 2001: - Got ARRAY(0x40a8d058)()
./foo.pl: Mon Sep 17 14:57:12 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:12 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:12 2001: - Got ARRAY(0x40a8d190)()
./foo.pl: Mon Sep 17 14:57:12 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:12 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:12 2001: - Got ARRAY(0x40a8d2c8)()
./foo.pl: Mon Sep 17 14:57:12 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:12 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:12 2001: - Got ARRAY(0x40a8e01c)()
./foo.pl: Mon Sep 17 14:57:12 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:12 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:12 2001: - Got ARRAY(0x40a8e154)()
./foo.pl: Mon Sep 17 14:57:12 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:12 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:12 2001: - Got ARRAY(0x40a8e28c)()
./foo.pl: Mon Sep 17 14:57:12 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:12 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:12 2001: - Got ARRAY(0x40a8e3c4)()
./foo.pl: Mon Sep 17 14:57:12 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:12 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:12 2001: - Got ARRAY(0x40a8f118)()
./foo.pl: Mon Sep 17 14:57:12 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:12 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:12 2001: - Got ARRAY(0x40a8f250)()
./foo.pl: Mon Sep 17 14:57:12 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:12 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:12 2001: - Got ARRAY(0x40a8f388)()
./foo.pl: Mon Sep 17 14:57:12 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:12 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:12 2001: - Got ARRAY(0x40a908dc)()
./foo.pl: Mon Sep 17 14:57:12 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:12 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:12 2001: - Got ARRAY(0x40a90a14)()
./foo.pl: Mon Sep 17 14:57:12 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:12 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:12 2001: - Got ARRAY(0x40a90b4c)()
./foo.pl: Mon Sep 17 14:57:12 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:12 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:12 2001: - Got ARRAY(0x40a910a0)()
./foo.pl: Mon Sep 17 14:57:12 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:12 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:12 2001: - Got ARRAY(0x40a911d8)()
./foo.pl: Mon Sep 17 14:57:12 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:12 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:12 2001: - Got ARRAY(0x40a91310)()
./foo.pl: Mon Sep 17 14:57:12 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:12 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:12 2001: - Got ARRAY(0x40a92064)()
./foo.pl: Mon Sep 17 14:57:12 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:12 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:12 2001: - Got ARRAY(0x40a9219c)()
./foo.pl: Mon Sep 17 14:57:12 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:12 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:12 2001: - Got ARRAY(0x40a922d4)()
./foo.pl: Mon Sep 17 14:57:13 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:13 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:13 2001: - Got ARRAY(0x40a93028)()
./foo.pl: Mon Sep 17 14:57:13 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:13 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:13 2001: - Got ARRAY(0x40a93160)()
./foo.pl: Mon Sep 17 14:57:13 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:13 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:13 2001: - Got ARRAY(0x40a93298)()
./foo.pl: Mon Sep 17 14:57:13 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:13 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:13 2001: - Got ARRAY(0x40a933d0)()
./foo.pl: Mon Sep 17 14:57:13 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:13 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:13 2001: - Got ARRAY(0x40a94124)()
./foo.pl: Mon Sep 17 14:57:13 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:13 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:13 2001: - Got ARRAY(0x40a9425c)()
./foo.pl: Mon Sep 17 14:57:13 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:13 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:13 2001: - Got ARRAY(0x40a94394)()
./foo.pl: Mon Sep 17 14:57:13 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:13 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:13 2001: - Got ARRAY(0x40a944e0)()
./foo.pl: Mon Sep 17 14:57:13 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:13 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:13 2001: - Got ARRAY(0x40a94618)()
./foo.pl: Mon Sep 17 14:57:13 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:13 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:13 2001: - Got ARRAY(0x40a94750)()
./foo.pl: Mon Sep 17 14:57:13 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:13 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:13 2001: - Got ARRAY(0x40a954a4)()
./foo.pl: Mon Sep 17 14:57:13 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:13 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:13 2001: - Got ARRAY(0x40a955dc)()
./foo.pl: Mon Sep 17 14:57:13 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:13 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:13 2001: - Got ARRAY(0x40a95714)()
./foo.pl: Mon Sep 17 14:57:13 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:13 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:13 2001: - Got ARRAY(0x40a95c68)()
./foo.pl: Mon Sep 17 14:57:13 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:13 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:13 2001: - Got ARRAY(0x40a95da0)()
./foo.pl: Mon Sep 17 14:57:13 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:13 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:13 2001: - Got ARRAY(0x40a95ed8)()
./foo.pl: Mon Sep 17 14:57:13 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:13 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:13 2001: - Got ARRAY(0x40a73c2c)()
./foo.pl: Mon Sep 17 14:57:13 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:13 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:13 2001: - Got ARRAY(0x40a73d64)()
./foo.pl: Mon Sep 17 14:57:13 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:13 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:13 2001: - Got ARRAY(0x40a73e9c)()
./foo.pl: Mon Sep 17 14:57:13 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:13 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:13 2001: - Got ARRAY(0x40a73fd4)()
./foo.pl: Mon Sep 17 14:57:13 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:13 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:13 2001: - Got ARRAY(0x40a98930)()
./foo.pl: Mon Sep 17 14:57:13 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:13 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:12 2001: - Sleeping
./foo.pl: Mon Sep 17 14:57:23 2001: - Done sleeping
./foo.pl: Mon Sep 17 14:57:23 2001: - Got ARRAY(0x40a98a68)()
./foo.pl: Mon Sep 17 14:57:23 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:23 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:23 2001: - Got ARRAY(0x40a98ba0)()
./foo.pl: Mon Sep 17 14:57:23 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:23 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:23 2001: - Got ARRAY(0x40a998f4)()
./foo.pl: Mon Sep 17 14:57:23 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:23 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:23 2001: - Got ARRAY(0x40a99a2c)()
./foo.pl: Mon Sep 17 14:57:23 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:23 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:23 2001: - Got ARRAY(0x40a99b64)()
./foo.pl: Mon Sep 17 14:57:23 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:23 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:23 2001: - Got ARRAY(0x40a9a0b8)()
./foo.pl: Mon Sep 17 14:57:23 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:23 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:23 2001: - Got ARRAY(0x40a9a1f0)()
./foo.pl: Mon Sep 17 14:57:23 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:23 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:23 2001: - Got ARRAY(0x40a9a328)()
./foo.pl: Mon Sep 17 14:57:23 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:23 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:23 2001: - Got ARRAY(0x40a9b07c)()
./foo.pl: Mon Sep 17 14:57:23 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:23 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:23 2001: - Got ARRAY(0x40a9b1b4)()
./foo.pl: Mon Sep 17 14:57:23 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:23 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:23 2001: - Got ARRAY(0x40a9b2ec)()
./foo.pl: Mon Sep 17 14:57:23 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:23 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:23 2001: - Got ARRAY(0x40a9c040)()
./foo.pl: Mon Sep 17 14:57:23 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:23 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:23 2001: - Got ARRAY(0x40a9c178)()
./foo.pl: Mon Sep 17 14:57:23 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:23 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:23 2001: - Got ARRAY(0x40a9c2b0)()
./foo.pl: Mon Sep 17 14:57:23 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:23 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:23 2001: - Got ARRAY(0x40a9c3e8)()
./foo.pl: Mon Sep 17 14:57:23 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:23 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:23 2001: - Got ARRAY(0x40a9d13c)()
./foo.pl: Mon Sep 17 14:57:23 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:23 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:23 2001: - Got ARRAY(0x40a9d274)()
./foo.pl: Mon Sep 17 14:57:23 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:23 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:23 2001: - Got ARRAY(0x40a9d3ac)()
./foo.pl: Mon Sep 17 14:57:23 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:23 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:23 2001: - Got ARRAY(0x40a9d900)()
./foo.pl: Mon Sep 17 14:57:23 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:23 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:23 2001: - Got ARRAY(0x40a9da38)()
./foo.pl: Mon Sep 17 14:57:23 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:23 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:23 2001: - Got ARRAY(0x40a9db70)()
./foo.pl: Mon Sep 17 14:57:23 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:23 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:23 2001: - Got ARRAY(0x40a9dcbc)()
./foo.pl: Mon Sep 17 14:57:23 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:23 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:23 2001: - Got ARRAY(0x40a9ddf4)()
./foo.pl: Mon Sep 17 14:57:23 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:23 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:23 2001: - Got ARRAY(0x40a9df2c)()
./foo.pl: Mon Sep 17 14:57:23 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:23 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:23 2001: - Got ARRAY(0x40a9e480)()
./foo.pl: Mon Sep 17 14:57:23 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:23 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:23 2001: - Got ARRAY(0x40a9e5b8)()
./foo.pl: Mon Sep 17 14:57:23 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:23 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:23 2001: - Got ARRAY(0x40a9e6f0)()
./foo.pl: Mon Sep 17 14:57:23 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:23 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:23 2001: - Got ARRAY(0x40a9fc44)()
./foo.pl: Mon Sep 17 14:57:23 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:23 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:23 2001: - Got ARRAY(0x40a9fd7c)()
./foo.pl: Mon Sep 17 14:57:23 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:23 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:23 2001: - Got ARRAY(0x40a9feb4)()
./foo.pl: Mon Sep 17 14:57:23 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:23 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:23 2001: - Got ARRAY(0x40a9ffec)()
./foo.pl: Mon Sep 17 14:57:23 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:23 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:23 2001: - Got ARRAY(0x40aa0540)()
./foo.pl: Mon Sep 17 14:57:23 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:23 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:23 2001: - Got ARRAY(0x40aa0678)()
./foo.pl: Mon Sep 17 14:57:23 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:23 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:23 2001: - Got ARRAY(0x40aa07b0)()
./foo.pl: Mon Sep 17 14:57:23 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:23 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:23 2001: - Got ARRAY(0x40aa1504)()
./foo.pl: Mon Sep 17 14:57:23 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:23 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:23 2001: - Got ARRAY(0x40aa163c)()
./foo.pl: Mon Sep 17 14:57:23 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:23 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:23 2001: - Got ARRAY(0x40aa1774)()
./foo.pl: Mon Sep 17 14:57:23 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:23 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:23 2001: - Got ARRAY(0x40aa24c8)()
./foo.pl: Mon Sep 17 14:57:23 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:23 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:23 2001: - Got ARRAY(0x40aa2600)()
./foo.pl: Mon Sep 17 14:57:23 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:23 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:23 2001: - Got ARRAY(0x40aa2738)()
./foo.pl: Mon Sep 17 14:57:23 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:23 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:23 2001: - Got ARRAY(0x40aa2c8c)()
./foo.pl: Mon Sep 17 14:57:23 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:23 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:23 2001: - Got ARRAY(0x40aa2dc4)()
./foo.pl: Mon Sep 17 14:57:23 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:23 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:23 2001: - Got ARRAY(0x40aa2efc)()
./foo.pl: Mon Sep 17 14:57:23 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:23 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:23 2001: - Got ARRAY(0x40aa4450)()
./foo.pl: Mon Sep 17 14:57:23 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:23 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:23 2001: - Got ARRAY(0x40aa4588)()
./foo.pl: Mon Sep 17 14:57:23 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:23 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:23 2001: - Got ARRAY(0x40aa46c0)()
./foo.pl: Mon Sep 17 14:57:23 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:23 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:23 2001: - Got ARRAY(0x40aa4c14)()
./foo.pl: Mon Sep 17 14:57:23 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:23 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:23 2001: - Got ARRAY(0x40aa4d4c)()
./foo.pl: Mon Sep 17 14:57:23 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:23 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:23 2001: - Got ARRAY(0x40aa4e84)()
./foo.pl: Mon Sep 17 14:57:23 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:23 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:23 2001: - Got ARRAY(0x40aa4fbc)()
./foo.pl: Mon Sep 17 14:57:23 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:23 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:23 2001: - Got ARRAY(0x40aa5d10)()
./foo.pl: Mon Sep 17 14:57:23 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:23 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:23 2001: - Got ARRAY(0x40aa5e48)()
./foo.pl: Mon Sep 17 14:57:23 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:23 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:23 2001: - Got ARRAY(0x40aa5f80)()
./foo.pl: Mon Sep 17 14:57:23 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:23 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:23 2001: - Got ARRAY(0x40aa64d4)()
./foo.pl: Mon Sep 17 14:57:23 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:23 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:23 2001: - Got ARRAY(0x40aa660c)()
./foo.pl: Mon Sep 17 14:57:23 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:23 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:23 2001: - Got ARRAY(0x40aa6744)()
./foo.pl: Mon Sep 17 14:57:23 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:23 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:23 2001: - Got ARRAY(0x40aa7c98)()
./foo.pl: Mon Sep 17 14:57:23 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:23 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:23 2001: - Got ARRAY(0x40aa7dd0)()
./foo.pl: Mon Sep 17 14:57:23 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:23 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:23 2001: - Got ARRAY(0x40aa7f08)()
./foo.pl: Mon Sep 17 14:57:23 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:23 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:23 2001: - Got ARRAY(0x40aa8864)()
./foo.pl: Mon Sep 17 14:57:23 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:23 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:23 2001: - Got ARRAY(0x40aa899c)()
./foo.pl: Mon Sep 17 14:57:23 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:23 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:23 2001: - Got ARRAY(0x40aa8ad4)()
./foo.pl: Mon Sep 17 14:57:23 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:23 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:23 2001: - Got ARRAY(0x40aa9028)()
./foo.pl: Mon Sep 17 14:57:23 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:23 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:23 2001: - Got ARRAY(0x40aa9160)()
./foo.pl: Mon Sep 17 14:57:23 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:23 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:23 2001: - Got ARRAY(0x40aa9298)()
./foo.pl: Mon Sep 17 14:57:23 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:23 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:23 2001: - Got ARRAY(0x40aa93d0)()
./foo.pl: Mon Sep 17 14:57:23 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:23 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:23 2001: - Got ARRAY(0x40aaa124)()
./foo.pl: Mon Sep 17 14:57:23 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:23 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:23 2001: - Got ARRAY(0x40aaa25c)()
./foo.pl: Mon Sep 17 14:57:23 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:23 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:23 2001: - Got ARRAY(0x40aaa394)()
./foo.pl: Mon Sep 17 14:57:23 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:23 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:23 2001: - Got ARRAY(0x40aab0e8)()
./foo.pl: Mon Sep 17 14:57:23 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:23 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:23 2001: - Got ARRAY(0x40aab220)()
./foo.pl: Mon Sep 17 14:57:23 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:23 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:23 2001: - Got ARRAY(0x40aab358)()
./foo.pl: Mon Sep 17 14:57:23 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:23 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:23 2001: - Got ARRAY(0x40aab8ac)()
./foo.pl: Mon Sep 17 14:57:23 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:23 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:23 2001: - Got ARRAY(0x40aab9e4)()
./foo.pl: Mon Sep 17 14:57:23 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:23 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:23 2001: - Got ARRAY(0x40aabb1c)()
./foo.pl: Mon Sep 17 14:57:23 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:23 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:23 2001: - Got ARRAY(0x40aad870)()
./foo.pl: Mon Sep 17 14:57:23 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:23 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:23 2001: - Got ARRAY(0x40aad9a8)()
./foo.pl: Mon Sep 17 14:57:23 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:23 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:23 2001: - Got ARRAY(0x40aadae0)()
./foo.pl: Mon Sep 17 14:57:23 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:23 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:23 2001: - Got ARRAY(0x40aae034)()
./foo.pl: Mon Sep 17 14:57:23 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:23 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:23 2001: - Got ARRAY(0x40aae16c)()
./foo.pl: Mon Sep 17 14:57:23 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:23 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:23 2001: - Got ARRAY(0x40aae2a4)()
./foo.pl: Mon Sep 17 14:57:23 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:23 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:23 2001: - Got ARRAY(0x40aae3dc)()
./foo.pl: Mon Sep 17 14:57:23 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:23 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:23 2001: - Got ARRAY(0x40aaf130)()
./foo.pl: Mon Sep 17 14:57:23 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:23 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:23 2001: - Got ARRAY(0x40aaf268)()
./foo.pl: Mon Sep 17 14:57:23 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:23 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:23 2001: - Got ARRAY(0x40aaf3a0)()
./foo.pl: Mon Sep 17 14:57:24 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:24 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:24 2001: - Got ARRAY(0x40aaf8f4)()
./foo.pl: Mon Sep 17 14:57:24 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:24 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:24 2001: - Got ARRAY(0x40aafa2c)()
./foo.pl: Mon Sep 17 14:57:24 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:24 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:24 2001: - Got ARRAY(0x40aafb64)()
./foo.pl: Mon Sep 17 14:57:24 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:24 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:24 2001: - Got ARRAY(0x40ab08b8)()
./foo.pl: Mon Sep 17 14:57:24 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:24 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:24 2001: - Got ARRAY(0x40ab09f0)()
./foo.pl: Mon Sep 17 14:57:24 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:24 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:24 2001: - Got ARRAY(0x40ab0b28)()
./foo.pl: Mon Sep 17 14:57:24 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:24 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:24 2001: - Got ARRAY(0x40ab187c)()
./foo.pl: Mon Sep 17 14:57:24 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:24 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:24 2001: - Got ARRAY(0x40ab19b4)()
./foo.pl: Mon Sep 17 14:57:24 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:24 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:24 2001: - Got ARRAY(0x40ab1aec)()
./foo.pl: Mon Sep 17 14:57:24 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:24 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:24 2001: - Got ARRAY(0x40ab1c38)()
./foo.pl: Mon Sep 17 14:57:24 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:24 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:24 2001: - Got ARRAY(0x40ab1d70)()
./foo.pl: Mon Sep 17 14:57:24 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:24 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:24 2001: - Got ARRAY(0x40ab1ea8)()
./foo.pl: Mon Sep 17 14:57:24 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:24 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:24 2001: - Got ARRAY(0x40ab1fe0)()
./foo.pl: Mon Sep 17 14:57:24 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:24 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:24 2001: - Got ARRAY(0x40ab2d34)()
./foo.pl: Mon Sep 17 14:57:24 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:24 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:24 2001: - Got ARRAY(0x40ab2e6c)()
./foo.pl: Mon Sep 17 14:57:24 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:24 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:24 2001: - Got ARRAY(0x40ab2fa4)()
./foo.pl: Mon Sep 17 14:57:24 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:24 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:24 2001: - Got ARRAY(0x40ab34f8)()
./foo.pl: Mon Sep 17 14:57:24 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:24 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:24 2001: - Got ARRAY(0x40ab3630)()
./foo.pl: Mon Sep 17 14:57:24 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:24 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:23 2001: - Sleeping
./foo.pl: Mon Sep 17 14:57:34 2001: - Done sleeping
./foo.pl: Mon Sep 17 14:57:34 2001: - Got ARRAY(0x40ab3768)()
./foo.pl: Mon Sep 17 14:57:34 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:34 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:34 2001: - Got ARRAY(0x40ab50c4)()
./foo.pl: Mon Sep 17 14:57:34 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:34 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:34 2001: - Got ARRAY(0x40ab51fc)()
./foo.pl: Mon Sep 17 14:57:34 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:34 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:34 2001: - Got ARRAY(0x40ab5334)()
./foo.pl: Mon Sep 17 14:57:34 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:34 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:34 2001: - Got ARRAY(0x40ab6088)()
./foo.pl: Mon Sep 17 14:57:34 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:34 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:34 2001: - Got ARRAY(0x40ab61c0)()
./foo.pl: Mon Sep 17 14:57:34 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:34 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:34 2001: - Got ARRAY(0x40ab62f8)()
./foo.pl: Mon Sep 17 14:57:34 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:34 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:34 2001: - Got ARRAY(0x40ab684c)()
./foo.pl: Mon Sep 17 14:57:34 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:34 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:34 2001: - Got ARRAY(0x40ab6984)()
./foo.pl: Mon Sep 17 14:57:34 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:34 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:34 2001: - Got ARRAY(0x40ab6abc)()
./foo.pl: Mon Sep 17 14:57:34 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:34 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:34 2001: - Got ARRAY(0x40ab6bf4)()
./foo.pl: Mon Sep 17 14:57:34 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:34 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:34 2001: - Got ARRAY(0x40ab7948)()
./foo.pl: Mon Sep 17 14:57:34 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:34 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:34 2001: - Got ARRAY(0x40ab7a80)()
./foo.pl: Mon Sep 17 14:57:34 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:34 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:34 2001: - Got ARRAY(0x40ab7bb8)()
./foo.pl: Mon Sep 17 14:57:34 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:34 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:34 2001: - Got ARRAY(0x40ab810c)()
./foo.pl: Mon Sep 17 14:57:34 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:34 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:34 2001: - Got ARRAY(0x40ab8244)()
./foo.pl: Mon Sep 17 14:57:34 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:34 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:34 2001: - Got ARRAY(0x40ab837c)()
./foo.pl: Mon Sep 17 14:57:34 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:34 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:34 2001: - Got ARRAY(0x40ab90d0)()
./foo.pl: Mon Sep 17 14:57:34 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:34 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:34 2001: - Got ARRAY(0x40ab9208)()
./foo.pl: Mon Sep 17 14:57:34 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:34 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:34 2001: - Got ARRAY(0x40ab9340)()
./foo.pl: Mon Sep 17 14:57:34 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:34 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:34 2001: - Got ARRAY(0x40aba48c)()
./foo.pl: Mon Sep 17 14:57:34 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:34 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:34 2001: - Got ARRAY(0x40aba5c4)()
./foo.pl: Mon Sep 17 14:57:34 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:34 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:34 2001: - Got ARRAY(0x40aba6fc)()
./foo.pl: Mon Sep 17 14:57:34 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:34 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:34 2001: - Got ARRAY(0x40abb450)()
./foo.pl: Mon Sep 17 14:57:34 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:34 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:34 2001: - Got ARRAY(0x40abb588)()
./foo.pl: Mon Sep 17 14:57:34 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:34 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:34 2001: - Got ARRAY(0x40abb6c0)()
./foo.pl: Mon Sep 17 14:57:34 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:34 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:34 2001: - Got ARRAY(0x40abc01c)()
./foo.pl: Mon Sep 17 14:57:34 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:34 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:34 2001: - Got ARRAY(0x40abc154)()
./foo.pl: Mon Sep 17 14:57:34 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:34 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:34 2001: - Got ARRAY(0x40abc28c)()
./foo.pl: Mon Sep 17 14:57:34 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:34 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:34 2001: - Got ARRAY(0x40abc3c4)()
./foo.pl: Mon Sep 17 14:57:34 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:34 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:34 2001: - Got ARRAY(0x40abc918)()
./foo.pl: Mon Sep 17 14:57:34 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:34 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:34 2001: - Got ARRAY(0x40abca50)()
./foo.pl: Mon Sep 17 14:57:34 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:34 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:34 2001: - Got ARRAY(0x40abcb88)()
./foo.pl: Mon Sep 17 14:57:34 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:34 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:34 2001: - Got ARRAY(0x40abe8dc)()
./foo.pl: Mon Sep 17 14:57:34 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:34 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:34 2001: - Got ARRAY(0x40abea14)()
./foo.pl: Mon Sep 17 14:57:34 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:34 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:34 2001: - Got ARRAY(0x40abeb4c)()
./foo.pl: Mon Sep 17 14:57:34 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:34 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:34 2001: - Got ARRAY(0x40abf0a0)()
./foo.pl: Mon Sep 17 14:57:34 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:34 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:34 2001: - Got ARRAY(0x40abf1d8)()
./foo.pl: Mon Sep 17 14:57:34 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:34 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:34 2001: - Got ARRAY(0x40abf310)()
./foo.pl: Mon Sep 17 14:57:34 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:34 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:34 2001: - Got ARRAY(0x40abf864)()
./foo.pl: Mon Sep 17 14:57:34 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:34 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:34 2001: - Got ARRAY(0x40abf99c)()
./foo.pl: Mon Sep 17 14:57:34 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:34 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:34 2001: - Got ARRAY(0x40abfad4)()
./foo.pl: Mon Sep 17 14:57:34 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:34 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:34 2001: - Got ARRAY(0x40ac0c20)()
./foo.pl: Mon Sep 17 14:57:34 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:34 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:34 2001: - Got ARRAY(0x40ac0d58)()
./foo.pl: Mon Sep 17 14:57:34 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:34 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:34 2001: - Got ARRAY(0x40ac0e90)()
./foo.pl: Mon Sep 17 14:57:34 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:34 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:34 2001: - Got ARRAY(0x40ac0fc8)()
./foo.pl: Mon Sep 17 14:57:34 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:34 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:34 2001: - Got ARRAY(0x40ac151c)()
./foo.pl: Mon Sep 17 14:57:34 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:34 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:34 2001: - Got ARRAY(0x40ac1654)()
./foo.pl: Mon Sep 17 14:57:34 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:34 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:34 2001: - Got ARRAY(0x40ac178c)()
./foo.pl: Mon Sep 17 14:57:34 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:34 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:34 2001: - Got ARRAY(0x40ac1ce0)()
./foo.pl: Mon Sep 17 14:57:34 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:34 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:34 2001: - Got ARRAY(0x40ac1e18)()
./foo.pl: Mon Sep 17 14:57:34 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:34 2001: - Sleeping
./foo.pl: Mon Sep 17 14:57:34 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:34 2001: - Got ARRAY(0x40ac1f50)()
./foo.pl: Mon Sep 17 14:57:34 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:34 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:34 2001: - Got ARRAY(0x40ac34a4)()
./foo.pl: Mon Sep 17 14:57:34 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:34 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:34 2001: - Got ARRAY(0x40ac35dc)()
./foo.pl: Mon Sep 17 14:57:34 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:34 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:34 2001: - Got ARRAY(0x40ac3714)()
./foo.pl: Mon Sep 17 14:57:34 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:34 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:34 2001: - Got ARRAY(0x40ac3c68)()
./foo.pl: Mon Sep 17 14:57:34 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:34 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:34 2001: - Got ARRAY(0x40ac3da0)()
./foo.pl: Mon Sep 17 14:57:34 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:34 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:34 2001: - Got ARRAY(0x40ac3ed8)()
./foo.pl: Mon Sep 17 14:57:34 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:34 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:34 2001: - Got ARRAY(0x40ac4c2c)()
./foo.pl: Mon Sep 17 14:57:34 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:34 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:34 2001: - Got ARRAY(0x40ac4d64)()
./foo.pl: Mon Sep 17 14:57:34 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:34 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:34 2001: - Got ARRAY(0x40ac4e9c)()
./foo.pl: Mon Sep 17 14:57:34 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:34 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:34 2001: - Got ARRAY(0x40ac4fd4)()
./foo.pl: Mon Sep 17 14:57:34 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:34 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:34 2001: - Got ARRAY(0x40ac5930)()
./foo.pl: Mon Sep 17 14:57:34 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:34 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:34 2001: - Got ARRAY(0x40ac5a68)()
./foo.pl: Mon Sep 17 14:57:34 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:34 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:34 2001: - Got ARRAY(0x40ac5ba0)()
./foo.pl: Mon Sep 17 14:57:34 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:34 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:34 2001: - Got ARRAY(0x40ac5cec)()
./foo.pl: Mon Sep 17 14:57:34 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:34 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:34 2001: - Got ARRAY(0x40ac5e24)()
./foo.pl: Mon Sep 17 14:57:34 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:34 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:34 2001: - Got ARRAY(0x40ac5f5c)()
./foo.pl: Mon Sep 17 14:57:34 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:34 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:34 2001: - Got ARRAY(0x40ac74b0)()
./foo.pl: Mon Sep 17 14:57:34 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:34 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:34 2001: - Got ARRAY(0x40ac75e8)()
./foo.pl: Mon Sep 17 14:57:34 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:34 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:34 2001: - Got ARRAY(0x40ac7720)()
./foo.pl: Mon Sep 17 14:57:34 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:34 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:34 2001: - Got ARRAY(0x40ac8c74)()
./foo.pl: Mon Sep 17 14:57:34 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:34 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:34 2001: - Got ARRAY(0x40ac8dac)()
./foo.pl: Mon Sep 17 14:57:34 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:34 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:34 2001: - Got ARRAY(0x40ac8ee4)()
./foo.pl: Mon Sep 17 14:57:34 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:34 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:34 2001: - Got ARRAY(0x40ac9c38)()
./foo.pl: Mon Sep 17 14:57:34 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:34 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:34 2001: - Got ARRAY(0x40ac9d70)()
./foo.pl: Mon Sep 17 14:57:34 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:34 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:34 2001: - Got ARRAY(0x40ac9ea8)()
./foo.pl: Mon Sep 17 14:57:34 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:34 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:34 2001: - Got ARRAY(0x40ac9fe0)()
./foo.pl: Mon Sep 17 14:57:34 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:34 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:34 2001: - Got ARRAY(0x40aca534)()
./foo.pl: Mon Sep 17 14:57:34 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:34 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:34 2001: - Got ARRAY(0x40aca66c)()
./foo.pl: Mon Sep 17 14:57:34 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:34 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:34 2001: - Got ARRAY(0x40aca7a4)()
./foo.pl: Mon Sep 17 14:57:34 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:34 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:34 2001: - Got ARRAY(0x40acbcf8)()
./foo.pl: Mon Sep 17 14:57:34 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:34 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:34 2001: - Got ARRAY(0x40acbe30)()
./foo.pl: Mon Sep 17 14:57:34 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:34 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:34 2001: - Got ARRAY(0x40acbf68)()
./foo.pl: Mon Sep 17 14:57:34 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:34 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:34 2001: - Got ARRAY(0x40acd0c4)()
./foo.pl: Mon Sep 17 14:57:34 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:34 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:34 2001: - Got ARRAY(0x40acd1fc)()
./foo.pl: Mon Sep 17 14:57:34 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:34 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:34 2001: - Got ARRAY(0x40acd334)()
./foo.pl: Mon Sep 17 14:57:34 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:34 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:34 2001: - Got ARRAY(0x40ace088)()
./foo.pl: Mon Sep 17 14:57:34 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:34 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:34 2001: - Got ARRAY(0x40ace1c0)()
./foo.pl: Mon Sep 17 14:57:34 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:34 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:34 2001: - Got ARRAY(0x40ace2f8)()
./foo.pl: Mon Sep 17 14:57:34 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:35 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:35 2001: - Got ARRAY(0x40ace84c)()
./foo.pl: Mon Sep 17 14:57:35 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:35 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:35 2001: - Got ARRAY(0x40ace984)()
./foo.pl: Mon Sep 17 14:57:35 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:35 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:35 2001: - Got ARRAY(0x40aceabc)()
./foo.pl: Mon Sep 17 14:57:35 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:35 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:35 2001: - Got ARRAY(0x40acebf4)()
./foo.pl: Mon Sep 17 14:57:35 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:35 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:35 2001: - Got ARRAY(0x40acf148)()
./foo.pl: Mon Sep 17 14:57:35 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:35 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:35 2001: - Got ARRAY(0x40acf280)()
./foo.pl: Mon Sep 17 14:57:35 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:35 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:35 2001: - Got ARRAY(0x40acf3b8)()
./foo.pl: Mon Sep 17 14:57:35 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:35 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:35 2001: - Got ARRAY(0x40ad010c)()
./foo.pl: Mon Sep 17 14:57:35 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:35 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:35 2001: - Got ARRAY(0x40ad0244)()
./foo.pl: Mon Sep 17 14:57:35 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:35 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:35 2001: - Got ARRAY(0x40ad037c)()
./foo.pl: Mon Sep 17 14:57:35 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:35 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:35 2001: - Got ARRAY(0x40ad04c8)()
./foo.pl: Mon Sep 17 14:57:35 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:35 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:35 2001: - Got ARRAY(0x40ad0600)()
./foo.pl: Mon Sep 17 14:57:35 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:35 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:44 2001: - Done sleeping
./foo.pl: Mon Sep 17 14:57:44 2001: - Got ARRAY(0x40ad0738)()
./foo.pl: Mon Sep 17 14:57:44 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:44 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:44 2001: - Got ARRAY(0x40ad148c)()
./foo.pl: Mon Sep 17 14:57:44 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:44 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:44 2001: - Got ARRAY(0x40ad15c4)()
./foo.pl: Mon Sep 17 14:57:44 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:44 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:44 2001: - Got ARRAY(0x40ad16fc)()
./foo.pl: Mon Sep 17 14:57:44 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:44 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:44 2001: - Got ARRAY(0x40ad3058)()
./foo.pl: Mon Sep 17 14:57:44 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:44 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:44 2001: - Got ARRAY(0x40ad3190)()
./foo.pl: Mon Sep 17 14:57:44 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:44 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:44 2001: - Got ARRAY(0x40ad32c8)()
./foo.pl: Mon Sep 17 14:57:44 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:44 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:44 2001: - Got ARRAY(0x40ad401c)()
./foo.pl: Mon Sep 17 14:57:44 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:44 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:44 2001: - Got ARRAY(0x40ad4154)()
./foo.pl: Mon Sep 17 14:57:44 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:44 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:44 2001: - Got ARRAY(0x40ad428c)()
./foo.pl: Mon Sep 17 14:57:44 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:44 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:44 2001: - Got ARRAY(0x40ad43c4)()
./foo.pl: Mon Sep 17 14:57:44 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:44 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:44 2001: - Got ARRAY(0x40ad5118)()
./foo.pl: Mon Sep 17 14:57:44 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:44 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:44 2001: - Got ARRAY(0x40ad5250)()
./foo.pl: Mon Sep 17 14:57:44 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:44 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:44 2001: - Got ARRAY(0x40ad5388)()
./foo.pl: Mon Sep 17 14:57:44 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:44 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:44 2001: - Got ARRAY(0x40ad60dc)()
./foo.pl: Mon Sep 17 14:57:44 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:44 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:44 2001: - Got ARRAY(0x40ad6214)()
./foo.pl: Mon Sep 17 14:57:44 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:44 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:44 2001: - Got ARRAY(0x40ad634c)()
./foo.pl: Mon Sep 17 14:57:44 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:44 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:44 2001: - Got ARRAY(0x40ad68a0)()
./foo.pl: Mon Sep 17 14:57:44 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:44 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:44 2001: - Got ARRAY(0x40ad69d8)()
./foo.pl: Mon Sep 17 14:57:44 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:44 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:44 2001: - Got ARRAY(0x40ad6b10)()
./foo.pl: Mon Sep 17 14:57:44 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:44 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:44 2001: - Got ARRAY(0x40ad7864)()
./foo.pl: Mon Sep 17 14:57:44 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:44 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:44 2001: - Got ARRAY(0x40ad799c)()
./foo.pl: Mon Sep 17 14:57:44 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:44 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:44 2001: - Got ARRAY(0x40ad7ad4)()
./foo.pl: Mon Sep 17 14:57:44 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:44 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:44 2001: - Got ARRAY(0x40ad8420)()
./foo.pl: Mon Sep 17 14:57:44 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:44 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:44 2001: - Got ARRAY(0x40ad8558)()
./foo.pl: Mon Sep 17 14:57:44 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:44 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:44 2001: - Got ARRAY(0x40ad8690)()
./foo.pl: Mon Sep 17 14:57:44 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:44 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:44 2001: - Got ARRAY(0x40ad87c8)()
./foo.pl: Mon Sep 17 14:57:44 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:44 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:44 2001: - Got ARRAY(0x40ad951c)()
./foo.pl: Mon Sep 17 14:57:44 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:44 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:44 2001: - Got ARRAY(0x40ad9654)()
./foo.pl: Mon Sep 17 14:57:44 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:44 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:44 2001: - Got ARRAY(0x40ad978c)()
./foo.pl: Mon Sep 17 14:57:44 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:44 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:44 2001: - Got ARRAY(0x40ada4e0)()
./foo.pl: Mon Sep 17 14:57:44 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:44 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:44 2001: - Got ARRAY(0x40ada618)()
./foo.pl: Mon Sep 17 14:57:44 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:44 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:44 2001: - Got ARRAY(0x40ada750)()
./foo.pl: Mon Sep 17 14:57:44 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:44 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:44 2001: - Got ARRAY(0x40adaca4)()
./foo.pl: Mon Sep 17 14:57:44 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:44 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:44 2001: - Got ARRAY(0x40adaddc)()
./foo.pl: Mon Sep 17 14:57:44 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:44 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:44 2001: - Got ARRAY(0x40adaf14)()
./foo.pl: Mon Sep 17 14:57:45 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:45 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:45 2001: - Got ARRAY(0x40adc070)()
./foo.pl: Mon Sep 17 14:57:45 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:45 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:45 2001: - Got ARRAY(0x40adc1a8)()
./foo.pl: Mon Sep 17 14:57:45 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:45 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:45 2001: - Got ARRAY(0x40adc2e0)()
./foo.pl: Mon Sep 17 14:57:45 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:45 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:45 2001: - Got ARRAY(0x40adc834)()
./foo.pl: Mon Sep 17 14:57:45 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:45 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:45 2001: - Got ARRAY(0x40adc96c)()
./foo.pl: Mon Sep 17 14:57:45 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:45 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:45 2001: - Got ARRAY(0x40adcaa4)()
./foo.pl: Mon Sep 17 14:57:45 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:45 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:45 2001: - Got ARRAY(0x40adcbdc)()
./foo.pl: Mon Sep 17 14:57:45 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:45 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:45 2001: - Got ARRAY(0x40add930)()
./foo.pl: Mon Sep 17 14:57:45 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:45 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:45 2001: - Got ARRAY(0x40adda68)()
./foo.pl: Mon Sep 17 14:57:45 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:45 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:45 2001: - Got ARRAY(0x40addba0)()
./foo.pl: Mon Sep 17 14:57:45 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:45 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:45 2001: - Got ARRAY(0x40adecec)()
./foo.pl: Mon Sep 17 14:57:45 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:45 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:45 2001: - Got ARRAY(0x40adee24)()
./foo.pl: Mon Sep 17 14:57:45 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:45 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:45 2001: - Got ARRAY(0x40adef5c)()
./foo.pl: Mon Sep 17 14:57:45 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:45 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:45 2001: - Got ARRAY(0x40a97cb0)()
./foo.pl: Mon Sep 17 14:57:45 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:45 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:45 2001: - Got ARRAY(0x40a97de8)()
./foo.pl: Mon Sep 17 14:57:45 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:45 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:45 2001: - Got ARRAY(0x40a97f20)()
./foo.pl: Mon Sep 17 14:57:45 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:45 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:45 2001: - Got ARRAY(0x40ae0c74)()
./foo.pl: Mon Sep 17 14:57:45 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:45 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:45 2001: - Got ARRAY(0x40ae0dac)()
./foo.pl: Mon Sep 17 14:57:45 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:45 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:45 2001: - Got ARRAY(0x40ae0ee4)()
./foo.pl: Mon Sep 17 14:57:45 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:45 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:45 2001: - Got ARRAY(0x40ae1438)()
./foo.pl: Mon Sep 17 14:57:45 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:45 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:45 2001: - Got ARRAY(0x40ae1570)()
./foo.pl: Mon Sep 17 14:57:45 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:45 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:45 2001: - Got ARRAY(0x40ae16a8)()
./foo.pl: Mon Sep 17 14:57:45 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:45 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:45 2001: - Sleeping
./foo.pl: Mon Sep 17 14:57:45 2001: - Got ARRAY(0x40ae17e0)()
./foo.pl: Mon Sep 17 14:57:45 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:45 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:45 2001: - Got ARRAY(0x40ae2534)()
./foo.pl: Mon Sep 17 14:57:45 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:45 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:45 2001: - Got ARRAY(0x40ae266c)()
./foo.pl: Mon Sep 17 14:57:45 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:45 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:45 2001: - Got ARRAY(0x40ae27a4)()
./foo.pl: Mon Sep 17 14:57:45 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:45 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:45 2001: - Got ARRAY(0x40ae3cf8)()
./foo.pl: Mon Sep 17 14:57:45 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:45 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:45 2001: - Got ARRAY(0x40ae3e30)()
./foo.pl: Mon Sep 17 14:57:45 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:45 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:45 2001: - Got ARRAY(0x40ae3f68)()
./foo.pl: Mon Sep 17 14:57:45 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:45 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:45 2001: - Got ARRAY(0x40ae48c4)()
./foo.pl: Mon Sep 17 14:57:45 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:45 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:45 2001: - Got ARRAY(0x40ae49fc)()
./foo.pl: Mon Sep 17 14:57:45 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:45 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:45 2001: - Got ARRAY(0x40ae4b34)()
./foo.pl: Mon Sep 17 14:57:45 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:45 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:45 2001: - Got ARRAY(0x40ae5888)()
./foo.pl: Mon Sep 17 14:57:45 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:45 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:45 2001: - Got ARRAY(0x40ae59c0)()
./foo.pl: Mon Sep 17 14:57:45 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:45 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:45 2001: - Got ARRAY(0x40ae5af8)()
./foo.pl: Mon Sep 17 14:57:45 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:45 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:45 2001: - Got ARRAY(0x40ae5c44)()
./foo.pl: Mon Sep 17 14:57:45 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:45 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:45 2001: - Got ARRAY(0x40ae5d7c)()
./foo.pl: Mon Sep 17 14:57:45 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:45 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:45 2001: - Got ARRAY(0x40ae5eb4)()
./foo.pl: Mon Sep 17 14:57:45 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:45 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:45 2001: - Got ARRAY(0x40ae5fec)()
./foo.pl: Mon Sep 17 14:57:45 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:45 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:45 2001: - Got ARRAY(0x40ae6d40)()
./foo.pl: Mon Sep 17 14:57:45 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:45 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:45 2001: - Got ARRAY(0x40ae6e78)()
./foo.pl: Mon Sep 17 14:57:45 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:45 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:45 2001: - Got ARRAY(0x40ae6fb0)()
./foo.pl: Mon Sep 17 14:57:45 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:45 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:45 2001: - Got ARRAY(0x40ae7d04)()
./foo.pl: Mon Sep 17 14:57:45 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:45 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:45 2001: - Got ARRAY(0x40ae7e3c)()
./foo.pl: Mon Sep 17 14:57:45 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:45 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:45 2001: - Got ARRAY(0x40ae7f74)()
./foo.pl: Mon Sep 17 14:57:45 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:45 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:45 2001: - Got ARRAY(0x40ae8cc8)()
./foo.pl: Mon Sep 17 14:57:45 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:45 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:45 2001: - Got ARRAY(0x40ae8e00)()
./foo.pl: Mon Sep 17 14:57:45 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:45 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:45 2001: - Got ARRAY(0x40ae8f38)()
./foo.pl: Mon Sep 17 14:57:45 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:45 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:45 2001: - Got ARRAY(0x40ae948c)()
./foo.pl: Mon Sep 17 14:57:45 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:45 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:45 2001: - Got ARRAY(0x40ae95c4)()
./foo.pl: Mon Sep 17 14:57:45 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:45 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:45 2001: - Got ARRAY(0x40ae96fc)()
./foo.pl: Mon Sep 17 14:57:45 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:45 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:45 2001: - Got ARRAY(0x40aeb058)()
./foo.pl: Mon Sep 17 14:57:45 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:45 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:45 2001: - Got ARRAY(0x40aeb190)()
./foo.pl: Mon Sep 17 14:57:45 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:45 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:45 2001: - Got ARRAY(0x40aeb2c8)()
./foo.pl: Mon Sep 17 14:57:45 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:45 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:45 2001: - Got ARRAY(0x40aec01c)()
./foo.pl: Mon Sep 17 14:57:45 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:45 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:45 2001: - Got ARRAY(0x40aec154)()
./foo.pl: Mon Sep 17 14:57:45 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:45 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:45 2001: - Got ARRAY(0x40aec28c)()
./foo.pl: Mon Sep 17 14:57:45 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:45 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:45 2001: - Got ARRAY(0x40aec3c4)()
./foo.pl: Mon Sep 17 14:57:45 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:45 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:45 2001: - Got ARRAY(0x40aed118)()
./foo.pl: Mon Sep 17 14:57:45 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:45 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:45 2001: - Got ARRAY(0x40aed250)()
./foo.pl: Mon Sep 17 14:57:45 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:45 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:45 2001: - Got ARRAY(0x40aed388)()
./foo.pl: Mon Sep 17 14:57:45 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:45 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:45 2001: - Got ARRAY(0x40aed8dc)()
./foo.pl: Mon Sep 17 14:57:45 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:45 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:45 2001: - Got ARRAY(0x40aeda14)()
./foo.pl: Mon Sep 17 14:57:45 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:45 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:45 2001: - Got ARRAY(0x40aedb4c)()
./foo.pl: Mon Sep 17 14:57:45 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:45 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:45 2001: - Got ARRAY(0x40aee8a0)()
./foo.pl: Mon Sep 17 14:57:45 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:45 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:45 2001: - Got ARRAY(0x40aee9d8)()
./foo.pl: Mon Sep 17 14:57:45 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:45 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:45 2001: - Got ARRAY(0x40aeeb10)()
./foo.pl: Mon Sep 17 14:57:45 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:45 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:55 2001: - Done sleeping
./foo.pl: Mon Sep 17 14:57:55 2001: - Got ARRAY(0x40aef064)()
./foo.pl: Mon Sep 17 14:57:55 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:55 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:55 2001: - Got ARRAY(0x40aef19c)()
./foo.pl: Mon Sep 17 14:57:55 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:55 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:55 2001: - Got ARRAY(0x40aef2d4)()
./foo.pl: Mon Sep 17 14:57:55 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:55 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:55 2001: - Got ARRAY(0x40af0828)()
./foo.pl: Mon Sep 17 14:57:55 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:55 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:55 2001: - Got ARRAY(0x40af0960)()
./foo.pl: Mon Sep 17 14:57:55 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:55 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:55 2001: - Got ARRAY(0x40af0a98)()
./foo.pl: Mon Sep 17 14:57:55 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:55 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:55 2001: - Got ARRAY(0x40af0bd0)()
./foo.pl: Mon Sep 17 14:57:55 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:55 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:55 2001: - Got ARRAY(0x40af1924)()
./foo.pl: Mon Sep 17 14:57:55 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:55 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:55 2001: - Got ARRAY(0x40af1a5c)()
./foo.pl: Mon Sep 17 14:57:55 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:55 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:55 2001: - Got ARRAY(0x40af1b94)()
./foo.pl: Mon Sep 17 14:57:55 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:55 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:55 2001: - Got ARRAY(0x40af20e8)()
./foo.pl: Mon Sep 17 14:57:55 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:55 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:55 2001: - Got ARRAY(0x40af2220)()
./foo.pl: Mon Sep 17 14:57:55 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:55 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:55 2001: - Got ARRAY(0x40af2358)()
./foo.pl: Mon Sep 17 14:57:55 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:55 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:55 2001: - Got ARRAY(0x40af30ac)()
./foo.pl: Mon Sep 17 14:57:55 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:55 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:55 2001: - Got ARRAY(0x40af31e4)()
./foo.pl: Mon Sep 17 14:57:55 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:55 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:55 2001: - Got ARRAY(0x40af331c)()
./foo.pl: Mon Sep 17 14:57:55 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:55 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:55 2001: - Got ARRAY(0x40af3870)()
./foo.pl: Mon Sep 17 14:57:55 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:55 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:55 2001: - Got ARRAY(0x40af39a8)()
./foo.pl: Mon Sep 17 14:57:55 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:55 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:55 2001: - Got ARRAY(0x40af3ae0)()
./foo.pl: Mon Sep 17 14:57:55 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:55 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:55 2001: - Got ARRAY(0x40af4034)()
./foo.pl: Mon Sep 17 14:57:55 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:55 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:55 2001: - Got ARRAY(0x40af416c)()
./foo.pl: Mon Sep 17 14:57:55 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:55 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:55 2001: - Got ARRAY(0x40af42a4)()
./foo.pl: Mon Sep 17 14:57:55 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:55 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:55 2001: - Got ARRAY(0x40af43dc)()
./foo.pl: Mon Sep 17 14:57:55 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:55 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:55 2001: - Got ARRAY(0x40af5930)()
./foo.pl: Mon Sep 17 14:57:55 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:55 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:55 2001: - Got ARRAY(0x40af5a68)()
./foo.pl: Mon Sep 17 14:57:55 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:55 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:55 2001: - Got ARRAY(0x40af5ba0)()
./foo.pl: Mon Sep 17 14:57:55 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:55 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:55 2001: - Got ARRAY(0x40af64ec)()
./foo.pl: Mon Sep 17 14:57:55 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:55 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:55 2001: - Got ARRAY(0x40af6624)()
./foo.pl: Mon Sep 17 14:57:55 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:55 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:55 2001: - Got ARRAY(0x40af675c)()
./foo.pl: Mon Sep 17 14:57:55 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:55 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:55 2001: - Got ARRAY(0x40af6cb0)()
./foo.pl: Mon Sep 17 14:57:55 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:55 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:55 2001: - Got ARRAY(0x40af6de8)()
./foo.pl: Mon Sep 17 14:57:55 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:55 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:55 2001: - Got ARRAY(0x40af6f20)()
./foo.pl: Mon Sep 17 14:57:55 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:55 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:55 2001: - Got ARRAY(0x40af7c74)()
./foo.pl: Mon Sep 17 14:57:55 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:55 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:55 2001: - Got ARRAY(0x40af7dac)()
./foo.pl: Mon Sep 17 14:57:55 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:55 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:55 2001: - Got ARRAY(0x40af7ee4)()
./foo.pl: Mon Sep 17 14:57:55 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:55 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:55 2001: - Got ARRAY(0x40af8c38)()
./foo.pl: Mon Sep 17 14:57:55 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:55 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:55 2001: - Got ARRAY(0x40af8d70)()
./foo.pl: Mon Sep 17 14:57:55 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:55 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:55 2001: - Got ARRAY(0x40af8ea8)()
./foo.pl: Mon Sep 17 14:57:55 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:55 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:55 2001: - Got ARRAY(0x40af8fe0)()
./foo.pl: Mon Sep 17 14:57:55 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:55 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:55 2001: - Got ARRAY(0x40afa534)()
./foo.pl: Mon Sep 17 14:57:55 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:55 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:55 2001: - Got ARRAY(0x40afa66c)()
./foo.pl: Mon Sep 17 14:57:55 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:55 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:55 2001: - Got ARRAY(0x40afa7a4)()
./foo.pl: Mon Sep 17 14:57:55 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:55 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:55 2001: - Got ARRAY(0x40afa900)()
./foo.pl: Mon Sep 17 14:57:55 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:55 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:55 2001: - Got ARRAY(0x40afaa38)()
./foo.pl: Mon Sep 17 14:57:55 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:55 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:55 2001: - Got ARRAY(0x40afab70)()
./foo.pl: Mon Sep 17 14:57:55 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:55 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:55 2001: - Got ARRAY(0x40afb0c4)()
./foo.pl: Mon Sep 17 14:57:55 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:55 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:55 2001: - Got ARRAY(0x40afb1fc)()
./foo.pl: Mon Sep 17 14:57:55 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:55 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:55 2001: - Got ARRAY(0x40afb334)()
./foo.pl: Mon Sep 17 14:57:55 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:55 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:55 2001: - Got ARRAY(0x40afc480)()
./foo.pl: Mon Sep 17 14:57:55 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:55 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:55 2001: - Got ARRAY(0x40afc5b8)()
./foo.pl: Mon Sep 17 14:57:55 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:55 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:55 2001: - Got ARRAY(0x40afc6f0)()
./foo.pl: Mon Sep 17 14:57:55 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:55 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:55 2001: - Got ARRAY(0x40afdc44)()
./foo.pl: Mon Sep 17 14:57:55 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:55 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:55 2001: - Got ARRAY(0x40afdd7c)()
./foo.pl: Mon Sep 17 14:57:55 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:55 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:55 2001: - Got ARRAY(0x40afdeb4)()
./foo.pl: Mon Sep 17 14:57:55 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:55 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:55 2001: - Got ARRAY(0x40afdfec)()
./foo.pl: Mon Sep 17 14:57:55 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:55 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:55 2001: - Got ARRAY(0x40afed40)()
./foo.pl: Mon Sep 17 14:57:55 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:55 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:55 2001: - Got ARRAY(0x40afee78)()
./foo.pl: Mon Sep 17 14:57:55 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:55 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:55 2001: - Got ARRAY(0x40afefb0)()
./foo.pl: Mon Sep 17 14:57:55 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:55 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:55 2001: - Got ARRAY(0x40affd04)()
./foo.pl: Mon Sep 17 14:57:55 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:55 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:55 2001: - Got ARRAY(0x40affe3c)()
./foo.pl: Mon Sep 17 14:57:55 2001: - Sleeping
./foo.pl: Mon Sep 17 14:57:55 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:55 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:55 2001: - Got ARRAY(0x40afff74)()
./foo.pl: Mon Sep 17 14:57:55 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:55 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:55 2001: - Got ARRAY(0x40b00cc8)()
./foo.pl: Mon Sep 17 14:57:55 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:55 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:55 2001: - Got ARRAY(0x40b00e00)()
./foo.pl: Mon Sep 17 14:57:55 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:55 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:55 2001: - Got ARRAY(0x40b00f38)()
./foo.pl: Mon Sep 17 14:57:55 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:55 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:55 2001: - Got ARRAY(0x40b01c8c)()
./foo.pl: Mon Sep 17 14:57:55 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:55 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:55 2001: - Got ARRAY(0x40b01dc4)()
./foo.pl: Mon Sep 17 14:57:55 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:55 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:55 2001: - Got ARRAY(0x40b01efc)()
./foo.pl: Mon Sep 17 14:57:55 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:55 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:55 2001: - Got ARRAY(0x40b02858)()
./foo.pl: Mon Sep 17 14:57:55 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:55 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:55 2001: - Got ARRAY(0x40b02990)()
./foo.pl: Mon Sep 17 14:57:55 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:55 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:55 2001: - Got ARRAY(0x40b02ac8)()
./foo.pl: Mon Sep 17 14:57:55 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:55 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:55 2001: - Got ARRAY(0x40b0481c)()
./foo.pl: Mon Sep 17 14:57:55 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:55 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:55 2001: - Got ARRAY(0x40b04954)()
./foo.pl: Mon Sep 17 14:57:55 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:55 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:55 2001: - Got ARRAY(0x40b04a8c)()
./foo.pl: Mon Sep 17 14:57:55 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:55 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:55 2001: - Got ARRAY(0x40b04bc4)()
./foo.pl: Mon Sep 17 14:57:55 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:55 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:55 2001: - Got ARRAY(0x40b05118)()
./foo.pl: Mon Sep 17 14:57:55 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:55 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:55 2001: - Got ARRAY(0x40b05250)()
./foo.pl: Mon Sep 17 14:57:55 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:55 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:55 2001: - Got ARRAY(0x40b05388)()
./foo.pl: Mon Sep 17 14:57:55 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:55 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:55 2001: - Got ARRAY(0x40b054d4)()
./foo.pl: Mon Sep 17 14:57:55 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:55 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:55 2001: - Got ARRAY(0x40b0560c)()
./foo.pl: Mon Sep 17 14:57:55 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:55 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:55 2001: - Got ARRAY(0x40b05744)()
./foo.pl: Mon Sep 17 14:57:55 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:55 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:55 2001: - Got ARRAY(0x40b05c98)()
./foo.pl: Mon Sep 17 14:57:55 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:55 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:55 2001: - Got ARRAY(0x40b05dd0)()
./foo.pl: Mon Sep 17 14:57:55 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:55 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:55 2001: - Got ARRAY(0x40b05f08)()
./foo.pl: Mon Sep 17 14:57:55 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:55 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:55 2001: - Got ARRAY(0x40b06c5c)()
./foo.pl: Mon Sep 17 14:57:55 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:55 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:56 2001: - Got ARRAY(0x40b06d94)()
./foo.pl: Mon Sep 17 14:57:56 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:56 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:56 2001: - Got ARRAY(0x40b06ecc)()
./foo.pl: Mon Sep 17 14:57:56 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:56 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:56 2001: - Got ARRAY(0x40b07420)()
./foo.pl: Mon Sep 17 14:57:56 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:56 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:56 2001: - Got ARRAY(0x40b07558)()
./foo.pl: Mon Sep 17 14:57:56 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:56 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:56 2001: - Got ARRAY(0x40b07690)()
./foo.pl: Mon Sep 17 14:57:56 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:56 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:56 2001: - Got ARRAY(0x40b077c8)()
./foo.pl: Mon Sep 17 14:57:56 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:56 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:56 2001: - Got ARRAY(0x40b09124)()
./foo.pl: Mon Sep 17 14:57:56 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:56 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:56 2001: - Got ARRAY(0x40b0925c)()
./foo.pl: Mon Sep 17 14:57:56 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:56 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:56 2001: - Got ARRAY(0x40b09394)()
./foo.pl: Mon Sep 17 14:57:56 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:56 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:56 2001: - Got ARRAY(0x40b098e8)()
./foo.pl: Mon Sep 17 14:57:56 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:56 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:56 2001: - Got ARRAY(0x40b09a20)()
./foo.pl: Mon Sep 17 14:57:56 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:56 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:56 2001: - Got ARRAY(0x40b09b58)()
./foo.pl: Mon Sep 17 14:57:56 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:56 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:56 2001: - Got ARRAY(0x40b0a8ac)()
./foo.pl: Mon Sep 17 14:57:56 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:56 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:56 2001: - Got ARRAY(0x40b0a9e4)()
./foo.pl: Mon Sep 17 14:57:56 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:56 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:56 2001: - Got ARRAY(0x40b0ab1c)()
./foo.pl: Mon Sep 17 14:57:56 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:56 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:56 2001: - Got ARRAY(0x40b0b070)()
./foo.pl: Mon Sep 17 14:57:56 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:56 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:56 2001: - Got ARRAY(0x40b0b1a8)()
./foo.pl: Mon Sep 17 14:57:56 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:56 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:56 2001: - Got ARRAY(0x40b0b2e0)()
./foo.pl: Mon Sep 17 14:57:56 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:56 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:56 2001: - Got ARRAY(0x40b0c834)()
./foo.pl: Mon Sep 17 14:57:56 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:56 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:56 2001: - Got ARRAY(0x40b0c96c)()
./foo.pl: Mon Sep 17 14:57:56 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:57:56 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:05 2001: - Done sleeping
./foo.pl: Mon Sep 17 14:58:05 2001: - Got ARRAY(0x40b0caa4)()
./foo.pl: Mon Sep 17 14:58:05 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:05 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:05 2001: - Got ARRAY(0x40b0cbdc)()
./foo.pl: Mon Sep 17 14:58:05 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:05 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:05 2001: - Got ARRAY(0x40b0d930)()
./foo.pl: Mon Sep 17 14:58:05 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:05 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:05 2001: - Got ARRAY(0x40b0da68)()
./foo.pl: Mon Sep 17 14:58:05 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:05 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:05 2001: - Got ARRAY(0x40b0dba0)()
./foo.pl: Mon Sep 17 14:58:05 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:05 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:05 2001: - Got ARRAY(0x40b0e4ec)()
./foo.pl: Mon Sep 17 14:58:05 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:05 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:05 2001: - Got ARRAY(0x40b0e624)()
./foo.pl: Mon Sep 17 14:58:05 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:05 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:05 2001: - Got ARRAY(0x40b0e75c)()
./foo.pl: Mon Sep 17 14:58:05 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:05 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:05 2001: - Got ARRAY(0x40b0f0b8)()
./foo.pl: Mon Sep 17 14:58:05 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:05 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:05 2001: - Got ARRAY(0x40b0f1f0)()
./foo.pl: Mon Sep 17 14:58:05 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:05 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:05 2001: - Got ARRAY(0x40b0f328)()
./foo.pl: Mon Sep 17 14:58:05 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:05 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:05 2001: - Got ARRAY(0x40b0f87c)()
./foo.pl: Mon Sep 17 14:58:05 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:05 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:05 2001: - Got ARRAY(0x40b0f9b4)()
./foo.pl: Mon Sep 17 14:58:05 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:05 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:05 2001: - Got ARRAY(0x40b0faec)()
./foo.pl: Mon Sep 17 14:58:05 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:05 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:05 2001: - Got ARRAY(0x40b10840)()
./foo.pl: Mon Sep 17 14:58:05 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:05 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:05 2001: - Got ARRAY(0x40b10978)()
./foo.pl: Mon Sep 17 14:58:05 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:05 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:05 2001: - Got ARRAY(0x40b10ab0)()
./foo.pl: Mon Sep 17 14:58:05 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:05 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:05 2001: - Got ARRAY(0x40b10be8)()
./foo.pl: Mon Sep 17 14:58:05 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:05 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:05 2001: - Got ARRAY(0x40b1193c)()
./foo.pl: Mon Sep 17 14:58:05 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:05 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:05 2001: - Got ARRAY(0x40b11a74)()
./foo.pl: Mon Sep 17 14:58:05 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:05 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:05 2001: - Got ARRAY(0x40b11bac)()
./foo.pl: Mon Sep 17 14:58:05 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:05 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:05 2001: - Got ARRAY(0x40b12100)()
./foo.pl: Mon Sep 17 14:58:05 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:05 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:05 2001: - Got ARRAY(0x40b12238)()
./foo.pl: Mon Sep 17 14:58:05 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:05 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:05 2001: - Got ARRAY(0x40b12370)()
./foo.pl: Mon Sep 17 14:58:06 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:06 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:06 2001: - Got ARRAY(0x40b128c4)()
./foo.pl: Mon Sep 17 14:58:06 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:06 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:06 2001: - Got ARRAY(0x40b129fc)()
./foo.pl: Mon Sep 17 14:58:06 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:06 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:06 2001: - Got ARRAY(0x40b12b34)()
./foo.pl: Mon Sep 17 14:58:06 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:06 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:06 2001: - Got ARRAY(0x40b13c80)()
./foo.pl: Mon Sep 17 14:58:06 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:06 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:06 2001: - Got ARRAY(0x40b13db8)()
./foo.pl: Mon Sep 17 14:58:06 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:06 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:06 2001: - Got ARRAY(0x40b13ef0)()
./foo.pl: Mon Sep 17 14:58:06 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:06 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:06 2001: - Got ARRAY(0x40b15444)()
./foo.pl: Mon Sep 17 14:58:06 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:06 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:06 2001: - Got ARRAY(0x40b1557c)()
./foo.pl: Mon Sep 17 14:58:06 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:06 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:06 2001: - Got ARRAY(0x40b156b4)()
./foo.pl: Mon Sep 17 14:58:06 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:06 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:06 2001: - Got ARRAY(0x40b157ec)()
./foo.pl: Mon Sep 17 14:58:06 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:06 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:06 2001: - Got ARRAY(0x40b15d40)()
./foo.pl: Mon Sep 17 14:58:06 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:06 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:06 2001: - Got ARRAY(0x40b15e78)()
./foo.pl: Mon Sep 17 14:58:06 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:06 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:06 2001: - Got ARRAY(0x40b15fb0)()
./foo.pl: Mon Sep 17 14:58:06 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:06 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:06 2001: - Got ARRAY(0x40b17504)()
./foo.pl: Mon Sep 17 14:58:06 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:06 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:06 2001: - Got ARRAY(0x40b1763c)()
./foo.pl: Mon Sep 17 14:58:06 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:06 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:06 2001: - Got ARRAY(0x40b17774)()
./foo.pl: Mon Sep 17 14:58:06 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:06 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:06 2001: - Got ARRAY(0x40b17cc8)()
./foo.pl: Mon Sep 17 14:58:06 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:06 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:06 2001: - Got ARRAY(0x40b17e00)()
./foo.pl: Mon Sep 17 14:58:06 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:06 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:06 2001: - Got ARRAY(0x40b17f38)()
./foo.pl: Mon Sep 17 14:58:06 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:06 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:06 2001: - Got ARRAY(0x40b18c8c)()
./foo.pl: Mon Sep 17 14:58:06 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:06 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:06 2001: - Got ARRAY(0x40b18dc4)()
./foo.pl: Mon Sep 17 14:58:06 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:06 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:06 2001: - Got ARRAY(0x40b18efc)()
./foo.pl: Mon Sep 17 14:58:06 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:06 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:06 2001: - Got ARRAY(0x40b19858)()
./foo.pl: Mon Sep 17 14:58:06 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:06 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:06 2001: - Got ARRAY(0x40b19990)()
./foo.pl: Mon Sep 17 14:58:06 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:06 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:06 2001: - Got ARRAY(0x40b19ac8)()
./foo.pl: Mon Sep 17 14:58:06 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:06 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:06 2001: - Got ARRAY(0x40b1a414)()
./foo.pl: Mon Sep 17 14:58:06 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:06 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:06 2001: - Got ARRAY(0x40b1a54c)()
./foo.pl: Mon Sep 17 14:58:06 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:06 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:06 2001: - Got ARRAY(0x40b1a684)()
./foo.pl: Mon Sep 17 14:58:06 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:06 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:06 2001: - Got ARRAY(0x40b1a7bc)()
./foo.pl: Mon Sep 17 14:58:06 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:06 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:06 2001: - Got ARRAY(0x40b1bd10)()
./foo.pl: Mon Sep 17 14:58:06 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:06 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:06 2001: - Got ARRAY(0x40b1be48)()
./foo.pl: Mon Sep 17 14:58:06 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:06 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:06 2001: - Got ARRAY(0x40b1bf80)()
./foo.pl: Mon Sep 17 14:58:06 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:06 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:06 2001: - Got ARRAY(0x40b1c4d4)()
./foo.pl: Mon Sep 17 14:58:06 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:06 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:06 2001: - Got ARRAY(0x40b1c60c)()
./foo.pl: Mon Sep 17 14:58:06 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:06 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:06 2001: - Got ARRAY(0x40b1c744)()
./foo.pl: Mon Sep 17 14:58:06 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:06 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:06 2001: - Got ARRAY(0x40b1cc98)()
./foo.pl: Mon Sep 17 14:58:06 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:06 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:06 2001: - Got ARRAY(0x40b1cdd0)()
./foo.pl: Mon Sep 17 14:58:06 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:06 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:06 2001: - Got ARRAY(0x40b1cf08)()
./foo.pl: Mon Sep 17 14:58:06 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:06 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:06 2001: - Got ARRAY(0x40b1e45c)()
./foo.pl: Mon Sep 17 14:58:06 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:06 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:06 2001: - Got ARRAY(0x40b1e594)()
./foo.pl: Mon Sep 17 14:58:06 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:06 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:06 2001: - Got ARRAY(0x40b1e6cc)()
./foo.pl: Mon Sep 17 14:58:06 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:06 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:06 2001: - Got ARRAY(0x40b1ec20)()
./foo.pl: Mon Sep 17 14:58:06 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:06 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:06 2001: - Got ARRAY(0x40b1ed58)()
./foo.pl: Mon Sep 17 14:58:06 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:06 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:06 2001: - Got ARRAY(0x40b1ee90)()
./foo.pl: Mon Sep 17 14:58:06 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:06 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:06 2001: - Got ARRAY(0x40b1efc8)()
./foo.pl: Mon Sep 17 14:58:06 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:06 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:06 2001: - Got ARRAY(0x40b20924)()
./foo.pl: Mon Sep 17 14:58:06 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:06 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:06 2001: - Got ARRAY(0x40b20a5c)()
./foo.pl: Mon Sep 17 14:58:06 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:06 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:06 2001: - Got ARRAY(0x40b20b94)()
./foo.pl: Mon Sep 17 14:58:06 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:06 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:06 2001: - Got ARRAY(0x40b210e8)()
./foo.pl: Mon Sep 17 14:58:06 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:06 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:06 2001: - Got ARRAY(0x40b21220)()
./foo.pl: Mon Sep 17 14:58:06 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:06 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:06 2001: - Got ARRAY(0x40b21358)()
./foo.pl: Mon Sep 17 14:58:06 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:06 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:06 2001: - Got ARRAY(0x40b220ac)()
./foo.pl: Mon Sep 17 14:58:06 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:06 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:06 2001: - Got ARRAY(0x40b221e4)()
./foo.pl: Mon Sep 17 14:58:06 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:06 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:06 2001: - Got ARRAY(0x40b2231c)()
./foo.pl: Mon Sep 17 14:58:06 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:06 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:06 2001: - Got ARRAY(0x40b23070)()
./foo.pl: Mon Sep 17 14:58:06 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:06 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:06 2001: - Got ARRAY(0x40b231a8)()
./foo.pl: Mon Sep 17 14:58:06 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:06 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:06 2001: - Got ARRAY(0x40b232e0)()
./foo.pl: Mon Sep 17 14:58:06 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:06 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:06 2001: - Got ARRAY(0x40b2342c)()
./foo.pl: Mon Sep 17 14:58:06 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:06 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:06 2001: - Got ARRAY(0x40b23564)()
./foo.pl: Mon Sep 17 14:58:06 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:06 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:06 2001: - Got ARRAY(0x40b2369c)()
./foo.pl: Mon Sep 17 14:58:06 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:06 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:06 2001: - Got ARRAY(0x40b237d4)()
./foo.pl: Mon Sep 17 14:58:06 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:06 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:06 2001: - Got ARRAY(0x40b24528)()
./foo.pl: Mon Sep 17 14:58:06 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:06 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:06 2001: - Got ARRAY(0x40b24660)()
./foo.pl: Mon Sep 17 14:58:06 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:06 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:06 2001: - Got ARRAY(0x40b24798)()
./foo.pl: Mon Sep 17 14:58:06 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:06 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:06 2001: - Got ARRAY(0x40b250f4)()
./foo.pl: Mon Sep 17 14:58:06 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:06 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:06 2001: - Got ARRAY(0x40b2522c)()
./foo.pl: Mon Sep 17 14:58:06 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:06 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:06 2001: - Got ARRAY(0x40b25364)()
./foo.pl: Mon Sep 17 14:58:06 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:06 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:06 2001: - Got ARRAY(0x40b25cb0)()
./foo.pl: Mon Sep 17 14:58:06 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:06 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:06 2001: - Got ARRAY(0x40b25de8)()
./foo.pl: Mon Sep 17 14:58:06 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:06 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:06 2001: - Got ARRAY(0x40b25f20)()
./foo.pl: Mon Sep 17 14:58:06 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:06 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:06 2001: - Got ARRAY(0x40b26c74)()
./foo.pl: Mon Sep 17 14:58:06 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:06 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:06 2001: - Got ARRAY(0x40b26dac)()
./foo.pl: Mon Sep 17 14:58:06 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:06 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:06 2001: - Got ARRAY(0x40b26ee4)()
./foo.pl: Mon Sep 17 14:58:06 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:06 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:06 2001: - Got ARRAY(0x40b27c38)()
./foo.pl: Mon Sep 17 14:58:06 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:06 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:06 2001: - Got ARRAY(0x40b27d70)()
./foo.pl: Mon Sep 17 14:58:06 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:06 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:06 2001: - Got ARRAY(0x40b27ea8)()
./foo.pl: Mon Sep 17 14:58:06 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:06 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:06 2001: - Got ARRAY(0x40b27fe0)()
./foo.pl: Mon Sep 17 14:58:06 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:06 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:06 2001: - Got ARRAY(0x40b28d34)()
./foo.pl: Mon Sep 17 14:58:06 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:06 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:06 2001: - Got ARRAY(0x40b28e6c)()
./foo.pl: Mon Sep 17 14:58:06 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:06 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:06 2001: - Got ARRAY(0x40b28fa4)()
./foo.pl: Mon Sep 17 14:58:06 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:06 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:06 2001: - Sleeping
./foo.pl: Mon Sep 17 14:58:16 2001: - Done sleeping
./foo.pl: Mon Sep 17 14:58:16 2001: - Got ARRAY(0x40b2a4f8)()
./foo.pl: Mon Sep 17 14:58:16 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:16 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:16 2001: - Got ARRAY(0x40b2a630)()
./foo.pl: Mon Sep 17 14:58:16 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:16 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:16 2001: - Got ARRAY(0x40b2a768)()
./foo.pl: Mon Sep 17 14:58:16 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:16 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:16 2001: - Got ARRAY(0x40b2b4bc)()
./foo.pl: Mon Sep 17 14:58:16 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:16 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:16 2001: - Got ARRAY(0x40b2b5f4)()
./foo.pl: Mon Sep 17 14:58:16 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:16 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:16 2001: - Got ARRAY(0x40b2b72c)()
./foo.pl: Mon Sep 17 14:58:16 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:16 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:16 2001: - Got ARRAY(0x40b2c888)()
./foo.pl: Mon Sep 17 14:58:16 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:16 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:16 2001: - Got ARRAY(0x40b2c9c0)()
./foo.pl: Mon Sep 17 14:58:16 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:16 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:16 2001: - Got ARRAY(0x40b2caf8)()
./foo.pl: Mon Sep 17 14:58:16 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:16 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:16 2001: - Got ARRAY(0x40b2d04c)()
./foo.pl: Mon Sep 17 14:58:16 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:16 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:16 2001: - Got ARRAY(0x40b2d184)()
./foo.pl: Mon Sep 17 14:58:16 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:16 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:16 2001: - Got ARRAY(0x40b2d2bc)()
./foo.pl: Mon Sep 17 14:58:16 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:16 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:16 2001: - Got ARRAY(0x40b2d3f4)()
./foo.pl: Mon Sep 17 14:58:16 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:16 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:16 2001: - Got ARRAY(0x40b2d540)()
./foo.pl: Mon Sep 17 14:58:16 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:16 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:16 2001: - Got ARRAY(0x40b2d678)()
./foo.pl: Mon Sep 17 14:58:16 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:16 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:16 2001: - Got ARRAY(0x40b2d7b0)()
./foo.pl: Mon Sep 17 14:58:16 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:16 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:16 2001: - Got ARRAY(0x40b2e504)()
./foo.pl: Mon Sep 17 14:58:16 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:16 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:16 2001: - Got ARRAY(0x40b2e63c)()
./foo.pl: Mon Sep 17 14:58:16 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:16 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:16 2001: - Got ARRAY(0x40b2e774)()
./foo.pl: Mon Sep 17 14:58:16 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:16 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:16 2001: - Got ARRAY(0x40b2ecc8)()
./foo.pl: Mon Sep 17 14:58:16 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:16 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:16 2001: - Got ARRAY(0x40b2ee00)()
./foo.pl: Mon Sep 17 14:58:16 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:16 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:16 2001: - Got ARRAY(0x40b2ef38)()
./foo.pl: Mon Sep 17 14:58:16 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:16 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:16 2001: - Got ARRAY(0x40b2fc8c)()
./foo.pl: Mon Sep 17 14:58:16 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:16 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:16 2001: - Got ARRAY(0x40b2fdc4)()
./foo.pl: Mon Sep 17 14:58:16 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:16 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:16 2001: - Got ARRAY(0x40b2fefc)()
./foo.pl: Mon Sep 17 14:58:16 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:16 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:16 2001: - Got ARRAY(0x40b30c50)()
./foo.pl: Mon Sep 17 14:58:16 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:16 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:16 2001: - Got ARRAY(0x40b30d88)()
./foo.pl: Mon Sep 17 14:58:16 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:17 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:17 2001: - Got ARRAY(0x40b30ec0)()
./foo.pl: Mon Sep 17 14:58:17 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:17 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:17 2001: - Got ARRAY(0x40b3201c)()
./foo.pl: Mon Sep 17 14:58:17 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:17 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:17 2001: - Got ARRAY(0x40b32154)()
./foo.pl: Mon Sep 17 14:58:17 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:17 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:17 2001: - Got ARRAY(0x40b3228c)()
./foo.pl: Mon Sep 17 14:58:17 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:17 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:17 2001: - Got ARRAY(0x40b323c4)()
./foo.pl: Mon Sep 17 14:58:17 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:17 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:17 2001: - Got ARRAY(0x40b33118)()
./foo.pl: Mon Sep 17 14:58:17 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:17 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:17 2001: - Got ARRAY(0x40b33250)()
./foo.pl: Mon Sep 17 14:58:17 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:17 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:17 2001: - Got ARRAY(0x40b33388)()
./foo.pl: Mon Sep 17 14:58:17 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:17 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:17 2001: - Got ARRAY(0x40b340dc)()
./foo.pl: Mon Sep 17 14:58:17 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:17 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:17 2001: - Got ARRAY(0x40b34214)()
./foo.pl: Mon Sep 17 14:58:17 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:17 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:17 2001: - Got ARRAY(0x40b3434c)()
./foo.pl: Mon Sep 17 14:58:17 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:17 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:17 2001: - Got ARRAY(0x40b350a0)()
./foo.pl: Mon Sep 17 14:58:17 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:17 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:17 2001: - Got ARRAY(0x40b351d8)()
./foo.pl: Mon Sep 17 14:58:17 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:17 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:17 2001: - Got ARRAY(0x40b35310)()
./foo.pl: Mon Sep 17 14:58:17 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:17 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:17 2001: - Got ARRAY(0x40b36064)()
./foo.pl: Mon Sep 17 14:58:17 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:17 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:17 2001: - Got ARRAY(0x40b3619c)()
./foo.pl: Mon Sep 17 14:58:17 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:17 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:17 2001: - Got ARRAY(0x40b362d4)()
./foo.pl: Mon Sep 17 14:58:17 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:17 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:17 2001: - Got ARRAY(0x40b37028)()
./foo.pl: Mon Sep 17 14:58:17 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:17 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:17 2001: - Got ARRAY(0x40b37160)()
./foo.pl: Mon Sep 17 14:58:17 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:17 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:17 2001: - Got ARRAY(0x40b37298)()
./foo.pl: Mon Sep 17 14:58:17 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:17 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:17 2001: - Got ARRAY(0x40b373d0)()
./foo.pl: Mon Sep 17 14:58:17 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:17 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:17 2001: - Got ARRAY(0x40b37d1c)()
./foo.pl: Mon Sep 17 14:58:17 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:17 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:17 2001: - Got ARRAY(0x40b37e54)()
./foo.pl: Mon Sep 17 14:58:17 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:17 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:17 2001: - Got ARRAY(0x40b37f8c)()
./foo.pl: Mon Sep 17 14:58:17 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:17 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:17 2001: - Got ARRAY(0x40b390e8)()
./foo.pl: Mon Sep 17 14:58:17 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:17 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:17 2001: - Got ARRAY(0x40b39220)()
./foo.pl: Mon Sep 17 14:58:17 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:17 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:17 2001: - Got ARRAY(0x40b39358)()
./foo.pl: Mon Sep 17 14:58:17 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:17 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:17 2001: - Got ARRAY(0x40b3a0ac)()
./foo.pl: Mon Sep 17 14:58:17 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:17 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:17 2001: - Got ARRAY(0x40b3a1e4)()
./foo.pl: Mon Sep 17 14:58:17 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:17 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:17 2001: - Sleeping
./foo.pl: Mon Sep 17 14:58:17 2001: - Got ARRAY(0x40b3a31c)()
./foo.pl: Mon Sep 17 14:58:17 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:17 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:17 2001: - Got ARRAY(0x40b3a870)()
./foo.pl: Mon Sep 17 14:58:17 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:17 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:17 2001: - Got ARRAY(0x40b3a9a8)()
./foo.pl: Mon Sep 17 14:58:17 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:17 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:17 2001: - Got ARRAY(0x40b3aae0)()
./foo.pl: Mon Sep 17 14:58:17 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:17 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:17 2001: - Got ARRAY(0x40b3b834)()
./foo.pl: Mon Sep 17 14:58:17 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:17 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:17 2001: - Got ARRAY(0x40b3b96c)()
./foo.pl: Mon Sep 17 14:58:17 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:17 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:17 2001: - Got ARRAY(0x40b3baa4)()
./foo.pl: Mon Sep 17 14:58:17 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:17 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:17 2001: - Got ARRAY(0x40b3bbdc)()
./foo.pl: Mon Sep 17 14:58:17 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:17 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:17 2001: - Got ARRAY(0x40b3c130)()
./foo.pl: Mon Sep 17 14:58:17 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:17 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:17 2001: - Got ARRAY(0x40b3c268)()
./foo.pl: Mon Sep 17 14:58:17 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:17 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:17 2001: - Got ARRAY(0x40b3c3a0)()
./foo.pl: Mon Sep 17 14:58:17 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:17 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:17 2001: - Got ARRAY(0x40b3d8f4)()
./foo.pl: Mon Sep 17 14:58:17 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:17 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:17 2001: - Got ARRAY(0x40b3da2c)()
./foo.pl: Mon Sep 17 14:58:17 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:17 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:17 2001: - Got ARRAY(0x40b3db64)()
./foo.pl: Mon Sep 17 14:58:17 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:17 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:17 2001: - Got ARRAY(0x40b3ecb0)()
./foo.pl: Mon Sep 17 14:58:17 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:17 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:17 2001: - Got ARRAY(0x40b3ede8)()
./foo.pl: Mon Sep 17 14:58:17 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:17 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:17 2001: - Got ARRAY(0x40b3ef20)()
./foo.pl: Mon Sep 17 14:58:17 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:17 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:17 2001: - Got ARRAY(0x40b3f474)()
./foo.pl: Mon Sep 17 14:58:17 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:17 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:17 2001: - Got ARRAY(0x40b3f5ac)()
./foo.pl: Mon Sep 17 14:58:17 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:17 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:17 2001: - Got ARRAY(0x40b3f6e4)()
./foo.pl: Mon Sep 17 14:58:17 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:17 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:17 2001: - Got ARRAY(0x40b40c38)()
./foo.pl: Mon Sep 17 14:58:17 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:17 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:17 2001: - Got ARRAY(0x40b40d70)()
./foo.pl: Mon Sep 17 14:58:17 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:17 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:17 2001: - Got ARRAY(0x40b40ea8)()
./foo.pl: Mon Sep 17 14:58:17 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:17 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:17 2001: - Got ARRAY(0x40b40fe0)()
./foo.pl: Mon Sep 17 14:58:17 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:17 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:17 2001: - Got ARRAY(0x40b41534)()
./foo.pl: Mon Sep 17 14:58:17 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:17 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:17 2001: - Got ARRAY(0x40b4166c)()
./foo.pl: Mon Sep 17 14:58:17 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:17 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:17 2001: - Got ARRAY(0x40b417a4)()
./foo.pl: Mon Sep 17 14:58:17 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:17 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:17 2001: - Got ARRAY(0x40b424f8)()
./foo.pl: Mon Sep 17 14:58:17 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:17 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:17 2001: - Got ARRAY(0x40b42630)()
./foo.pl: Mon Sep 17 14:58:17 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:17 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:17 2001: - Got ARRAY(0x40b42768)()
./foo.pl: Mon Sep 17 14:58:17 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:17 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:17 2001: - Got ARRAY(0x40b430c4)()
./foo.pl: Mon Sep 17 14:58:17 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:17 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:17 2001: - Got ARRAY(0x40b431fc)()
./foo.pl: Mon Sep 17 14:58:17 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:17 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:17 2001: - Got ARRAY(0x40b43334)()
./foo.pl: Mon Sep 17 14:58:17 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:17 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:17 2001: - Got ARRAY(0x40b43888)()
./foo.pl: Mon Sep 17 14:58:17 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:17 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:17 2001: - Got ARRAY(0x40b439c0)()
./foo.pl: Mon Sep 17 14:58:17 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:17 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:17 2001: - Got ARRAY(0x40b43af8)()
./foo.pl: Mon Sep 17 14:58:17 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:17 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:17 2001: - Got ARRAY(0x40b44c44)()
./foo.pl: Mon Sep 17 14:58:17 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:17 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:17 2001: - Got ARRAY(0x40b44d7c)()
./foo.pl: Mon Sep 17 14:58:17 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:17 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:17 2001: - Got ARRAY(0x40b44eb4)()
./foo.pl: Mon Sep 17 14:58:17 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:17 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:17 2001: - Got ARRAY(0x40b44fec)()
./foo.pl: Mon Sep 17 14:58:17 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:17 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:17 2001: - Got ARRAY(0x40b45540)()
./foo.pl: Mon Sep 17 14:58:17 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:17 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:17 2001: - Got ARRAY(0x40b45678)()
./foo.pl: Mon Sep 17 14:58:17 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:17 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:17 2001: - Got ARRAY(0x40b457b0)()
./foo.pl: Mon Sep 17 14:58:17 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:17 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:17 2001: - Got ARRAY(0x40b45d04)()
./foo.pl: Mon Sep 17 14:58:17 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:17 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:17 2001: - Got ARRAY(0x40b45e3c)()
./foo.pl: Mon Sep 17 14:58:17 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:17 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:17 2001: - Got ARRAY(0x40b45f74)()
./foo.pl: Mon Sep 17 14:58:17 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:17 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:27 2001: - Done sleeping
./foo.pl: Mon Sep 17 14:58:27 2001: - Got ARRAY(0x40b474c8)()
./foo.pl: Mon Sep 17 14:58:27 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:27 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:27 2001: - Got ARRAY(0x40b47600)()
./foo.pl: Mon Sep 17 14:58:27 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:27 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:27 2001: - Got ARRAY(0x40b47738)()
./foo.pl: Mon Sep 17 14:58:27 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:27 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:27 2001: - Got ARRAY(0x40b4848c)()
./foo.pl: Mon Sep 17 14:58:27 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:27 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:27 2001: - Got ARRAY(0x40b485c4)()
./foo.pl: Mon Sep 17 14:58:27 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:27 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:27 2001: - Got ARRAY(0x40b486fc)()
./foo.pl: Mon Sep 17 14:58:27 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:27 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:27 2001: - Got ARRAY(0x40b49450)()
./foo.pl: Mon Sep 17 14:58:27 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:27 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:27 2001: - Got ARRAY(0x40b49588)()
./foo.pl: Mon Sep 17 14:58:27 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:27 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:27 2001: - Got ARRAY(0x40b496c0)()
./foo.pl: Mon Sep 17 14:58:27 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:27 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:27 2001: - Got ARRAY(0x40b4a01c)()
./foo.pl: Mon Sep 17 14:58:27 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:27 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:27 2001: - Got ARRAY(0x40b4a154)()
./foo.pl: Mon Sep 17 14:58:27 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:27 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:27 2001: - Got ARRAY(0x40b4a28c)()
./foo.pl: Mon Sep 17 14:58:27 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:27 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:27 2001: - Got ARRAY(0x40b4a3c4)()
./foo.pl: Mon Sep 17 14:58:27 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:27 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:27 2001: - Got ARRAY(0x40b4b118)()
./foo.pl: Mon Sep 17 14:58:27 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:27 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:27 2001: - Got ARRAY(0x40b4b250)()
./foo.pl: Mon Sep 17 14:58:27 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:27 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:27 2001: - Got ARRAY(0x40b4b388)()
./foo.pl: Mon Sep 17 14:58:27 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:27 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:27 2001: - Got ARRAY(0x40b4c0dc)()
./foo.pl: Mon Sep 17 14:58:27 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:27 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:27 2001: - Got ARRAY(0x40b4c214)()
./foo.pl: Mon Sep 17 14:58:27 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:27 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:27 2001: - Got ARRAY(0x40b4c34c)()
./foo.pl: Mon Sep 17 14:58:27 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:27 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:27 2001: - Got ARRAY(0x40b4c8a0)()
./foo.pl: Mon Sep 17 14:58:27 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:27 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:27 2001: - Got ARRAY(0x40b4c9d8)()
./foo.pl: Mon Sep 17 14:58:27 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:27 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:27 2001: - Got ARRAY(0x40b4cb10)()
./foo.pl: Mon Sep 17 14:58:27 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:27 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:27 2001: - Got ARRAY(0x40b4cc5c)()
./foo.pl: Mon Sep 17 14:58:27 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:27 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:27 2001: - Got ARRAY(0x40b4cd94)()
./foo.pl: Mon Sep 17 14:58:27 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:27 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:27 2001: - Got ARRAY(0x40b4cecc)()
./foo.pl: Mon Sep 17 14:58:27 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:27 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:27 2001: - Got ARRAY(0x40b4e420)()
./foo.pl: Mon Sep 17 14:58:27 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:27 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:27 2001: - Got ARRAY(0x40b4e558)()
./foo.pl: Mon Sep 17 14:58:27 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:27 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:27 2001: - Got ARRAY(0x40b4e690)()
./foo.pl: Mon Sep 17 14:58:27 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:27 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:27 2001: - Got ARRAY(0x40b4e7c8)()
./foo.pl: Mon Sep 17 14:58:27 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:27 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:27 2001: - Got ARRAY(0x40b4ed1c)()
./foo.pl: Mon Sep 17 14:58:27 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:27 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:27 2001: - Got ARRAY(0x40b4ee54)()
./foo.pl: Mon Sep 17 14:58:27 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:27 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:27 2001: - Got ARRAY(0x40b4ef8c)()
./foo.pl: Mon Sep 17 14:58:27 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:27 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:27 2001: - Got ARRAY(0x40b508e8)()
./foo.pl: Mon Sep 17 14:58:27 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:27 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:27 2001: - Got ARRAY(0x40b50a20)()
./foo.pl: Mon Sep 17 14:58:27 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:27 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:27 2001: - Got ARRAY(0x40b50b58)()
./foo.pl: Mon Sep 17 14:58:27 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:27 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:27 2001: - Got ARRAY(0x40b518ac)()
./foo.pl: Mon Sep 17 14:58:27 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:27 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:27 2001: - Got ARRAY(0x40b519e4)()
./foo.pl: Mon Sep 17 14:58:27 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:27 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:27 2001: - Got ARRAY(0x40b51b1c)()
./foo.pl: Mon Sep 17 14:58:27 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:27 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:27 2001: - Got ARRAY(0x40b52870)()
./foo.pl: Mon Sep 17 14:58:27 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:27 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:27 2001: - Got ARRAY(0x40b529a8)()
./foo.pl: Mon Sep 17 14:58:27 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:27 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:27 2001: - Got ARRAY(0x40b52ae0)()
./foo.pl: Mon Sep 17 14:58:27 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:27 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:27 2001: - Got ARRAY(0x40b53034)()
./foo.pl: Mon Sep 17 14:58:27 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:27 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:27 2001: - Got ARRAY(0x40b5316c)()
./foo.pl: Mon Sep 17 14:58:27 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:27 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:27 2001: - Got ARRAY(0x40b532a4)()
./foo.pl: Mon Sep 17 14:58:27 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:27 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:27 2001: - Got ARRAY(0x40b533dc)()
./foo.pl: Mon Sep 17 14:58:27 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:27 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:27 2001: - Got ARRAY(0x40b54130)()
./foo.pl: Mon Sep 17 14:58:27 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:27 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:27 2001: - Got ARRAY(0x40b54268)()
./foo.pl: Mon Sep 17 14:58:27 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:27 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:27 2001: - Got ARRAY(0x40b543a0)()
./foo.pl: Mon Sep 17 14:58:27 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:27 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:27 2001: - Got ARRAY(0x40b558f4)()
./foo.pl: Mon Sep 17 14:58:27 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:27 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:27 2001: - Got ARRAY(0x40b55a2c)()
./foo.pl: Mon Sep 17 14:58:27 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:27 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:27 2001: - Got ARRAY(0x40b55b64)()
./foo.pl: Mon Sep 17 14:58:27 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:27 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:27 2001: - Got ARRAY(0x40b56cb0)()
./foo.pl: Mon Sep 17 14:58:27 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:27 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:27 2001: - Got ARRAY(0x40b56de8)()
./foo.pl: Mon Sep 17 14:58:27 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:27 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:27 2001: - Got ARRAY(0x40b56f20)()
./foo.pl: Mon Sep 17 14:58:27 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:27 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:27 2001: - Got ARRAY(0x40b57474)()
./foo.pl: Mon Sep 17 14:58:27 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:27 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:27 2001: - Got ARRAY(0x40b575ac)()
./foo.pl: Mon Sep 17 14:58:27 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:27 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:27 2001: - Got ARRAY(0x40b576e4)()
./foo.pl: Mon Sep 17 14:58:27 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:27 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:27 2001: - Got ARRAY(0x40b57840)()
./foo.pl: Mon Sep 17 14:58:27 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:27 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:27 2001: - Got ARRAY(0x40b57978)()
./foo.pl: Mon Sep 17 14:58:27 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:27 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:27 2001: - Got ARRAY(0x40b57ab0)()
./foo.pl: Mon Sep 17 14:58:27 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:27 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:27 2001: - Got ARRAY(0x40b57be8)()
./foo.pl: Mon Sep 17 14:58:27 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:27 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:27 2001: - Got ARRAY(0x40b5893c)()
./foo.pl: Mon Sep 17 14:58:27 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:27 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:27 2001: - Got ARRAY(0x40b58a74)()
./foo.pl: Mon Sep 17 14:58:27 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:27 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:27 2001: - Got ARRAY(0x40b58bac)()
./foo.pl: Mon Sep 17 14:58:27 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:27 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:27 2001: - Got ARRAY(0x40b59900)()
./foo.pl: Mon Sep 17 14:58:27 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:27 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:27 2001: - Got ARRAY(0x40b59a38)()
./foo.pl: Mon Sep 17 14:58:27 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:27 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:27 2001: - Got ARRAY(0x40b59b70)()
./foo.pl: Mon Sep 17 14:58:27 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:27 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:27 2001: - Got ARRAY(0x40b5a8c4)()
./foo.pl: Mon Sep 17 14:58:27 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:27 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:27 2001: - Got ARRAY(0x40b5a9fc)()
./foo.pl: Mon Sep 17 14:58:27 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:27 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:27 2001: - Got ARRAY(0x40b5ab34)()
./foo.pl: Mon Sep 17 14:58:27 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:27 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:27 2001: - Got ARRAY(0x40b5b888)()
./foo.pl: Mon Sep 17 14:58:27 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:27 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:27 2001: - Got ARRAY(0x40b5b9c0)()
./foo.pl: Mon Sep 17 14:58:27 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:27 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:27 2001: - Got ARRAY(0x40b5baf8)()
./foo.pl: Mon Sep 17 14:58:27 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:27 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:27 2001: - Got ARRAY(0x40b5c444)()
./foo.pl: Mon Sep 17 14:58:27 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:27 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:27 2001: - Got ARRAY(0x40b5c57c)()
./foo.pl: Mon Sep 17 14:58:27 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:27 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:27 2001: - Got ARRAY(0x40b5c6b4)()
./foo.pl: Mon Sep 17 14:58:27 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:27 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:27 2001: - Got ARRAY(0x40b5c7ec)()
./foo.pl: Mon Sep 17 14:58:27 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:28 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:27 2001: - Sleeping
./foo.pl: Mon Sep 17 14:58:38 2001: - Done sleeping
./foo.pl: Mon Sep 17 14:58:38 2001: - Got ARRAY(0x40b5cd40)()
./foo.pl: Mon Sep 17 14:58:38 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:38 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:38 2001: - Got ARRAY(0x40b5ce78)()
./foo.pl: Mon Sep 17 14:58:38 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:38 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:38 2001: - Got ARRAY(0x40b5cfb0)()
./foo.pl: Mon Sep 17 14:58:38 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:38 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:38 2001: - Got ARRAY(0x40b5e504)()
./foo.pl: Mon Sep 17 14:58:38 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:38 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:38 2001: - Got ARRAY(0x40b5e63c)()
./foo.pl: Mon Sep 17 14:58:38 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:38 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:38 2001: - Got ARRAY(0x40b5e774)()
./foo.pl: Mon Sep 17 14:58:38 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:38 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:38 2001: - Got ARRAY(0x40b5ecc8)()
./foo.pl: Mon Sep 17 14:58:38 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:38 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:38 2001: - Got ARRAY(0x40b5ee00)()
./foo.pl: Mon Sep 17 14:58:38 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:38 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:38 2001: - Got ARRAY(0x40b5ef38)()
./foo.pl: Mon Sep 17 14:58:38 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:38 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:38 2001: - Got ARRAY(0x40b5fc8c)()
./foo.pl: Mon Sep 17 14:58:38 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:38 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:38 2001: - Got ARRAY(0x40b5fdc4)()
./foo.pl: Mon Sep 17 14:58:38 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:38 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:38 2001: - Got ARRAY(0x40b5fefc)()
./foo.pl: Mon Sep 17 14:58:38 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:38 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:38 2001: - Got ARRAY(0x40b60450)()
./foo.pl: Mon Sep 17 14:58:38 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:38 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:38 2001: - Got ARRAY(0x40b60588)()
./foo.pl: Mon Sep 17 14:58:38 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:38 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:38 2001: - Got ARRAY(0x40b606c0)()
./foo.pl: Mon Sep 17 14:58:38 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:38 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:38 2001: - Got ARRAY(0x40b61414)()
./foo.pl: Mon Sep 17 14:58:38 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:38 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:38 2001: - Got ARRAY(0x40b6154c)()
./foo.pl: Mon Sep 17 14:58:38 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:38 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:38 2001: - Got ARRAY(0x40b61684)()
./foo.pl: Mon Sep 17 14:58:38 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:38 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:38 2001: - Got ARRAY(0x40b617bc)()
./foo.pl: Mon Sep 17 14:58:38 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:38 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:38 2001: - Got ARRAY(0x40b61d10)()
./foo.pl: Mon Sep 17 14:58:38 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:38 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:38 2001: - Got ARRAY(0x40b61e48)()
./foo.pl: Mon Sep 17 14:58:38 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:38 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:38 2001: - Got ARRAY(0x40b61f80)()
./foo.pl: Mon Sep 17 14:58:38 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:38 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:38 2001: - Got ARRAY(0x40b62cd4)()
./foo.pl: Mon Sep 17 14:58:38 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:38 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:38 2001: - Got ARRAY(0x40b62e0c)()
./foo.pl: Mon Sep 17 14:58:38 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:38 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:38 2001: - Got ARRAY(0x40b62f44)()
./foo.pl: Mon Sep 17 14:58:38 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:38 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:38 2001: - Got ARRAY(0x40b63c98)()
./foo.pl: Mon Sep 17 14:58:38 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:38 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:38 2001: - Got ARRAY(0x40b63dd0)()
./foo.pl: Mon Sep 17 14:58:38 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:38 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:38 2001: - Got ARRAY(0x40b63f08)()
./foo.pl: Mon Sep 17 14:58:38 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:38 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:38 2001: - Got ARRAY(0x40b64c5c)()
./foo.pl: Mon Sep 17 14:58:38 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:38 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:38 2001: - Got ARRAY(0x40b64d94)()
./foo.pl: Mon Sep 17 14:58:38 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:38 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:38 2001: - Got ARRAY(0x40b64ecc)()
./foo.pl: Mon Sep 17 14:58:38 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:38 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:38 2001: - Got ARRAY(0x40b65420)()
./foo.pl: Mon Sep 17 14:58:38 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:38 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:38 2001: - Got ARRAY(0x40b65558)()
./foo.pl: Mon Sep 17 14:58:38 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:38 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:38 2001: - Got ARRAY(0x40b65690)()
./foo.pl: Mon Sep 17 14:58:38 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:38 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:38 2001: - Got ARRAY(0x40b657c8)()
./foo.pl: Mon Sep 17 14:58:38 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:38 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:38 2001: - Got ARRAY(0x40b6651c)()
./foo.pl: Mon Sep 17 14:58:38 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:38 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:38 2001: - Got ARRAY(0x40b66654)()
./foo.pl: Mon Sep 17 14:58:38 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:38 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:38 2001: - Got ARRAY(0x40b6678c)()
./foo.pl: Mon Sep 17 14:58:38 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:38 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:38 2001: - Got ARRAY(0x40b678e8)()
./foo.pl: Mon Sep 17 14:58:38 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:38 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:38 2001: - Got ARRAY(0x40b67a20)()
./foo.pl: Mon Sep 17 14:58:38 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:38 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:38 2001: - Got ARRAY(0x40b67b58)()
./foo.pl: Mon Sep 17 14:58:38 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:38 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:38 2001: - Got ARRAY(0x40b688ac)()
./foo.pl: Mon Sep 17 14:58:38 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:38 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:38 2001: - Got ARRAY(0x40b689e4)()
./foo.pl: Mon Sep 17 14:58:38 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:38 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:38 2001: - Got ARRAY(0x40b68b1c)()
./foo.pl: Mon Sep 17 14:58:38 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:38 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:38 2001: - Got ARRAY(0x40b69870)()
./foo.pl: Mon Sep 17 14:58:38 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:38 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:38 2001: - Got ARRAY(0x40b699a8)()
./foo.pl: Mon Sep 17 14:58:38 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:38 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:38 2001: - Got ARRAY(0x40b69ae0)()
./foo.pl: Mon Sep 17 14:58:38 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:38 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:38 2001: - Got ARRAY(0x40b6a834)()
./foo.pl: Mon Sep 17 14:58:38 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:38 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:38 2001: - Got ARRAY(0x40b6a96c)()
./foo.pl: Mon Sep 17 14:58:38 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:38 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:38 2001: - Got ARRAY(0x40b6aaa4)()
./foo.pl: Mon Sep 17 14:58:38 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:38 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:38 2001: - Got ARRAY(0x40b6abdc)()
./foo.pl: Mon Sep 17 14:58:38 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:38 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:38 2001: - Got ARRAY(0x40b6c130)()
./foo.pl: Mon Sep 17 14:58:38 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:38 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:38 2001: - Got ARRAY(0x40b6c268)()
./foo.pl: Mon Sep 17 14:58:38 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:38 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:38 2001: - Got ARRAY(0x40b6c3a0)()
./foo.pl: Mon Sep 17 14:58:38 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:38 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:38 2001: - Got ARRAY(0x40b6c4ec)()
./foo.pl: Mon Sep 17 14:58:38 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:38 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:38 2001: - Got ARRAY(0x40b6c624)()
./foo.pl: Mon Sep 17 14:58:38 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:38 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:38 2001: - Got ARRAY(0x40b6c75c)()
./foo.pl: Mon Sep 17 14:58:38 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:38 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:38 2001: - Got ARRAY(0x40b6d8b8)()
./foo.pl: Mon Sep 17 14:58:38 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:38 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:38 2001: - Got ARRAY(0x40b6d9f0)()
./foo.pl: Mon Sep 17 14:58:38 2001: - Sleeping
./foo.pl: Mon Sep 17 14:58:38 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:38 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:38 2001: - Got ARRAY(0x40b6db28)()
./foo.pl: Mon Sep 17 14:58:38 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:38 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:38 2001: - Got ARRAY(0x40b6ec74)()
./foo.pl: Mon Sep 17 14:58:38 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:38 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:38 2001: - Got ARRAY(0x40b6edac)()
./foo.pl: Mon Sep 17 14:58:38 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:38 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:38 2001: - Got ARRAY(0x40b6eee4)()
./foo.pl: Mon Sep 17 14:58:38 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:38 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:38 2001: - Got ARRAY(0x40b6f438)()
./foo.pl: Mon Sep 17 14:58:38 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:38 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:38 2001: - Got ARRAY(0x40b6f570)()
./foo.pl: Mon Sep 17 14:58:38 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:38 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:38 2001: - Got ARRAY(0x40b6f6a8)()
./foo.pl: Mon Sep 17 14:58:38 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:38 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:38 2001: - Got ARRAY(0x40b6f7e0)()
./foo.pl: Mon Sep 17 14:58:38 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:38 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:38 2001: - Got ARRAY(0x40b70534)()
./foo.pl: Mon Sep 17 14:58:38 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:38 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:38 2001: - Got ARRAY(0x40b7066c)()
./foo.pl: Mon Sep 17 14:58:38 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:38 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:38 2001: - Got ARRAY(0x40b707a4)()
./foo.pl: Mon Sep 17 14:58:38 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:38 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:38 2001: - Got ARRAY(0x40b734f8)()
./foo.pl: Mon Sep 17 14:58:38 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:38 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:38 2001: - Got ARRAY(0x40b73630)()
./foo.pl: Mon Sep 17 14:58:38 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:38 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:38 2001: - Got ARRAY(0x40b73768)()
./foo.pl: Mon Sep 17 14:58:38 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:38 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:38 2001: - Got ARRAY(0x40adfcbc)()
./foo.pl: Mon Sep 17 14:58:38 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:38 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:38 2001: - Got ARRAY(0x40adfdf4)()
./foo.pl: Mon Sep 17 14:58:38 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:38 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:38 2001: - Got ARRAY(0x40adff2c)()
./foo.pl: Mon Sep 17 14:58:38 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:38 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:38 2001: - Got ARRAY(0x40b74480)()
./foo.pl: Mon Sep 17 14:58:38 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:38 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:38 2001: - Got ARRAY(0x40b745b8)()
./foo.pl: Mon Sep 17 14:58:38 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:38 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:38 2001: - Got ARRAY(0x40b746f0)()
./foo.pl: Mon Sep 17 14:58:38 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:38 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:38 2001: - Got ARRAY(0x40b7504c)()
./foo.pl: Mon Sep 17 14:58:38 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:38 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:38 2001: - Got ARRAY(0x40b75184)()
./foo.pl: Mon Sep 17 14:58:38 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:38 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:38 2001: - Got ARRAY(0x40b752bc)()
./foo.pl: Mon Sep 17 14:58:38 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:38 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:38 2001: - Got ARRAY(0x40b753f4)()
./foo.pl: Mon Sep 17 14:58:38 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:38 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:38 2001: - Got ARRAY(0x40b76948)()
./foo.pl: Mon Sep 17 14:58:38 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:38 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:38 2001: - Got ARRAY(0x40b76a80)()
./foo.pl: Mon Sep 17 14:58:38 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:38 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:38 2001: - Got ARRAY(0x40b76bb8)()
./foo.pl: Mon Sep 17 14:58:38 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:38 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:38 2001: - Got ARRAY(0x40b7710c)()
./foo.pl: Mon Sep 17 14:58:38 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:38 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:38 2001: - Got ARRAY(0x40b77244)()
./foo.pl: Mon Sep 17 14:58:38 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:38 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:38 2001: - Got ARRAY(0x40b7737c)()
./foo.pl: Mon Sep 17 14:58:38 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:38 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:38 2001: - Got ARRAY(0x40b774c8)()
./foo.pl: Mon Sep 17 14:58:38 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:38 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:38 2001: - Got ARRAY(0x40b77600)()
./foo.pl: Mon Sep 17 14:58:38 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:38 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:38 2001: - Got ARRAY(0x40b77738)()
./foo.pl: Mon Sep 17 14:58:38 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:38 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:38 2001: - Got ARRAY(0x40b7848c)()
./foo.pl: Mon Sep 17 14:58:38 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:38 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:38 2001: - Got ARRAY(0x40b785c4)()
./foo.pl: Mon Sep 17 14:58:38 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:38 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:38 2001: - Got ARRAY(0x40b786fc)()
./foo.pl: Mon Sep 17 14:58:38 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:38 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:38 2001: - Got ARRAY(0x40b79450)()
./foo.pl: Mon Sep 17 14:58:38 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:38 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:38 2001: - Got ARRAY(0x40b79588)()
./foo.pl: Mon Sep 17 14:58:38 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:38 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:38 2001: - Got ARRAY(0x40b796c0)()
./foo.pl: Mon Sep 17 14:58:38 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:38 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:38 2001: - Got ARRAY(0x40b79c14)()
./foo.pl: Mon Sep 17 14:58:38 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:38 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:38 2001: - Got ARRAY(0x40b79d4c)()
./foo.pl: Mon Sep 17 14:58:38 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:38 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:38 2001: - Got ARRAY(0x40b79e84)()
./foo.pl: Mon Sep 17 14:58:38 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:38 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:38 2001: - Got ARRAY(0x40b79fbc)()
./foo.pl: Mon Sep 17 14:58:38 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:38 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:38 2001: - Got ARRAY(0x40b7b918)()
./foo.pl: Mon Sep 17 14:58:38 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:38 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:48 2001: - Done sleeping
./foo.pl: Mon Sep 17 14:58:48 2001: - Got ARRAY(0x40b7ba50)()
./foo.pl: Mon Sep 17 14:58:48 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:48 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:48 2001: - Got ARRAY(0x40b7bb88)()
./foo.pl: Mon Sep 17 14:58:48 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:48 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:48 2001: - Got ARRAY(0x40b7c8dc)()
./foo.pl: Mon Sep 17 14:58:48 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:48 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:48 2001: - Got ARRAY(0x40b7ca14)()
./foo.pl: Mon Sep 17 14:58:48 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:48 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:48 2001: - Got ARRAY(0x40b7cb4c)()
./foo.pl: Mon Sep 17 14:58:48 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:48 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:48 2001: - Got ARRAY(0x40b7d0a0)()
./foo.pl: Mon Sep 17 14:58:48 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:48 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:48 2001: - Got ARRAY(0x40b7d1d8)()
./foo.pl: Mon Sep 17 14:58:48 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:48 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:48 2001: - Got ARRAY(0x40b7d310)()
./foo.pl: Mon Sep 17 14:58:48 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:48 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:48 2001: - Got ARRAY(0x40b7d864)()
./foo.pl: Mon Sep 17 14:58:48 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:48 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:48 2001: - Got ARRAY(0x40b7d99c)()
./foo.pl: Mon Sep 17 14:58:48 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:48 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:48 2001: - Got ARRAY(0x40b7dad4)()
./foo.pl: Mon Sep 17 14:58:48 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:48 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:48 2001: - Got ARRAY(0x40b7f028)()
./foo.pl: Mon Sep 17 14:58:48 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:48 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:48 2001: - Got ARRAY(0x40b7f160)()
./foo.pl: Mon Sep 17 14:58:48 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:48 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:48 2001: - Got ARRAY(0x40b7f298)()
./foo.pl: Mon Sep 17 14:58:48 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:48 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:48 2001: - Got ARRAY(0x40b7f3d0)()
./foo.pl: Mon Sep 17 14:58:48 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:48 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:48 2001: - Got ARRAY(0x40b7f924)()
./foo.pl: Mon Sep 17 14:58:48 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:48 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:48 2001: - Got ARRAY(0x40b7fa5c)()
./foo.pl: Mon Sep 17 14:58:48 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:48 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:48 2001: - Got ARRAY(0x40b7fb94)()
./foo.pl: Mon Sep 17 14:58:48 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:48 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:48 2001: - Got ARRAY(0x40b814e0)()
./foo.pl: Mon Sep 17 14:58:48 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:48 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:48 2001: - Got ARRAY(0x40b81618)()
./foo.pl: Mon Sep 17 14:58:48 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:48 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:48 2001: - Got ARRAY(0x40b81750)()
./foo.pl: Mon Sep 17 14:58:48 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:48 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:48 2001: - Got ARRAY(0x40b81ca4)()
./foo.pl: Mon Sep 17 14:58:48 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:48 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:48 2001: - Got ARRAY(0x40b81ddc)()
./foo.pl: Mon Sep 17 14:58:48 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:48 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:48 2001: - Got ARRAY(0x40b81f14)()
./foo.pl: Mon Sep 17 14:58:48 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:48 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:48 2001: - Got ARRAY(0x40b83070)()
./foo.pl: Mon Sep 17 14:58:48 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:48 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:48 2001: - Got ARRAY(0x40b831a8)()
./foo.pl: Mon Sep 17 14:58:48 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:48 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:48 2001: - Got ARRAY(0x40b832e0)()
./foo.pl: Mon Sep 17 14:58:48 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:48 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:48 2001: - Got ARRAY(0x40b84034)()
./foo.pl: Mon Sep 17 14:58:48 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:48 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:48 2001: - Got ARRAY(0x40b8416c)()
./foo.pl: Mon Sep 17 14:58:48 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:48 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:48 2001: - Got ARRAY(0x40b842a4)()
./foo.pl: Mon Sep 17 14:58:48 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:48 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:48 2001: - Got ARRAY(0x40b843dc)()
./foo.pl: Mon Sep 17 14:58:48 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:48 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:48 2001: - Got ARRAY(0x40b84930)()
./foo.pl: Mon Sep 17 14:58:48 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:48 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:48 2001: - Got ARRAY(0x40b84a68)()
./foo.pl: Mon Sep 17 14:58:48 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:48 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:48 2001: - Got ARRAY(0x40b84ba0)()
./foo.pl: Mon Sep 17 14:58:48 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:48 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:48 2001: - Got ARRAY(0x40b858f4)()
./foo.pl: Mon Sep 17 14:58:48 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:48 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:48 2001: - Got ARRAY(0x40b85a2c)()
./foo.pl: Mon Sep 17 14:58:48 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:48 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:48 2001: - Got ARRAY(0x40b85b64)()
./foo.pl: Mon Sep 17 14:58:48 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:48 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:48 2001: - Got ARRAY(0x40b860b8)()
./foo.pl: Mon Sep 17 14:58:48 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:48 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:48 2001: - Got ARRAY(0x40b861f0)()
./foo.pl: Mon Sep 17 14:58:48 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:48 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:48 2001: - Got ARRAY(0x40b86328)()
./foo.pl: Mon Sep 17 14:58:48 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:48 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:48 2001: - Got ARRAY(0x40b86c74)()
./foo.pl: Mon Sep 17 14:58:48 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:48 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:48 2001: - Got ARRAY(0x40b86dac)()
./foo.pl: Mon Sep 17 14:58:48 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:48 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:48 2001: - Got ARRAY(0x40b86ee4)()
./foo.pl: Mon Sep 17 14:58:48 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:48 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:48 2001: - Got ARRAY(0x40b87c38)()
./foo.pl: Mon Sep 17 14:58:48 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:48 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:48 2001: - Got ARRAY(0x40b87d70)()
./foo.pl: Mon Sep 17 14:58:48 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:48 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:48 2001: - Got ARRAY(0x40b87ea8)()
./foo.pl: Mon Sep 17 14:58:48 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:48 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:48 2001: - Got ARRAY(0x40b87fe0)()
./foo.pl: Mon Sep 17 14:58:48 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:48 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:48 2001: - Got ARRAY(0x40b88d34)()
./foo.pl: Mon Sep 17 14:58:48 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:48 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:48 2001: - Got ARRAY(0x40b88e6c)()
./foo.pl: Mon Sep 17 14:58:49 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:49 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:49 2001: - Got ARRAY(0x40b88fa4)()
./foo.pl: Mon Sep 17 14:58:49 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:49 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:49 2001: - Got ARRAY(0x40b89cf8)()
./foo.pl: Mon Sep 17 14:58:49 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:49 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:49 2001: - Got ARRAY(0x40b89e30)()
./foo.pl: Mon Sep 17 14:58:49 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:49 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:49 2001: - Got ARRAY(0x40b89f68)()
./foo.pl: Mon Sep 17 14:58:49 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:49 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:49 2001: - Got ARRAY(0x40b8a4bc)()
./foo.pl: Mon Sep 17 14:58:49 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:49 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:49 2001: - Got ARRAY(0x40b8a5f4)()
./foo.pl: Mon Sep 17 14:58:49 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:49 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:49 2001: - Got ARRAY(0x40b8a72c)()
./foo.pl: Mon Sep 17 14:58:49 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:49 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:49 2001: - Got ARRAY(0x40b8bc80)()
./foo.pl: Mon Sep 17 14:58:49 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:49 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:49 2001: - Got ARRAY(0x40b8bdb8)()
./foo.pl: Mon Sep 17 14:58:49 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:49 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:49 2001: - Got ARRAY(0x40b8bef0)()
./foo.pl: Mon Sep 17 14:58:49 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:49 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:49 2001: - Got ARRAY(0x40b8c84c)()
./foo.pl: Mon Sep 17 14:58:49 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:49 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:49 2001: - Got ARRAY(0x40b8c984)()
./foo.pl: Mon Sep 17 14:58:49 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:49 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:49 2001: - Got ARRAY(0x40b8cabc)()
./foo.pl: Mon Sep 17 14:58:49 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:49 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:49 2001: - Got ARRAY(0x40b8cbf4)()
./foo.pl: Mon Sep 17 14:58:49 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:49 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:49 2001: - Got ARRAY(0x40b8d540)()
./foo.pl: Mon Sep 17 14:58:49 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:49 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:49 2001: - Got ARRAY(0x40b8d678)()
./foo.pl: Mon Sep 17 14:58:49 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:49 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:49 2001: - Got ARRAY(0x40b8d7b0)()
./foo.pl: Mon Sep 17 14:58:49 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:49 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:49 2001: - Got ARRAY(0x40b8dd04)()
./foo.pl: Mon Sep 17 14:58:49 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:49 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:49 2001: - Got ARRAY(0x40b8de3c)()
./foo.pl: Mon Sep 17 14:58:49 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:49 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:49 2001: - Got ARRAY(0x40b8df74)()
./foo.pl: Mon Sep 17 14:58:49 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:49 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:49 2001: - Got ARRAY(0x40b8f4c8)()
./foo.pl: Mon Sep 17 14:58:49 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:49 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:49 2001: - Got ARRAY(0x40b8f600)()
./foo.pl: Mon Sep 17 14:58:49 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:49 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:49 2001: - Got ARRAY(0x40b8f738)()
./foo.pl: Mon Sep 17 14:58:49 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:49 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:49 2001: - Got ARRAY(0x40b8fc8c)()
./foo.pl: Mon Sep 17 14:58:49 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:49 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:49 2001: - Got ARRAY(0x40b8fdc4)()
./foo.pl: Mon Sep 17 14:58:49 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:49 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:49 2001: - Got ARRAY(0x40b8fefc)()
./foo.pl: Mon Sep 17 14:58:49 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:49 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:49 2001: - Got ARRAY(0x40b90c50)()
./foo.pl: Mon Sep 17 14:58:49 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:49 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:49 2001: - Got ARRAY(0x40b90d88)()
./foo.pl: Mon Sep 17 14:58:49 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:49 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:49 2001: - Got ARRAY(0x40b90ec0)()
./foo.pl: Mon Sep 17 14:58:49 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:49 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:49 2001: - Got ARRAY(0x40b91c14)()
./foo.pl: Mon Sep 17 14:58:49 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:49 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:49 2001: - Got ARRAY(0x40b91d4c)()
./foo.pl: Mon Sep 17 14:58:49 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:49 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:49 2001: - Got ARRAY(0x40b91e84)()
./foo.pl: Mon Sep 17 14:58:49 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:49 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:49 2001: - Got ARRAY(0x40b91fbc)()
./foo.pl: Mon Sep 17 14:58:49 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:49 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:49 2001: - Got ARRAY(0x40b93118)()
./foo.pl: Mon Sep 17 14:58:49 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:49 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:49 2001: - Got ARRAY(0x40b93250)()
./foo.pl: Mon Sep 17 14:58:49 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:49 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:49 2001: - Got ARRAY(0x40b93388)()
./foo.pl: Mon Sep 17 14:58:49 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:49 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:49 2001: - Got ARRAY(0x40b938dc)()
./foo.pl: Mon Sep 17 14:58:49 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:49 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:49 2001: - Got ARRAY(0x40b93a14)()
./foo.pl: Mon Sep 17 14:58:49 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:49 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:49 2001: - Got ARRAY(0x40b93b4c)()
./foo.pl: Mon Sep 17 14:58:49 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:49 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:49 2001: - Got ARRAY(0x40b948a0)()
./foo.pl: Mon Sep 17 14:58:49 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:49 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:49 2001: - Got ARRAY(0x40b949d8)()
./foo.pl: Mon Sep 17 14:58:49 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:49 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:49 2001: - Got ARRAY(0x40b94b10)()
./foo.pl: Mon Sep 17 14:58:49 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:49 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:49 2001: - Got ARRAY(0x40b95864)()
./foo.pl: Mon Sep 17 14:58:49 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:49 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:49 2001: - Got ARRAY(0x40b9599c)()
./foo.pl: Mon Sep 17 14:58:49 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:49 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:49 2001: - Got ARRAY(0x40b95ad4)()
./foo.pl: Mon Sep 17 14:58:49 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:49 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:49 2001: - Got ARRAY(0x40b95c20)()
./foo.pl: Mon Sep 17 14:58:49 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:49 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:49 2001: - Got ARRAY(0x40b95d58)()
./foo.pl: Mon Sep 17 14:58:49 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:49 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:49 2001: - Got ARRAY(0x40b95e90)()
./foo.pl: Mon Sep 17 14:58:49 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:49 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:49 2001: - Got ARRAY(0x40b95fc8)()
./foo.pl: Mon Sep 17 14:58:49 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:49 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:49 2001: - Got ARRAY(0x40b96d1c)()
./foo.pl: Mon Sep 17 14:58:49 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:49 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:49 2001: - Got ARRAY(0x40b96e54)()
./foo.pl: Mon Sep 17 14:58:49 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:49 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:49 2001: - Got ARRAY(0x40b96f8c)()
./foo.pl: Mon Sep 17 14:58:49 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:49 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:49 2001: - Got ARRAY(0x40b984e0)()
./foo.pl: Mon Sep 17 14:58:49 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:49 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:49 2001: - Got ARRAY(0x40b98618)()
./foo.pl: Mon Sep 17 14:58:49 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:49 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:49 2001: - Sleeping
./foo.pl: Mon Sep 17 14:58:59 2001: - Done sleeping
./foo.pl: Mon Sep 17 14:58:59 2001: - Got ARRAY(0x40b98750)()
./foo.pl: Mon Sep 17 14:58:59 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:59 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:59 2001: - Got ARRAY(0x40b990ac)()
./foo.pl: Mon Sep 17 14:58:59 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:59 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:59 2001: - Got ARRAY(0x40b991e4)()
./foo.pl: Mon Sep 17 14:58:59 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:59 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:59 2001: - Got ARRAY(0x40b9931c)()
./foo.pl: Mon Sep 17 14:58:59 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:59 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:59 2001: - Got ARRAY(0x40b9a870)()
./foo.pl: Mon Sep 17 14:58:59 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:59 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:59 2001: - Got ARRAY(0x40b9a9a8)()
./foo.pl: Mon Sep 17 14:58:59 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:59 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:59 2001: - Got ARRAY(0x40b9aae0)()
./foo.pl: Mon Sep 17 14:58:59 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:59 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:59 2001: - Got ARRAY(0x40b9b034)()
./foo.pl: Mon Sep 17 14:58:59 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:59 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:59 2001: - Got ARRAY(0x40b9b16c)()
./foo.pl: Mon Sep 17 14:58:59 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:59 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:59 2001: - Got ARRAY(0x40b9b2a4)()
./foo.pl: Mon Sep 17 14:58:59 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:59 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:59 2001: - Got ARRAY(0x40b9b3dc)()
./foo.pl: Mon Sep 17 14:58:59 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:59 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:59 2001: - Got ARRAY(0x40b9c130)()
./foo.pl: Mon Sep 17 14:58:59 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:59 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:59 2001: - Got ARRAY(0x40b9c268)()
./foo.pl: Mon Sep 17 14:58:59 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:59 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:59 2001: - Got ARRAY(0x40b9c3a0)()
./foo.pl: Mon Sep 17 14:58:59 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:59 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:59 2001: - Got ARRAY(0x40b9c8f4)()
./foo.pl: Mon Sep 17 14:58:59 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:59 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:59 2001: - Got ARRAY(0x40b9ca2c)()
./foo.pl: Mon Sep 17 14:58:59 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:59 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:59 2001: - Got ARRAY(0x40b9cb64)()
./foo.pl: Mon Sep 17 14:58:59 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:59 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:59 2001: - Got ARRAY(0x40b9d8b8)()
./foo.pl: Mon Sep 17 14:58:59 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:59 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:59 2001: - Got ARRAY(0x40b9d9f0)()
./foo.pl: Mon Sep 17 14:58:59 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:59 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:59 2001: - Got ARRAY(0x40b9db28)()
./foo.pl: Mon Sep 17 14:58:59 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:59 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:59 2001: - Got ARRAY(0x40b9ec74)()
./foo.pl: Mon Sep 17 14:58:59 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:59 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:59 2001: - Got ARRAY(0x40b9edac)()
./foo.pl: Mon Sep 17 14:58:59 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:59 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:59 2001: - Got ARRAY(0x40b9eee4)()
./foo.pl: Mon Sep 17 14:58:59 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:59 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:59 2001: - Got ARRAY(0x40b9f438)()
./foo.pl: Mon Sep 17 14:58:59 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:59 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:59 2001: - Got ARRAY(0x40b9f570)()
./foo.pl: Mon Sep 17 14:58:59 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:59 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:59 2001: - Got ARRAY(0x40b9f6a8)()
./foo.pl: Mon Sep 17 14:58:59 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:59 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:59 2001: - Got ARRAY(0x40b9f7e0)()
./foo.pl: Mon Sep 17 14:58:59 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:59 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:59 2001: - Got ARRAY(0x40ba0d34)()
./foo.pl: Mon Sep 17 14:58:59 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:59 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:59 2001: - Got ARRAY(0x40ba0e6c)()
./foo.pl: Mon Sep 17 14:58:59 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:59 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:59 2001: - Got ARRAY(0x40ba0fa4)()
./foo.pl: Mon Sep 17 14:58:59 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:59 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:59 2001: - Got ARRAY(0x40ba1100)()
./foo.pl: Mon Sep 17 14:58:59 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:59 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:59 2001: - Got ARRAY(0x40ba1238)()
./foo.pl: Mon Sep 17 14:58:59 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:59 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:59 2001: - Got ARRAY(0x40ba1370)()
./foo.pl: Mon Sep 17 14:58:59 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:59 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:59 2001: - Got ARRAY(0x40ba18c4)()
./foo.pl: Mon Sep 17 14:58:59 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:59 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:59 2001: - Got ARRAY(0x40ba19fc)()
./foo.pl: Mon Sep 17 14:58:59 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:59 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:59 2001: - Got ARRAY(0x40ba1b34)()
./foo.pl: Mon Sep 17 14:58:59 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:59 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:59 2001: - Got ARRAY(0x40ba3088)()
./foo.pl: Mon Sep 17 14:58:59 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:59 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:59 2001: - Got ARRAY(0x40ba31c0)()
./foo.pl: Mon Sep 17 14:58:59 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:59 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:59 2001: - Got ARRAY(0x40ba32f8)()
./foo.pl: Mon Sep 17 14:58:59 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:59 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:59 2001: - Got ARRAY(0x40ba384c)()
./foo.pl: Mon Sep 17 14:58:59 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:59 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:59 2001: - Got ARRAY(0x40ba3984)()
./foo.pl: Mon Sep 17 14:58:59 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:59 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:59 2001: - Got ARRAY(0x40ba3abc)()
./foo.pl: Mon Sep 17 14:58:59 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:59 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:59 2001: - Got ARRAY(0x40ba3bf4)()
./foo.pl: Mon Sep 17 14:58:59 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:59 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:59 2001: - Got ARRAY(0x40ba4d40)()
./foo.pl: Mon Sep 17 14:58:59 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:59 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:59 2001: - Got ARRAY(0x40ba4e78)()
./foo.pl: Mon Sep 17 14:58:59 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:59 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:59 2001: - Got ARRAY(0x40ba4fb0)()
./foo.pl: Mon Sep 17 14:58:59 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:59 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:59 2001: - Got ARRAY(0x40ba5504)()
./foo.pl: Mon Sep 17 14:58:59 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:59 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:59 2001: - Got ARRAY(0x40ba563c)()
./foo.pl: Mon Sep 17 14:58:59 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:59 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:59 2001: - Got ARRAY(0x40ba5774)()
./foo.pl: Mon Sep 17 14:58:59 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:59 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:59 2001: - Got ARRAY(0x40ba5cc8)()
./foo.pl: Mon Sep 17 14:58:59 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:59 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:59 2001: - Got ARRAY(0x40ba5e00)()
./foo.pl: Mon Sep 17 14:58:59 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:59 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:58:59 2001: - Got ARRAY(0x40ba5f38)()
./foo.pl: Mon Sep 17 14:58:59 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:00 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:00 2001: - Got ARRAY(0x40ba748c)()
./foo.pl: Mon Sep 17 14:59:00 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:00 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:00 2001: - Got ARRAY(0x40ba75c4)()
./foo.pl: Mon Sep 17 14:59:00 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:00 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:00 2001: - Got ARRAY(0x40ba76fc)()
./foo.pl: Mon Sep 17 14:59:00 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:00 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:00 2001: - Got ARRAY(0x40ba8450)()
./foo.pl: Mon Sep 17 14:59:00 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:00 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:00 2001: - Got ARRAY(0x40ba8588)()
./foo.pl: Mon Sep 17 14:59:00 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:00 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:00 2001: - Got ARRAY(0x40ba86c0)()
./foo.pl: Mon Sep 17 14:59:00 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:00 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:00 2001: - Got ARRAY(0x40ba9414)()
./foo.pl: Mon Sep 17 14:59:00 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:00 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:00 2001: - Got ARRAY(0x40ba954c)()
./foo.pl: Mon Sep 17 14:59:00 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:00 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:00 2001: - Got ARRAY(0x40ba9684)()
./foo.pl: Mon Sep 17 14:59:00 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:00 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:00 2001: - Got ARRAY(0x40ba97bc)()
./foo.pl: Mon Sep 17 14:59:00 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:00 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:00 2001: - Sleeping
./foo.pl: Mon Sep 17 14:59:00 2001: - Got ARRAY(0x40baa918)()
./foo.pl: Mon Sep 17 14:59:00 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:00 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:00 2001: - Got ARRAY(0x40baaa50)()
./foo.pl: Mon Sep 17 14:59:00 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:00 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:00 2001: - Got ARRAY(0x40baab88)()
./foo.pl: Mon Sep 17 14:59:00 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:00 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:00 2001: - Got ARRAY(0x40baacd4)()
./foo.pl: Mon Sep 17 14:59:00 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:00 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:00 2001: - Got ARRAY(0x40baae0c)()
./foo.pl: Mon Sep 17 14:59:00 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:00 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:00 2001: - Got ARRAY(0x40baaf44)()
./foo.pl: Mon Sep 17 14:59:00 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:00 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:00 2001: - Got ARRAY(0x40babc98)()
./foo.pl: Mon Sep 17 14:59:00 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:00 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:00 2001: - Got ARRAY(0x40babdd0)()
./foo.pl: Mon Sep 17 14:59:00 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:00 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:00 2001: - Got ARRAY(0x40babf08)()
./foo.pl: Mon Sep 17 14:59:00 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:00 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:00 2001: - Got ARRAY(0x40bacc5c)()
./foo.pl: Mon Sep 17 14:59:00 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:00 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:00 2001: - Got ARRAY(0x40bacd94)()
./foo.pl: Mon Sep 17 14:59:00 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:00 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:00 2001: - Got ARRAY(0x40bacecc)()
./foo.pl: Mon Sep 17 14:59:00 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:00 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:00 2001: - Got ARRAY(0x40badc20)()
./foo.pl: Mon Sep 17 14:59:00 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:00 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:00 2001: - Got ARRAY(0x40badd58)()
./foo.pl: Mon Sep 17 14:59:00 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:00 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:00 2001: - Got ARRAY(0x40bade90)()
./foo.pl: Mon Sep 17 14:59:00 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:00 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:00 2001: - Got ARRAY(0x40badfc8)()
./foo.pl: Mon Sep 17 14:59:00 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:00 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:00 2001: - Got ARRAY(0x40baf51c)()
./foo.pl: Mon Sep 17 14:59:00 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:00 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:00 2001: - Got ARRAY(0x40baf654)()
./foo.pl: Mon Sep 17 14:59:00 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:00 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:00 2001: - Got ARRAY(0x40baf78c)()
./foo.pl: Mon Sep 17 14:59:00 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:00 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:00 2001: - Got ARRAY(0x40bafce0)()
./foo.pl: Mon Sep 17 14:59:00 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:00 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:00 2001: - Got ARRAY(0x40bafe18)()
./foo.pl: Mon Sep 17 14:59:00 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:00 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:00 2001: - Got ARRAY(0x40baff50)()
./foo.pl: Mon Sep 17 14:59:00 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:00 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:00 2001: - Got ARRAY(0x40bb18ac)()
./foo.pl: Mon Sep 17 14:59:00 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:00 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:00 2001: - Got ARRAY(0x40bb19e4)()
./foo.pl: Mon Sep 17 14:59:00 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:00 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:00 2001: - Got ARRAY(0x40bb1b1c)()
./foo.pl: Mon Sep 17 14:59:00 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:00 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:00 2001: - Got ARRAY(0x40bb2070)()
./foo.pl: Mon Sep 17 14:59:00 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:00 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:00 2001: - Got ARRAY(0x40bb21a8)()
./foo.pl: Mon Sep 17 14:59:00 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:00 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:00 2001: - Got ARRAY(0x40bb22e0)()
./foo.pl: Mon Sep 17 14:59:00 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:00 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:00 2001: - Got ARRAY(0x40bb3034)()
./foo.pl: Mon Sep 17 14:59:00 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:00 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:00 2001: - Got ARRAY(0x40bb316c)()
./foo.pl: Mon Sep 17 14:59:00 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:00 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:00 2001: - Got ARRAY(0x40bb32a4)()
./foo.pl: Mon Sep 17 14:59:00 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:00 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:00 2001: - Got ARRAY(0x40bb33dc)()
./foo.pl: Mon Sep 17 14:59:00 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:00 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:00 2001: - Got ARRAY(0x40bb4130)()
./foo.pl: Mon Sep 17 14:59:00 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:00 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:00 2001: - Got ARRAY(0x40bb4268)()
./foo.pl: Mon Sep 17 14:59:00 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:00 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:00 2001: - Got ARRAY(0x40bb43a0)()
./foo.pl: Mon Sep 17 14:59:00 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:00 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:00 2001: - Got ARRAY(0x40bb48f4)()
./foo.pl: Mon Sep 17 14:59:00 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:00 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:00 2001: - Got ARRAY(0x40bb4a2c)()
./foo.pl: Mon Sep 17 14:59:00 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:00 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:00 2001: - Got ARRAY(0x40bb4b64)()
./foo.pl: Mon Sep 17 14:59:00 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:00 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:00 2001: - Got ARRAY(0x40bb4cb0)()
./foo.pl: Mon Sep 17 14:59:00 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:00 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:00 2001: - Got ARRAY(0x40bb4de8)()
./foo.pl: Mon Sep 17 14:59:00 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:00 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:10 2001: - Done sleeping
./foo.pl: Mon Sep 17 14:59:10 2001: - Got ARRAY(0x40bb4f20)()
./foo.pl: Mon Sep 17 14:59:10 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:10 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:10 2001: - Got ARRAY(0x40bb687c)()
./foo.pl: Mon Sep 17 14:59:10 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:10 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:10 2001: - Got ARRAY(0x40bb69b4)()
./foo.pl: Mon Sep 17 14:59:10 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:10 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:10 2001: - Got ARRAY(0x40bb6aec)()
./foo.pl: Mon Sep 17 14:59:10 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:10 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:10 2001: - Got ARRAY(0x40bb7438)()
./foo.pl: Mon Sep 17 14:59:10 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:10 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:10 2001: - Got ARRAY(0x40bb7570)()
./foo.pl: Mon Sep 17 14:59:10 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:10 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:10 2001: - Got ARRAY(0x40bb76a8)()
./foo.pl: Mon Sep 17 14:59:10 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:10 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:10 2001: - Got ARRAY(0x40bb77e0)()
./foo.pl: Mon Sep 17 14:59:10 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:10 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:10 2001: - Got ARRAY(0x40bb8534)()
./foo.pl: Mon Sep 17 14:59:10 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:10 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:10 2001: - Got ARRAY(0x40bb866c)()
./foo.pl: Mon Sep 17 14:59:10 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:10 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:10 2001: - Got ARRAY(0x40bb87a4)()
./foo.pl: Mon Sep 17 14:59:10 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:10 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:10 2001: - Got ARRAY(0x40bb8cf8)()
./foo.pl: Mon Sep 17 14:59:10 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:10 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:10 2001: - Got ARRAY(0x40bb8e30)()
./foo.pl: Mon Sep 17 14:59:10 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:10 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:10 2001: - Got ARRAY(0x40bb8f68)()
./foo.pl: Mon Sep 17 14:59:10 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:10 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:10 2001: - Got ARRAY(0x40bb9cbc)()
./foo.pl: Mon Sep 17 14:59:10 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:10 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:10 2001: - Got ARRAY(0x40bb9df4)()
./foo.pl: Mon Sep 17 14:59:10 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:10 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:10 2001: - Got ARRAY(0x40bb9f2c)()
./foo.pl: Mon Sep 17 14:59:10 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:10 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:10 2001: - Got ARRAY(0x40bbac80)()
./foo.pl: Mon Sep 17 14:59:10 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:10 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:10 2001: - Got ARRAY(0x40bbadb8)()
./foo.pl: Mon Sep 17 14:59:10 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:10 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:10 2001: - Got ARRAY(0x40bbaef0)()
./foo.pl: Mon Sep 17 14:59:10 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:10 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:10 2001: - Got ARRAY(0x40bbb444)()
./foo.pl: Mon Sep 17 14:59:10 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:10 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:10 2001: - Got ARRAY(0x40bbb57c)()
./foo.pl: Mon Sep 17 14:59:10 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:10 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:10 2001: - Got ARRAY(0x40bbb6b4)()
./foo.pl: Mon Sep 17 14:59:10 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:10 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:10 2001: - Got ARRAY(0x40bbb7ec)()
./foo.pl: Mon Sep 17 14:59:10 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:10 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:10 2001: - Got ARRAY(0x40bbc948)()
./foo.pl: Mon Sep 17 14:59:10 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:10 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:10 2001: - Got ARRAY(0x40bbca80)()
./foo.pl: Mon Sep 17 14:59:10 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:10 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:10 2001: - Got ARRAY(0x40bbcbb8)()
./foo.pl: Mon Sep 17 14:59:10 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:10 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:10 2001: - Got ARRAY(0x40bbe10c)()
./foo.pl: Mon Sep 17 14:59:10 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:10 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:10 2001: - Got ARRAY(0x40bbe244)()
./foo.pl: Mon Sep 17 14:59:10 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:10 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:10 2001: - Got ARRAY(0x40bbe37c)()
./foo.pl: Mon Sep 17 14:59:10 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:10 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:10 2001: - Got ARRAY(0x40bbf0d0)()
./foo.pl: Mon Sep 17 14:59:10 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:10 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:10 2001: - Got ARRAY(0x40bbf208)()
./foo.pl: Mon Sep 17 14:59:10 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:10 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:10 2001: - Got ARRAY(0x40bbf340)()
./foo.pl: Mon Sep 17 14:59:10 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:10 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:10 2001: - Got ARRAY(0x40bbf894)()
./foo.pl: Mon Sep 17 14:59:10 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:10 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:10 2001: - Got ARRAY(0x40bbf9cc)()
./foo.pl: Mon Sep 17 14:59:10 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:10 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:10 2001: - Got ARRAY(0x40bbfb04)()
./foo.pl: Mon Sep 17 14:59:10 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:10 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:10 2001: - Got ARRAY(0x40bbfc50)()
./foo.pl: Mon Sep 17 14:59:10 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:10 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:10 2001: - Got ARRAY(0x40bbfd88)()
./foo.pl: Mon Sep 17 14:59:10 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:10 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:10 2001: - Got ARRAY(0x40bbfec0)()
./foo.pl: Mon Sep 17 14:59:10 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:10 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:10 2001: - Got ARRAY(0x40bc0c14)()
./foo.pl: Mon Sep 17 14:59:10 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:10 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:10 2001: - Got ARRAY(0x40bc0d4c)()
./foo.pl: Mon Sep 17 14:59:10 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:10 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:10 2001: - Got ARRAY(0x40bc0e84)()
./foo.pl: Mon Sep 17 14:59:10 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:10 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:10 2001: - Got ARRAY(0x40bc0fbc)()
./foo.pl: Mon Sep 17 14:59:10 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:10 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:10 2001: - Got ARRAY(0x40bc1510)()
./foo.pl: Mon Sep 17 14:59:10 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:10 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:10 2001: - Got ARRAY(0x40bc1648)()
./foo.pl: Mon Sep 17 14:59:10 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:10 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:10 2001: - Got ARRAY(0x40bc1780)()
./foo.pl: Mon Sep 17 14:59:10 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:10 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:10 2001: - Got ARRAY(0x40bc38dc)()
./foo.pl: Mon Sep 17 14:59:10 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:10 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:10 2001: - Got ARRAY(0x40bc3a14)()
./foo.pl: Mon Sep 17 14:59:10 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:10 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:10 2001: - Got ARRAY(0x40bc3b4c)()
./foo.pl: Mon Sep 17 14:59:10 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:10 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:10 2001: - Got ARRAY(0x40bc48a0)()
./foo.pl: Mon Sep 17 14:59:10 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:10 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:10 2001: - Got ARRAY(0x40bc49d8)()
./foo.pl: Mon Sep 17 14:59:10 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:10 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:10 2001: - Got ARRAY(0x40bc4b10)()
./foo.pl: Mon Sep 17 14:59:10 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:10 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:10 2001: - Got ARRAY(0x40bc5864)()
./foo.pl: Mon Sep 17 14:59:10 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:10 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:10 2001: - Got ARRAY(0x40bc599c)()
./foo.pl: Mon Sep 17 14:59:10 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:10 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:10 2001: - Got ARRAY(0x40bc5ad4)()
./foo.pl: Mon Sep 17 14:59:10 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:10 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:10 2001: - Got ARRAY(0x40bc6028)()
./foo.pl: Mon Sep 17 14:59:10 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:10 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:10 2001: - Got ARRAY(0x40bc6160)()
./foo.pl: Mon Sep 17 14:59:10 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:10 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:10 2001: - Got ARRAY(0x40bc6298)()
./foo.pl: Mon Sep 17 14:59:10 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:10 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:10 2001: - Got ARRAY(0x40bc63d0)()
./foo.pl: Mon Sep 17 14:59:10 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:10 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:10 2001: - Got ARRAY(0x40bc7124)()
./foo.pl: Mon Sep 17 14:59:10 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:10 2001: - Sleeping
./foo.pl: Mon Sep 17 14:59:10 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:10 2001: - Got ARRAY(0x40bc725c)()
./foo.pl: Mon Sep 17 14:59:10 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:10 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:10 2001: - Got ARRAY(0x40bc7394)()
./foo.pl: Mon Sep 17 14:59:10 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:10 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:10 2001: - Got ARRAY(0x40bc88e8)()
./foo.pl: Mon Sep 17 14:59:10 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:10 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:10 2001: - Got ARRAY(0x40bc8a20)()
./foo.pl: Mon Sep 17 14:59:10 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:10 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:10 2001: - Got ARRAY(0x40bc8b58)()
./foo.pl: Mon Sep 17 14:59:10 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:10 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:10 2001: - Got ARRAY(0x40bc94a4)()
./foo.pl: Mon Sep 17 14:59:10 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:10 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:10 2001: - Got ARRAY(0x40bc95dc)()
./foo.pl: Mon Sep 17 14:59:10 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:10 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:10 2001: - Got ARRAY(0x40bc9714)()
./foo.pl: Mon Sep 17 14:59:10 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:10 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:10 2001: - Got ARRAY(0x40bca468)()
./foo.pl: Mon Sep 17 14:59:10 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:10 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:10 2001: - Got ARRAY(0x40bca5a0)()
./foo.pl: Mon Sep 17 14:59:10 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:10 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:10 2001: - Got ARRAY(0x40bca6d8)()
./foo.pl: Mon Sep 17 14:59:10 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:10 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:10 2001: - Got ARRAY(0x40bca834)()
./foo.pl: Mon Sep 17 14:59:10 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:10 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:10 2001: - Got ARRAY(0x40bca96c)()
./foo.pl: Mon Sep 17 14:59:10 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:10 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:10 2001: - Got ARRAY(0x40bcaaa4)()
./foo.pl: Mon Sep 17 14:59:10 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:10 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:10 2001: - Got ARRAY(0x40bcabdc)()
./foo.pl: Mon Sep 17 14:59:10 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:10 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:10 2001: - Got ARRAY(0x40bcb130)()
./foo.pl: Mon Sep 17 14:59:10 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:10 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:10 2001: - Got ARRAY(0x40bcb268)()
./foo.pl: Mon Sep 17 14:59:10 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:10 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:10 2001: - Got ARRAY(0x40bcb3a0)()
./foo.pl: Mon Sep 17 14:59:10 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:10 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:10 2001: - Got ARRAY(0x40bcc8f4)()
./foo.pl: Mon Sep 17 14:59:10 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:10 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:10 2001: - Got ARRAY(0x40bcca2c)()
./foo.pl: Mon Sep 17 14:59:10 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:10 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:10 2001: - Got ARRAY(0x40bccb64)()
./foo.pl: Mon Sep 17 14:59:10 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:10 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:10 2001: - Got ARRAY(0x40bcd0b8)()
./foo.pl: Mon Sep 17 14:59:10 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:10 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:10 2001: - Got ARRAY(0x40bcd1f0)()
./foo.pl: Mon Sep 17 14:59:10 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:10 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:10 2001: - Got ARRAY(0x40bcd328)()
./foo.pl: Mon Sep 17 14:59:10 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:10 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:10 2001: - Got ARRAY(0x40bce07c)()
./foo.pl: Mon Sep 17 14:59:10 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:10 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:10 2001: - Got ARRAY(0x40bce1b4)()
./foo.pl: Mon Sep 17 14:59:10 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:10 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:10 2001: - Got ARRAY(0x40bce2ec)()
./foo.pl: Mon Sep 17 14:59:10 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:10 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:10 2001: - Got ARRAY(0x40bcec38)()
./foo.pl: Mon Sep 17 14:59:10 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:10 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:10 2001: - Got ARRAY(0x40bced70)()
./foo.pl: Mon Sep 17 14:59:10 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:10 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:10 2001: - Got ARRAY(0x40bceea8)()
./foo.pl: Mon Sep 17 14:59:10 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:10 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:10 2001: - Got ARRAY(0x40bcefe0)()
./foo.pl: Mon Sep 17 14:59:10 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:10 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:10 2001: - Got ARRAY(0x40bcf534)()
./foo.pl: Mon Sep 17 14:59:10 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:10 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:10 2001: - Got ARRAY(0x40bcf66c)()
./foo.pl: Mon Sep 17 14:59:10 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:10 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:10 2001: - Got ARRAY(0x40bcf7a4)()
./foo.pl: Mon Sep 17 14:59:10 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:10 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:10 2001: - Got ARRAY(0x40bd04f8)()
./foo.pl: Mon Sep 17 14:59:10 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:10 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:10 2001: - Got ARRAY(0x40bd0630)()
./foo.pl: Mon Sep 17 14:59:10 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:10 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:10 2001: - Got ARRAY(0x40bd0768)()
./foo.pl: Mon Sep 17 14:59:10 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:10 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:10 2001: - Got ARRAY(0x40bd1cbc)()
./foo.pl: Mon Sep 17 14:59:11 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:11 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:11 2001: - Got ARRAY(0x40bd1df4)()
./foo.pl: Mon Sep 17 14:59:11 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:11 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:11 2001: - Got ARRAY(0x40bd1f2c)()
./foo.pl: Mon Sep 17 14:59:11 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:11 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:11 2001: - Got ARRAY(0x40bd2c80)()
./foo.pl: Mon Sep 17 14:59:11 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:11 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:11 2001: - Got ARRAY(0x40bd2db8)()
./foo.pl: Mon Sep 17 14:59:11 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:11 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:20 2001: - Done sleeping
./foo.pl: Mon Sep 17 14:59:20 2001: - Got ARRAY(0x40bd2ef0)()
./foo.pl: Mon Sep 17 14:59:20 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:20 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:20 2001: - Got ARRAY(0x40bd3444)()
./foo.pl: Mon Sep 17 14:59:20 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:20 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:20 2001: - Got ARRAY(0x40bd357c)()
./foo.pl: Mon Sep 17 14:59:20 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:20 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:20 2001: - Got ARRAY(0x40bd36b4)()
./foo.pl: Mon Sep 17 14:59:20 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:20 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:20 2001: - Got ARRAY(0x40bd37ec)()
./foo.pl: Mon Sep 17 14:59:20 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:20 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:20 2001: - Got ARRAY(0x40bd3d40)()
./foo.pl: Mon Sep 17 14:59:20 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:20 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:20 2001: - Got ARRAY(0x40bd3e78)()
./foo.pl: Mon Sep 17 14:59:20 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:20 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:20 2001: - Got ARRAY(0x40bd3fb0)()
./foo.pl: Mon Sep 17 14:59:20 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:20 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:20 2001: - Got ARRAY(0x40bd4504)()
./foo.pl: Mon Sep 17 14:59:20 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:20 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:20 2001: - Got ARRAY(0x40bd463c)()
./foo.pl: Mon Sep 17 14:59:20 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:20 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:20 2001: - Got ARRAY(0x40bd4774)()
./foo.pl: Mon Sep 17 14:59:20 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:20 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:20 2001: - Got ARRAY(0x40bd5cc8)()
./foo.pl: Mon Sep 17 14:59:20 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:20 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:20 2001: - Got ARRAY(0x40bd5e00)()
./foo.pl: Mon Sep 17 14:59:20 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:20 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:20 2001: - Got ARRAY(0x40bd5f38)()
./foo.pl: Mon Sep 17 14:59:20 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:20 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:20 2001: - Got ARRAY(0x40bd648c)()
./foo.pl: Mon Sep 17 14:59:20 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:20 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:20 2001: - Got ARRAY(0x40bd65c4)()
./foo.pl: Mon Sep 17 14:59:20 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:20 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:20 2001: - Got ARRAY(0x40bd66fc)()
./foo.pl: Mon Sep 17 14:59:20 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:20 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:20 2001: - Got ARRAY(0x40bd7450)()
./foo.pl: Mon Sep 17 14:59:20 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:20 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:20 2001: - Got ARRAY(0x40bd7588)()
./foo.pl: Mon Sep 17 14:59:20 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:20 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:20 2001: - Got ARRAY(0x40bd76c0)()
./foo.pl: Mon Sep 17 14:59:20 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:20 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:20 2001: - Got ARRAY(0x40bd8414)()
./foo.pl: Mon Sep 17 14:59:20 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:20 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:20 2001: - Got ARRAY(0x40bd854c)()
./foo.pl: Mon Sep 17 14:59:20 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:20 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:20 2001: - Got ARRAY(0x40bd8684)()
./foo.pl: Mon Sep 17 14:59:20 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:20 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:20 2001: - Got ARRAY(0x40bd87bc)()
./foo.pl: Mon Sep 17 14:59:20 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:20 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:20 2001: - Got ARRAY(0x40bd9510)()
./foo.pl: Mon Sep 17 14:59:20 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:20 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:20 2001: - Got ARRAY(0x40bd9648)()
./foo.pl: Mon Sep 17 14:59:20 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:20 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:20 2001: - Got ARRAY(0x40bd9780)()
./foo.pl: Mon Sep 17 14:59:20 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:20 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:20 2001: - Got ARRAY(0x40bda8dc)()
./foo.pl: Mon Sep 17 14:59:20 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:20 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:20 2001: - Got ARRAY(0x40bdaa14)()
./foo.pl: Mon Sep 17 14:59:20 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:20 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:20 2001: - Got ARRAY(0x40bdab4c)()
./foo.pl: Mon Sep 17 14:59:20 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:20 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:20 2001: - Got ARRAY(0x40bdc8a0)()
./foo.pl: Mon Sep 17 14:59:20 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:20 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:20 2001: - Got ARRAY(0x40bdc9d8)()
./foo.pl: Mon Sep 17 14:59:20 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:20 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:20 2001: - Got ARRAY(0x40bdcb10)()
./foo.pl: Mon Sep 17 14:59:20 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:20 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:20 2001: - Got ARRAY(0x40bdd064)()
./foo.pl: Mon Sep 17 14:59:20 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:20 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:20 2001: - Got ARRAY(0x40bdd19c)()
./foo.pl: Mon Sep 17 14:59:20 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:20 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:20 2001: - Got ARRAY(0x40bdd2d4)()
./foo.pl: Mon Sep 17 14:59:20 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:20 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:20 2001: - Got ARRAY(0x40bde028)()
./foo.pl: Mon Sep 17 14:59:20 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:20 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:20 2001: - Got ARRAY(0x40bde160)()
./foo.pl: Mon Sep 17 14:59:20 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:21 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:21 2001: - Got ARRAY(0x40bde298)()
./foo.pl: Mon Sep 17 14:59:21 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:21 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:21 2001: - Got ARRAY(0x40bde3d0)()
./foo.pl: Mon Sep 17 14:59:21 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:21 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:21 2001: - Got ARRAY(0x40bdf124)()
./foo.pl: Mon Sep 17 14:59:21 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:21 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:21 2001: - Got ARRAY(0x40bdf25c)()
./foo.pl: Mon Sep 17 14:59:21 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:21 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:21 2001: - Got ARRAY(0x40bdf394)()
./foo.pl: Mon Sep 17 14:59:21 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:21 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:21 2001: - Got ARRAY(0x40bdf4e0)()
./foo.pl: Mon Sep 17 14:59:21 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:21 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:21 2001: - Got ARRAY(0x40bdf618)()
./foo.pl: Mon Sep 17 14:59:21 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:21 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:21 2001: - Got ARRAY(0x40bdf750)()
./foo.pl: Mon Sep 17 14:59:21 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:21 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:21 2001: - Got ARRAY(0x40bdfca4)()
./foo.pl: Mon Sep 17 14:59:21 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:21 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:21 2001: - Got ARRAY(0x40bdfddc)()
./foo.pl: Mon Sep 17 14:59:21 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:21 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:21 2001: - Got ARRAY(0x40bdff14)()
./foo.pl: Mon Sep 17 14:59:21 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:21 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:21 2001: - Got ARRAY(0x40be1070)()
./foo.pl: Mon Sep 17 14:59:21 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:21 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:21 2001: - Got ARRAY(0x40be11a8)()
./foo.pl: Mon Sep 17 14:59:21 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:21 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:21 2001: - Got ARRAY(0x40be12e0)()
./foo.pl: Mon Sep 17 14:59:21 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:21 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:21 2001: - Got ARRAY(0x40be1834)()
./foo.pl: Mon Sep 17 14:59:21 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:21 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:21 2001: - Got ARRAY(0x40be196c)()
./foo.pl: Mon Sep 17 14:59:21 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:21 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:21 2001: - Got ARRAY(0x40be1aa4)()
./foo.pl: Mon Sep 17 14:59:21 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:21 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:21 2001: - Got ARRAY(0x40be1bdc)()
./foo.pl: Mon Sep 17 14:59:21 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:21 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:21 2001: - Got ARRAY(0x40be3130)()
./foo.pl: Mon Sep 17 14:59:21 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:21 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:21 2001: - Got ARRAY(0x40be3268)()
./foo.pl: Mon Sep 17 14:59:21 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:21 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:21 2001: - Got ARRAY(0x40be33a0)()
./foo.pl: Mon Sep 17 14:59:21 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:21 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:21 2001: - Got ARRAY(0x40be38f4)()
./foo.pl: Mon Sep 17 14:59:21 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:21 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:21 2001: - Got ARRAY(0x40be3a2c)()
./foo.pl: Mon Sep 17 14:59:21 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:21 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:21 2001: - Got ARRAY(0x40be3b64)()
./foo.pl: Mon Sep 17 14:59:21 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:21 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:21 2001: - Got ARRAY(0x40be50b8)()
./foo.pl: Mon Sep 17 14:59:21 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:21 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:21 2001: - Got ARRAY(0x40be51f0)()
./foo.pl: Mon Sep 17 14:59:21 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:21 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:21 2001: - Got ARRAY(0x40be5328)()
./foo.pl: Mon Sep 17 14:59:21 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:21 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:21 2001: - Got ARRAY(0x40be587c)()
./foo.pl: Mon Sep 17 14:59:21 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:21 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:21 2001: - Got ARRAY(0x40be59b4)()
./foo.pl: Mon Sep 17 14:59:21 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:21 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:21 2001: - Got ARRAY(0x40be5aec)()
./foo.pl: Mon Sep 17 14:59:21 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:21 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:21 2001: - Got ARRAY(0x40be6438)()
./foo.pl: Mon Sep 17 14:59:21 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:21 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:21 2001: - Got ARRAY(0x40be6570)()
./foo.pl: Mon Sep 17 14:59:21 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:21 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:21 2001: - Got ARRAY(0x40be66a8)()
./foo.pl: Mon Sep 17 14:59:21 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:21 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:21 2001: - Got ARRAY(0x40be67e0)()
./foo.pl: Mon Sep 17 14:59:21 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:21 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:21 2001: - Got ARRAY(0x40be7534)()
./foo.pl: Mon Sep 17 14:59:21 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:21 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:21 2001: - Got ARRAY(0x40be766c)()
./foo.pl: Mon Sep 17 14:59:21 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:21 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:21 2001: - Got ARRAY(0x40be77a4)()
./foo.pl: Mon Sep 17 14:59:21 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:21 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:21 2001: - Got ARRAY(0x40be84f8)()
./foo.pl: Mon Sep 17 14:59:21 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:21 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:21 2001: - Got ARRAY(0x40be8630)()
./foo.pl: Mon Sep 17 14:59:21 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:21 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:21 2001: - Got ARRAY(0x40be8768)()
./foo.pl: Mon Sep 17 14:59:21 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:21 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:21 2001: - Got ARRAY(0x40be90c4)()
./foo.pl: Mon Sep 17 14:59:21 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:21 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:21 2001: - Got ARRAY(0x40be91fc)()
./foo.pl: Mon Sep 17 14:59:21 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:21 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:21 2001: - Got ARRAY(0x40be9334)()
./foo.pl: Mon Sep 17 14:59:21 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:21 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:21 2001: - Got ARRAY(0x40be9888)()
./foo.pl: Mon Sep 17 14:59:21 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:21 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:21 2001: - Got ARRAY(0x40be99c0)()
./foo.pl: Mon Sep 17 14:59:21 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:21 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:21 2001: - Got ARRAY(0x40be9af8)()
./foo.pl: Mon Sep 17 14:59:21 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:21 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:21 2001: - Got ARRAY(0x40bea04c)()
./foo.pl: Mon Sep 17 14:59:21 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:21 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:21 2001: - Got ARRAY(0x40bea184)()
./foo.pl: Mon Sep 17 14:59:21 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:21 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:21 2001: - Got ARRAY(0x40bea2bc)()
./foo.pl: Mon Sep 17 14:59:21 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:21 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:21 2001: - Got ARRAY(0x40bea3f4)()
./foo.pl: Mon Sep 17 14:59:21 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:21 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:21 2001: - Got ARRAY(0x40beb948)()
./foo.pl: Mon Sep 17 14:59:21 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:21 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:21 2001: - Got ARRAY(0x40beba80)()
./foo.pl: Mon Sep 17 14:59:21 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:21 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:21 2001: - Got ARRAY(0x40bebbb8)()
./foo.pl: Mon Sep 17 14:59:21 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:21 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:21 2001: - Got ARRAY(0x40bec504)()
./foo.pl: Mon Sep 17 14:59:21 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:21 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:21 2001: - Got ARRAY(0x40bec63c)()
./foo.pl: Mon Sep 17 14:59:21 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:21 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:21 2001: - Got ARRAY(0x40bec774)()
./foo.pl: Mon Sep 17 14:59:21 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:21 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:21 2001: - Got ARRAY(0x40bed4c8)()
./foo.pl: Mon Sep 17 14:59:21 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:21 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:21 2001: - Got ARRAY(0x40bed600)()
./foo.pl: Mon Sep 17 14:59:21 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:21 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:21 2001: - Got ARRAY(0x40bed738)()
./foo.pl: Mon Sep 17 14:59:21 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:21 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:21 2001: - Got ARRAY(0x40bee48c)()
./foo.pl: Mon Sep 17 14:59:21 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:21 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:21 2001: - Got ARRAY(0x40bee5c4)()
./foo.pl: Mon Sep 17 14:59:21 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:21 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:21 2001: - Got ARRAY(0x40bee6fc)()
./foo.pl: Mon Sep 17 14:59:21 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:21 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:21 2001: - Got ARRAY(0x40befc50)()
./foo.pl: Mon Sep 17 14:59:21 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:21 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:21 2001: - Got ARRAY(0x40befd88)()
./foo.pl: Mon Sep 17 14:59:21 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:21 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:21 2001: - Sleeping
./foo.pl: Mon Sep 17 14:59:31 2001: - Done sleeping
./foo.pl: Mon Sep 17 14:59:31 2001: - Got ARRAY(0x40befec0)()
./foo.pl: Mon Sep 17 14:59:31 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:31 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:31 2001: - Got ARRAY(0x40bf0c14)()
./foo.pl: Mon Sep 17 14:59:31 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:31 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:31 2001: - Got ARRAY(0x40bf0d4c)()
./foo.pl: Mon Sep 17 14:59:31 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:31 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:31 2001: - Got ARRAY(0x40bf0e84)()
./foo.pl: Mon Sep 17 14:59:31 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:31 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:31 2001: - Got ARRAY(0x40bf0fbc)()
./foo.pl: Mon Sep 17 14:59:31 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:31 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:31 2001: - Got ARRAY(0x40bf1d10)()
./foo.pl: Mon Sep 17 14:59:31 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:31 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:31 2001: - Got ARRAY(0x40bf1e48)()
./foo.pl: Mon Sep 17 14:59:31 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:31 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:31 2001: - Got ARRAY(0x40bf1f80)()
./foo.pl: Mon Sep 17 14:59:31 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:31 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:31 2001: - Got ARRAY(0x40bf30dc)()
./foo.pl: Mon Sep 17 14:59:31 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:31 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:31 2001: - Got ARRAY(0x40bf3214)()
./foo.pl: Mon Sep 17 14:59:31 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:31 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:31 2001: - Got ARRAY(0x40bf334c)()
./foo.pl: Mon Sep 17 14:59:31 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:31 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:31 2001: - Got ARRAY(0x40bf38a0)()
./foo.pl: Mon Sep 17 14:59:31 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:31 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:31 2001: - Got ARRAY(0x40bf39d8)()
./foo.pl: Mon Sep 17 14:59:31 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:31 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:31 2001: - Got ARRAY(0x40bf3b10)()
./foo.pl: Mon Sep 17 14:59:31 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:31 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:31 2001: - Got ARRAY(0x40bf3c5c)()
./foo.pl: Mon Sep 17 14:59:31 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:31 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:31 2001: - Got ARRAY(0x40bf3d94)()
./foo.pl: Mon Sep 17 14:59:31 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:31 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:31 2001: - Got ARRAY(0x40bf3ecc)()
./foo.pl: Mon Sep 17 14:59:31 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:31 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:31 2001: - Got ARRAY(0x40bf4c20)()
./foo.pl: Mon Sep 17 14:59:31 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:31 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:31 2001: - Got ARRAY(0x40bf4d58)()
./foo.pl: Mon Sep 17 14:59:31 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:31 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:31 2001: - Got ARRAY(0x40bf4e90)()
./foo.pl: Mon Sep 17 14:59:31 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:31 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:31 2001: - Got ARRAY(0x40bf4fc8)()
./foo.pl: Mon Sep 17 14:59:31 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:31 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:31 2001: - Got ARRAY(0x40bf651c)()
./foo.pl: Mon Sep 17 14:59:31 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:31 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:31 2001: - Got ARRAY(0x40bf6654)()
./foo.pl: Mon Sep 17 14:59:31 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:31 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:31 2001: - Got ARRAY(0x40bf678c)()
./foo.pl: Mon Sep 17 14:59:31 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:31 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:31 2001: - Got ARRAY(0x40bf74e0)()
./foo.pl: Mon Sep 17 14:59:31 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:31 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:31 2001: - Got ARRAY(0x40bf7618)()
./foo.pl: Mon Sep 17 14:59:31 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:31 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:31 2001: - Got ARRAY(0x40bf7750)()
./foo.pl: Mon Sep 17 14:59:31 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:31 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:31 2001: - Got ARRAY(0x40bf7ca4)()
./foo.pl: Mon Sep 17 14:59:31 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:31 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:31 2001: - Got ARRAY(0x40bf7ddc)()
./foo.pl: Mon Sep 17 14:59:31 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:31 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:31 2001: - Got ARRAY(0x40bf7f14)()
./foo.pl: Mon Sep 17 14:59:31 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:31 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:31 2001: - Got ARRAY(0x40bf9870)()
./foo.pl: Mon Sep 17 14:59:31 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:31 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:31 2001: - Got ARRAY(0x40bf99a8)()
./foo.pl: Mon Sep 17 14:59:31 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:31 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:31 2001: - Got ARRAY(0x40bf9ae0)()
./foo.pl: Mon Sep 17 14:59:31 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:31 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:31 2001: - Got ARRAY(0x40bfa034)()
./foo.pl: Mon Sep 17 14:59:31 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:31 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:31 2001: - Got ARRAY(0x40bfa16c)()
./foo.pl: Mon Sep 17 14:59:31 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:31 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:31 2001: - Got ARRAY(0x40bfa2a4)()
./foo.pl: Mon Sep 17 14:59:31 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:31 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:31 2001: - Got ARRAY(0x40bfa3dc)()
./foo.pl: Mon Sep 17 14:59:31 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:31 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:31 2001: - Got ARRAY(0x40bfb130)()
./foo.pl: Mon Sep 17 14:59:31 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:31 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:31 2001: - Got ARRAY(0x40bfb268)()
./foo.pl: Mon Sep 17 14:59:31 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:31 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:31 2001: - Got ARRAY(0x40bfb3a0)()
./foo.pl: Mon Sep 17 14:59:31 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:31 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:31 2001: - Got ARRAY(0x40bfc0f4)()
./foo.pl: Mon Sep 17 14:59:31 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:31 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:31 2001: - Got ARRAY(0x40bfc22c)()
./foo.pl: Mon Sep 17 14:59:31 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:31 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:31 2001: - Got ARRAY(0x40bfc364)()
./foo.pl: Mon Sep 17 14:59:31 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:31 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:32 2001: - Got ARRAY(0x40bfc8b8)()
./foo.pl: Mon Sep 17 14:59:32 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:32 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:32 2001: - Got ARRAY(0x40bfc9f0)()
./foo.pl: Mon Sep 17 14:59:32 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:32 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:32 2001: - Got ARRAY(0x40bfcb28)()
./foo.pl: Mon Sep 17 14:59:32 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:32 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:32 2001: - Got ARRAY(0x40bfd87c)()
./foo.pl: Mon Sep 17 14:59:32 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:32 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:32 2001: - Got ARRAY(0x40bfd9b4)()
./foo.pl: Mon Sep 17 14:59:32 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:32 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:32 2001: - Got ARRAY(0x40bfdaec)()
./foo.pl: Mon Sep 17 14:59:32 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:32 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:32 2001: - Got ARRAY(0x40bfe040)()
./foo.pl: Mon Sep 17 14:59:32 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:32 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:32 2001: - Got ARRAY(0x40bfe178)()
./foo.pl: Mon Sep 17 14:59:32 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:32 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:32 2001: - Got ARRAY(0x40bfe2b0)()
./foo.pl: Mon Sep 17 14:59:32 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:32 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:32 2001: - Got ARRAY(0x40bfe3e8)()
./foo.pl: Mon Sep 17 14:59:32 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:32 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:32 2001: - Got ARRAY(0x40bff534)()
./foo.pl: Mon Sep 17 14:59:32 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:32 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:32 2001: - Got ARRAY(0x40bff66c)()
./foo.pl: Mon Sep 17 14:59:32 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:32 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:32 2001: - Sleeping
./foo.pl: Mon Sep 17 14:59:32 2001: - Got ARRAY(0x40bff7a4)()
./foo.pl: Mon Sep 17 14:59:32 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:32 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:32 2001: - Got ARRAY(0x40bffcf8)()
./foo.pl: Mon Sep 17 14:59:32 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:32 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:32 2001: - Got ARRAY(0x40bffe30)()
./foo.pl: Mon Sep 17 14:59:32 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:32 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:32 2001: - Got ARRAY(0x40bfff68)()
./foo.pl: Mon Sep 17 14:59:32 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:32 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:32 2001: - Got ARRAY(0x40c00cbc)()
./foo.pl: Mon Sep 17 14:59:32 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:32 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:32 2001: - Got ARRAY(0x40c00df4)()
./foo.pl: Mon Sep 17 14:59:32 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:32 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:32 2001: - Got ARRAY(0x40c00f2c)()
./foo.pl: Mon Sep 17 14:59:32 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:32 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:32 2001: - Got ARRAY(0x40c01480)()
./foo.pl: Mon Sep 17 14:59:32 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:32 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:32 2001: - Got ARRAY(0x40c015b8)()
./foo.pl: Mon Sep 17 14:59:32 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:32 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:32 2001: - Got ARRAY(0x40c016f0)()
./foo.pl: Mon Sep 17 14:59:32 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:32 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:32 2001: - Got ARRAY(0x40c02c44)()
./foo.pl: Mon Sep 17 14:59:32 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:32 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:32 2001: - Got ARRAY(0x40c02d7c)()
./foo.pl: Mon Sep 17 14:59:32 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:32 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:32 2001: - Got ARRAY(0x40c02eb4)()
./foo.pl: Mon Sep 17 14:59:32 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:32 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:32 2001: - Got ARRAY(0x40c02fec)()
./foo.pl: Mon Sep 17 14:59:32 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:32 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:32 2001: - Got ARRAY(0x40c03d40)()
./foo.pl: Mon Sep 17 14:59:32 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:32 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:32 2001: - Got ARRAY(0x40c03e78)()
./foo.pl: Mon Sep 17 14:59:32 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:32 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:32 2001: - Got ARRAY(0x40c03fb0)()
./foo.pl: Mon Sep 17 14:59:32 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:32 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:32 2001: - Got ARRAY(0x40c0510c)()
./foo.pl: Mon Sep 17 14:59:32 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:32 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:32 2001: - Got ARRAY(0x40c05244)()
./foo.pl: Mon Sep 17 14:59:32 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:32 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:32 2001: - Got ARRAY(0x40c0537c)()
./foo.pl: Mon Sep 17 14:59:32 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:32 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:32 2001: - Got ARRAY(0x40c060d0)()
./foo.pl: Mon Sep 17 14:59:32 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:32 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:32 2001: - Got ARRAY(0x40c06208)()
./foo.pl: Mon Sep 17 14:59:32 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:32 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:32 2001: - Got ARRAY(0x40c06340)()
./foo.pl: Mon Sep 17 14:59:32 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:32 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:32 2001: - Got ARRAY(0x40c06894)()
./foo.pl: Mon Sep 17 14:59:32 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:32 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:32 2001: - Got ARRAY(0x40c069cc)()
./foo.pl: Mon Sep 17 14:59:32 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:32 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:32 2001: - Got ARRAY(0x40c06b04)()
./foo.pl: Mon Sep 17 14:59:32 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:32 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:32 2001: - Got ARRAY(0x40c07858)()
./foo.pl: Mon Sep 17 14:59:32 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:32 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:32 2001: - Got ARRAY(0x40c07990)()
./foo.pl: Mon Sep 17 14:59:32 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:32 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:32 2001: - Got ARRAY(0x40c07ac8)()
./foo.pl: Mon Sep 17 14:59:32 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:32 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:32 2001: - Got ARRAY(0x40c07c14)()
./foo.pl: Mon Sep 17 14:59:32 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:32 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:32 2001: - Got ARRAY(0x40c07d4c)()
./foo.pl: Mon Sep 17 14:59:32 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:32 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:32 2001: - Got ARRAY(0x40c07e84)()
./foo.pl: Mon Sep 17 14:59:32 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:32 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:32 2001: - Got ARRAY(0x40c07fbc)()
./foo.pl: Mon Sep 17 14:59:32 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:32 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:32 2001: - Got ARRAY(0x40c08d10)()
./foo.pl: Mon Sep 17 14:59:32 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:32 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:32 2001: - Got ARRAY(0x40c08e48)()
./foo.pl: Mon Sep 17 14:59:32 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:32 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:32 2001: - Got ARRAY(0x40c08f80)()
./foo.pl: Mon Sep 17 14:59:32 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:32 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:32 2001: - Got ARRAY(0x40c09cd4)()
./foo.pl: Mon Sep 17 14:59:32 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:32 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:32 2001: - Got ARRAY(0x40c09e0c)()
./foo.pl: Mon Sep 17 14:59:32 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:32 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:32 2001: - Got ARRAY(0x40c09f44)()
./foo.pl: Mon Sep 17 14:59:32 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:32 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:32 2001: - Got ARRAY(0x40c0a8a0)()
./foo.pl: Mon Sep 17 14:59:32 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:32 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:32 2001: - Got ARRAY(0x40c0a9d8)()
./foo.pl: Mon Sep 17 14:59:32 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:32 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:32 2001: - Got ARRAY(0x40c0ab10)()
./foo.pl: Mon Sep 17 14:59:32 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:32 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:32 2001: - Got ARRAY(0x40c0c064)()
./foo.pl: Mon Sep 17 14:59:32 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:32 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:32 2001: - Got ARRAY(0x40c0c19c)()
./foo.pl: Mon Sep 17 14:59:32 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:32 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:32 2001: - Got ARRAY(0x40c0c2d4)()
./foo.pl: Mon Sep 17 14:59:32 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:32 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:32 2001: - Got ARRAY(0x40c0d028)()
./foo.pl: Mon Sep 17 14:59:32 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:32 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:32 2001: - Got ARRAY(0x40c0d160)()
./foo.pl: Mon Sep 17 14:59:32 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:32 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:32 2001: - Got ARRAY(0x40c0d298)()
./foo.pl: Mon Sep 17 14:59:32 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:32 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:42 2001: - Done sleeping
./foo.pl: Mon Sep 17 14:59:42 2001: - Got ARRAY(0x40c0d3d0)()
./foo.pl: Mon Sep 17 14:59:42 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:42 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:42 2001: - Got ARRAY(0x40c0e124)()
./foo.pl: Mon Sep 17 14:59:42 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:42 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:42 2001: - Got ARRAY(0x40c0e25c)()
./foo.pl: Mon Sep 17 14:59:42 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:42 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:42 2001: - Got ARRAY(0x40c0e394)()
./foo.pl: Mon Sep 17 14:59:42 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:42 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:42 2001: - Got ARRAY(0x40c0e8e8)()
./foo.pl: Mon Sep 17 14:59:42 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:42 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:42 2001: - Got ARRAY(0x40c0ea20)()
./foo.pl: Mon Sep 17 14:59:42 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:42 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:42 2001: - Got ARRAY(0x40c0eb58)()
./foo.pl: Mon Sep 17 14:59:42 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:42 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:42 2001: - Got ARRAY(0x40c0f0ac)()
./foo.pl: Mon Sep 17 14:59:42 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:42 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:42 2001: - Got ARRAY(0x40c0f1e4)()
./foo.pl: Mon Sep 17 14:59:42 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:42 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:42 2001: - Got ARRAY(0x40c0f31c)()
./foo.pl: Mon Sep 17 14:59:42 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:42 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:42 2001: - Got ARRAY(0x40c10468)()
./foo.pl: Mon Sep 17 14:59:42 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:42 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:42 2001: - Got ARRAY(0x40c105a0)()
./foo.pl: Mon Sep 17 14:59:42 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:42 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:42 2001: - Got ARRAY(0x40c106d8)()
./foo.pl: Mon Sep 17 14:59:42 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:42 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:42 2001: - Got ARRAY(0x40c11c2c)()
./foo.pl: Mon Sep 17 14:59:42 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:42 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:42 2001: - Got ARRAY(0x40c11d64)()
./foo.pl: Mon Sep 17 14:59:42 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:42 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:42 2001: - Got ARRAY(0x40c11e9c)()
./foo.pl: Mon Sep 17 14:59:42 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:42 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:42 2001: - Got ARRAY(0x40c11fd4)()
./foo.pl: Mon Sep 17 14:59:42 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:42 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:42 2001: - Got ARRAY(0x40c12d28)()
./foo.pl: Mon Sep 17 14:59:42 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:42 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:42 2001: - Got ARRAY(0x40c12e60)()
./foo.pl: Mon Sep 17 14:59:42 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:42 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:42 2001: - Got ARRAY(0x40c12f98)()
./foo.pl: Mon Sep 17 14:59:42 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:42 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:42 2001: - Got ARRAY(0x40c130f4)()
./foo.pl: Mon Sep 17 14:59:42 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:42 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:42 2001: - Got ARRAY(0x40c1322c)()
./foo.pl: Mon Sep 17 14:59:42 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:42 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:42 2001: - Got ARRAY(0x40c13364)()
./foo.pl: Mon Sep 17 14:59:42 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:42 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:42 2001: - Got ARRAY(0x40c140b8)()
./foo.pl: Mon Sep 17 14:59:42 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:42 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:42 2001: - Got ARRAY(0x40c141f0)()
./foo.pl: Mon Sep 17 14:59:42 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:42 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:42 2001: - Got ARRAY(0x40c14328)()
./foo.pl: Mon Sep 17 14:59:42 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:42 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:42 2001: - Got ARRAY(0x40c1507c)()
./foo.pl: Mon Sep 17 14:59:42 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:42 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:42 2001: - Got ARRAY(0x40c151b4)()
./foo.pl: Mon Sep 17 14:59:42 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:42 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:42 2001: - Got ARRAY(0x40c152ec)()
./foo.pl: Mon Sep 17 14:59:42 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:42 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:42 2001: - Got ARRAY(0x40c16040)()
./foo.pl: Mon Sep 17 14:59:42 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:42 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:42 2001: - Got ARRAY(0x40c16178)()
./foo.pl: Mon Sep 17 14:59:42 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:42 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:42 2001: - Got ARRAY(0x40c162b0)()
./foo.pl: Mon Sep 17 14:59:42 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:42 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:42 2001: - Got ARRAY(0x40c163e8)()
./foo.pl: Mon Sep 17 14:59:42 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:42 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:42 2001: - Got ARRAY(0x40c16d34)()
./foo.pl: Mon Sep 17 14:59:42 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:42 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:42 2001: - Got ARRAY(0x40c16e6c)()
./foo.pl: Mon Sep 17 14:59:42 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:42 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:42 2001: - Got ARRAY(0x40c16fa4)()
./foo.pl: Mon Sep 17 14:59:42 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:42 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:42 2001: - Got ARRAY(0x40c17cf8)()
./foo.pl: Mon Sep 17 14:59:42 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:42 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:42 2001: - Got ARRAY(0x40c17e30)()
./foo.pl: Mon Sep 17 14:59:42 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:42 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:42 2001: - Got ARRAY(0x40c17f68)()
./foo.pl: Mon Sep 17 14:59:42 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:42 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:42 2001: - Got ARRAY(0x40c184bc)()
./foo.pl: Mon Sep 17 14:59:42 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:42 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:42 2001: - Got ARRAY(0x40c185f4)()
./foo.pl: Mon Sep 17 14:59:42 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:42 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:42 2001: - Got ARRAY(0x40c1872c)()
./foo.pl: Mon Sep 17 14:59:42 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:42 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:42 2001: - Got ARRAY(0x40c19c80)()
./foo.pl: Mon Sep 17 14:59:42 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:42 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:42 2001: - Got ARRAY(0x40c19db8)()
./foo.pl: Mon Sep 17 14:59:42 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:42 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:42 2001: - Got ARRAY(0x40c19ef0)()
./foo.pl: Mon Sep 17 14:59:42 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:42 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:42 2001: - Got ARRAY(0x40c1a444)()
./foo.pl: Mon Sep 17 14:59:42 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:42 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:42 2001: - Got ARRAY(0x40c1a57c)()
./foo.pl: Mon Sep 17 14:59:42 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:42 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:42 2001: - Got ARRAY(0x40c1a6b4)()
./foo.pl: Mon Sep 17 14:59:42 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:42 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:42 2001: - Got ARRAY(0x40c1a7ec)()
./foo.pl: Mon Sep 17 14:59:42 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:42 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:42 2001: - Got ARRAY(0x40c1bd40)()
./foo.pl: Mon Sep 17 14:59:42 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:42 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:42 2001: - Got ARRAY(0x40c1be78)()
./foo.pl: Mon Sep 17 14:59:42 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:42 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:42 2001: - Got ARRAY(0x40c1bfb0)()
./foo.pl: Mon Sep 17 14:59:42 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:42 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:42 2001: - Got ARRAY(0x40c1c90c)()
./foo.pl: Mon Sep 17 14:59:42 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:42 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:42 2001: - Got ARRAY(0x40c1ca44)()
./foo.pl: Mon Sep 17 14:59:42 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:42 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:42 2001: - Got ARRAY(0x40c1cb7c)()
./foo.pl: Mon Sep 17 14:59:42 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:42 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:42 2001: - Got ARRAY(0x40c1ccc8)()
./foo.pl: Mon Sep 17 14:59:42 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:42 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:42 2001: - Got ARRAY(0x40c1ce00)()
./foo.pl: Mon Sep 17 14:59:42 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:42 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:42 2001: - Got ARRAY(0x40c1cf38)()
./foo.pl: Mon Sep 17 14:59:42 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:42 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:42 2001: - Got ARRAY(0x40c1d48c)()
./foo.pl: Mon Sep 17 14:59:42 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:42 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:42 2001: - Got ARRAY(0x40c1d5c4)()
./foo.pl: Mon Sep 17 14:59:42 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:42 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:42 2001: - Got ARRAY(0x40c1d6fc)()
./foo.pl: Mon Sep 17 14:59:42 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:42 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:42 2001: - Got ARRAY(0x40c1ec50)()
./foo.pl: Mon Sep 17 14:59:42 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:42 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:42 2001: - Got ARRAY(0x40c1ed88)()
./foo.pl: Mon Sep 17 14:59:42 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:42 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:42 2001: - Got ARRAY(0x40c1eec0)()
./foo.pl: Mon Sep 17 14:59:42 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:42 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:42 2001: - Got ARRAY(0x40c1fc14)()
./foo.pl: Mon Sep 17 14:59:42 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:42 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:42 2001: - Got ARRAY(0x40c1fd4c)()
./foo.pl: Mon Sep 17 14:59:42 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:42 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:42 2001: - Got ARRAY(0x40c1fe84)()
./foo.pl: Mon Sep 17 14:59:42 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:42 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:42 2001: - Got ARRAY(0x40c1ffbc)()
./foo.pl: Mon Sep 17 14:59:42 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:42 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:42 2001: - Got ARRAY(0x40c20d10)()
./foo.pl: Mon Sep 17 14:59:42 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:42 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:42 2001: - Got ARRAY(0x40c20e48)()
./foo.pl: Mon Sep 17 14:59:42 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:42 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:42 2001: - Got ARRAY(0x40c20f80)()
./foo.pl: Mon Sep 17 14:59:42 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:42 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:42 2001: - Got ARRAY(0x40c214d4)()
./foo.pl: Mon Sep 17 14:59:42 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:42 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:42 2001: - Got ARRAY(0x40c2160c)()
./foo.pl: Mon Sep 17 14:59:42 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:42 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:42 2001: - Got ARRAY(0x40c21744)()
./foo.pl: Mon Sep 17 14:59:42 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:42 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:42 2001: - Got ARRAY(0x40c228a0)()
./foo.pl: Mon Sep 17 14:59:42 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:42 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:42 2001: - Got ARRAY(0x40c229d8)()
./foo.pl: Mon Sep 17 14:59:42 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:42 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:42 2001: - Got ARRAY(0x40c22b10)()
./foo.pl: Mon Sep 17 14:59:42 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:42 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:42 2001: - Got ARRAY(0x40c23864)()
./foo.pl: Mon Sep 17 14:59:42 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:42 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:42 2001: - Got ARRAY(0x40c2399c)()
./foo.pl: Mon Sep 17 14:59:42 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:42 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:42 2001: - Got ARRAY(0x40c23ad4)()
./foo.pl: Mon Sep 17 14:59:42 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:42 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:42 2001: - Got ARRAY(0x40c24828)()
./foo.pl: Mon Sep 17 14:59:42 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:42 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:42 2001: - Got ARRAY(0x40c24960)()
./foo.pl: Mon Sep 17 14:59:42 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:42 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:42 2001: - Got ARRAY(0x40c24a98)()
./foo.pl: Mon Sep 17 14:59:42 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:42 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:42 2001: - Got ARRAY(0x40c24bd0)()
./foo.pl: Mon Sep 17 14:59:42 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:42 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:42 2001: - Got ARRAY(0x40c25124)()
./foo.pl: Mon Sep 17 14:59:42 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:42 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:42 2001: - Got ARRAY(0x40c2525c)()
./foo.pl: Mon Sep 17 14:59:42 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:42 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:42 2001: - Got ARRAY(0x40c25394)()
./foo.pl: Mon Sep 17 14:59:42 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:42 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:42 2001: - Got ARRAY(0x40c258e8)()
./foo.pl: Mon Sep 17 14:59:42 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:42 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:42 2001: - Got ARRAY(0x40c25a20)()
./foo.pl: Mon Sep 17 14:59:42 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:42 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:42 2001: - Got ARRAY(0x40c25b58)()
./foo.pl: Mon Sep 17 14:59:42 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:42 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:42 2001: - Got ARRAY(0x40c268ac)()
./foo.pl: Mon Sep 17 14:59:42 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:42 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:42 2001: - Got ARRAY(0x40c269e4)()
./foo.pl: Mon Sep 17 14:59:42 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:42 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:42 2001: - Got ARRAY(0x40c26b1c)()
./foo.pl: Mon Sep 17 14:59:42 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:42 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:42 2001: - Got ARRAY(0x40c26c68)()
./foo.pl: Mon Sep 17 14:59:42 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:42 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:42 2001: - Got ARRAY(0x40c26da0)()
./foo.pl: Mon Sep 17 14:59:43 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:43 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:43 2001: - Got ARRAY(0x40c26ed8)()
./foo.pl: Mon Sep 17 14:59:43 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:43 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:43 2001: - Got ARRAY(0x40c28834)()
./foo.pl: Mon Sep 17 14:59:43 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:43 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:43 2001: - Got ARRAY(0x40c2896c)()
./foo.pl: Mon Sep 17 14:59:43 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:43 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:43 2001: - Got ARRAY(0x40c28aa4)()
./foo.pl: Mon Sep 17 14:59:43 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:43 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:43 2001: - Got ARRAY(0x40c28bdc)()
./foo.pl: Mon Sep 17 14:59:43 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:43 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:43 2001: - Got ARRAY(0x40c2a130)()
./foo.pl: Mon Sep 17 14:59:43 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:43 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:43 2001: - Got ARRAY(0x40c2a268)()
./foo.pl: Mon Sep 17 14:59:43 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:43 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:43 2001: - Got ARRAY(0x40c2a3a0)()
./foo.pl: Mon Sep 17 14:59:43 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:43 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:42 2001: - Sleeping
./foo.pl: Mon Sep 17 14:59:53 2001: - Done sleeping
./foo.pl: Mon Sep 17 14:59:53 2001: - Got ARRAY(0x40c2a8f4)()
./foo.pl: Mon Sep 17 14:59:53 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:53 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:53 2001: - Got ARRAY(0x40c2aa2c)()
./foo.pl: Mon Sep 17 14:59:53 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:53 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:53 2001: - Got ARRAY(0x40c2ab64)()
./foo.pl: Mon Sep 17 14:59:53 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:53 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:53 2001: - Got ARRAY(0x40c2c0b8)()
./foo.pl: Mon Sep 17 14:59:53 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:53 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:53 2001: - Got ARRAY(0x40c2c1f0)()
./foo.pl: Mon Sep 17 14:59:53 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:53 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:53 2001: - Got ARRAY(0x40c2c328)()
./foo.pl: Mon Sep 17 14:59:53 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:53 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:53 2001: - Got ARRAY(0x40c2d07c)()
./foo.pl: Mon Sep 17 14:59:53 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:53 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:53 2001: - Got ARRAY(0x40c2d1b4)()
./foo.pl: Mon Sep 17 14:59:53 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:53 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:53 2001: - Got ARRAY(0x40c2d2ec)()
./foo.pl: Mon Sep 17 14:59:53 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:53 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:53 2001: - Got ARRAY(0x40c2d840)()
./foo.pl: Mon Sep 17 14:59:53 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:53 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:53 2001: - Got ARRAY(0x40c2d978)()
./foo.pl: Mon Sep 17 14:59:53 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:53 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:53 2001: - Got ARRAY(0x40c2dab0)()
./foo.pl: Mon Sep 17 14:59:53 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:53 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:53 2001: - Got ARRAY(0x40c2dbe8)()
./foo.pl: Mon Sep 17 14:59:53 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:53 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:53 2001: - Got ARRAY(0x40c2ed34)()
./foo.pl: Mon Sep 17 14:59:53 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:53 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:53 2001: - Got ARRAY(0x40c2ee6c)()
./foo.pl: Mon Sep 17 14:59:53 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:53 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:53 2001: - Got ARRAY(0x40c2efa4)()
./foo.pl: Mon Sep 17 14:59:53 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:53 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:53 2001: - Got ARRAY(0x40c2f4f8)()
./foo.pl: Mon Sep 17 14:59:53 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:53 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:53 2001: - Got ARRAY(0x40c2f630)()
./foo.pl: Mon Sep 17 14:59:53 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:53 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:53 2001: - Got ARRAY(0x40c2f768)()
./foo.pl: Mon Sep 17 14:59:53 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:53 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:53 2001: - Got ARRAY(0x40c30cbc)()
./foo.pl: Mon Sep 17 14:59:53 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:53 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:53 2001: - Got ARRAY(0x40c30df4)()
./foo.pl: Mon Sep 17 14:59:53 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:53 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:53 2001: - Got ARRAY(0x40c30f2c)()
./foo.pl: Mon Sep 17 14:59:53 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:53 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:53 2001: - Got ARRAY(0x40c31c80)()
./foo.pl: Mon Sep 17 14:59:53 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:53 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:53 2001: - Got ARRAY(0x40c31db8)()
./foo.pl: Mon Sep 17 14:59:53 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:53 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:53 2001: - Got ARRAY(0x40c31ef0)()
./foo.pl: Mon Sep 17 14:59:53 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:53 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:53 2001: - Got ARRAY(0x40c3204c)()
./foo.pl: Mon Sep 17 14:59:53 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:53 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:53 2001: - Got ARRAY(0x40c32184)()
./foo.pl: Mon Sep 17 14:59:53 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:53 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:53 2001: - Got ARRAY(0x40c322bc)()
./foo.pl: Mon Sep 17 14:59:53 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:53 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:53 2001: - Got ARRAY(0x40c323f4)()
./foo.pl: Mon Sep 17 14:59:53 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:53 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:53 2001: - Got ARRAY(0x40c33948)()
./foo.pl: Mon Sep 17 14:59:53 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:53 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:53 2001: - Got ARRAY(0x40c33a80)()
./foo.pl: Mon Sep 17 14:59:53 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:53 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:53 2001: - Got ARRAY(0x40c33bb8)()
./foo.pl: Mon Sep 17 14:59:53 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:53 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:53 2001: - Got ARRAY(0x40c3410c)()
./foo.pl: Mon Sep 17 14:59:53 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:53 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:53 2001: - Got ARRAY(0x40c34244)()
./foo.pl: Mon Sep 17 14:59:53 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:53 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:53 2001: - Got ARRAY(0x40c3437c)()
./foo.pl: Mon Sep 17 14:59:53 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:53 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:53 2001: - Got ARRAY(0x40c34cc8)()
./foo.pl: Mon Sep 17 14:59:53 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:53 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:53 2001: - Got ARRAY(0x40c34e00)()
./foo.pl: Mon Sep 17 14:59:53 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:53 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:53 2001: - Got ARRAY(0x40c34f38)()
./foo.pl: Mon Sep 17 14:59:53 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:53 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:53 2001: - Got ARRAY(0x40c3648c)()
./foo.pl: Mon Sep 17 14:59:53 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:53 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:53 2001: - Got ARRAY(0x40c365c4)()
./foo.pl: Mon Sep 17 14:59:53 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:53 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:53 2001: - Got ARRAY(0x40c366fc)()
./foo.pl: Mon Sep 17 14:59:53 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:53 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:53 2001: - Got ARRAY(0x40c36c50)()
./foo.pl: Mon Sep 17 14:59:53 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:53 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:53 2001: - Got ARRAY(0x40c36d88)()
./foo.pl: Mon Sep 17 14:59:53 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:53 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:53 2001: - Got ARRAY(0x40c36ec0)()
./foo.pl: Mon Sep 17 14:59:53 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:53 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:53 2001: - Got ARRAY(0x40c37414)()
./foo.pl: Mon Sep 17 14:59:53 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:53 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:53 2001: - Got ARRAY(0x40c3754c)()
./foo.pl: Mon Sep 17 14:59:53 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:53 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:53 2001: - Got ARRAY(0x40c37684)()
./foo.pl: Mon Sep 17 14:59:53 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:53 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:53 2001: - Got ARRAY(0x40c377bc)()
./foo.pl: Mon Sep 17 14:59:53 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:53 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:53 2001: - Got ARRAY(0x40c38510)()
./foo.pl: Mon Sep 17 14:59:53 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:53 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:53 2001: - Got ARRAY(0x40c38648)()
./foo.pl: Mon Sep 17 14:59:53 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:53 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:53 2001: - Got ARRAY(0x40c38780)()
./foo.pl: Mon Sep 17 14:59:53 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:53 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:53 2001: - Got ARRAY(0x40c38cd4)()
./foo.pl: Mon Sep 17 14:59:53 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:53 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:53 2001: - Got ARRAY(0x40c38e0c)()
./foo.pl: Mon Sep 17 14:59:53 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:53 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:53 2001: - Got ARRAY(0x40c38f44)()
./foo.pl: Mon Sep 17 14:59:53 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:53 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:53 2001: - Got ARRAY(0x40c3a8a0)()
./foo.pl: Mon Sep 17 14:59:53 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:53 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:53 2001: - Got ARRAY(0x40c3a9d8)()
./foo.pl: Mon Sep 17 14:59:53 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:53 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:53 2001: - Got ARRAY(0x40c3ab10)()
./foo.pl: Mon Sep 17 14:59:53 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:53 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:53 2001: - Got ARRAY(0x40c3b064)()
./foo.pl: Mon Sep 17 14:59:53 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:53 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:53 2001: - Got ARRAY(0x40c3b19c)()
./foo.pl: Mon Sep 17 14:59:53 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:53 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:53 2001: - Got ARRAY(0x40c3b2d4)()
./foo.pl: Mon Sep 17 14:59:53 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:53 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:53 2001: - Got ARRAY(0x40c3b420)()
./foo.pl: Mon Sep 17 14:59:53 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:53 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:53 2001: - Got ARRAY(0x40c3b558)()
./foo.pl: Mon Sep 17 14:59:53 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:53 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:53 2001: - Got ARRAY(0x40c3b690)()
./foo.pl: Mon Sep 17 14:59:53 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:53 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:53 2001: - Got ARRAY(0x40c3b7c8)()
./foo.pl: Mon Sep 17 14:59:53 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:53 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:53 2001: - Got ARRAY(0x40c3c51c)()
./foo.pl: Mon Sep 17 14:59:53 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:53 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:53 2001: - Got ARRAY(0x40c3c654)()
./foo.pl: Mon Sep 17 14:59:53 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:53 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:53 2001: - Got ARRAY(0x40c3c78c)()
./foo.pl: Mon Sep 17 14:59:53 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:53 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:53 2001: - Got ARRAY(0x40c3d4e0)()
./foo.pl: Mon Sep 17 14:59:53 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:53 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:53 2001: - Got ARRAY(0x40c3d618)()
./foo.pl: Mon Sep 17 14:59:53 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:53 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:53 2001: - Got ARRAY(0x40c3d750)()
./foo.pl: Mon Sep 17 14:59:53 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:53 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:53 2001: - Got ARRAY(0x40c3e4a4)()
./foo.pl: Mon Sep 17 14:59:53 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:53 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:53 2001: - Got ARRAY(0x40c3e5dc)()
./foo.pl: Mon Sep 17 14:59:53 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:53 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:53 2001: - Got ARRAY(0x40c3e714)()
./foo.pl: Mon Sep 17 14:59:53 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:53 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:53 2001: - Got ARRAY(0x40c3f468)()
./foo.pl: Mon Sep 17 14:59:53 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:53 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:53 2001: - Got ARRAY(0x40c3f5a0)()
./foo.pl: Mon Sep 17 14:59:53 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:53 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:53 2001: - Got ARRAY(0x40c3f6d8)()
./foo.pl: Mon Sep 17 14:59:53 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:53 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:53 2001: - Got ARRAY(0x40c40034)()
./foo.pl: Mon Sep 17 14:59:53 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:53 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:53 2001: - Got ARRAY(0x40c4016c)()
./foo.pl: Mon Sep 17 14:59:53 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:53 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:53 2001: - Got ARRAY(0x40c402a4)()
./foo.pl: Mon Sep 17 14:59:53 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:53 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:53 2001: - Got ARRAY(0x40c403dc)()
./foo.pl: Mon Sep 17 14:59:53 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:53 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:53 2001: - Got ARRAY(0x40c41930)()
./foo.pl: Mon Sep 17 14:59:53 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:53 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:53 2001: - Got ARRAY(0x40c41a68)()
./foo.pl: Mon Sep 17 14:59:53 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:53 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:53 2001: - Got ARRAY(0x40c41ba0)()
./foo.pl: Mon Sep 17 14:59:53 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:53 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:53 2001: - Got ARRAY(0x40c420f4)()
./foo.pl: Mon Sep 17 14:59:53 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:53 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:53 2001: - Got ARRAY(0x40c4222c)()
./foo.pl: Mon Sep 17 14:59:53 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:53 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:53 2001: - Got ARRAY(0x40c42364)()
./foo.pl: Mon Sep 17 14:59:53 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:53 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:53 2001: - Got ARRAY(0x40c438b8)()
./foo.pl: Mon Sep 17 14:59:53 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:53 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:53 2001: - Got ARRAY(0x40c439f0)()
./foo.pl: Mon Sep 17 14:59:53 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:53 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:53 2001: - Got ARRAY(0x40c43b28)()
./foo.pl: Mon Sep 17 14:59:53 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:53 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:53 2001: - Got ARRAY(0x40c4407c)()
./foo.pl: Mon Sep 17 14:59:53 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:53 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:53 2001: - Got ARRAY(0x40c441b4)()
./foo.pl: Mon Sep 17 14:59:53 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:53 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:53 2001: - Got ARRAY(0x40c442ec)()
./foo.pl: Mon Sep 17 14:59:53 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:53 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:53 2001: - Got ARRAY(0x40c45040)()
./foo.pl: Mon Sep 17 14:59:53 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:53 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:53 2001: - Got ARRAY(0x40c45178)()
./foo.pl: Mon Sep 17 14:59:53 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:53 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:53 2001: - Got ARRAY(0x40c452b0)()
./foo.pl: Mon Sep 17 14:59:53 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:53 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:53 2001: - Got ARRAY(0x40c453e8)()
./foo.pl: Mon Sep 17 14:59:53 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:53 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:53 2001: - Got ARRAY(0x40c4613c)()
./foo.pl: Mon Sep 17 14:59:53 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:53 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:53 2001: - Got ARRAY(0x40c46274)()
./foo.pl: Mon Sep 17 14:59:53 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:53 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:53 2001: - Got ARRAY(0x40c463ac)()
./foo.pl: Mon Sep 17 14:59:53 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:54 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:54 2001: - Got ARRAY(0x40c464f8)()
./foo.pl: Mon Sep 17 14:59:54 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:54 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:54 2001: - Got ARRAY(0x40c46630)()
./foo.pl: Mon Sep 17 14:59:54 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:54 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:54 2001: - Got ARRAY(0x40c46768)()
./foo.pl: Mon Sep 17 14:59:54 2001: - Returning from main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:54 2001: - Entering main::new_records_avail()
./foo.pl: Mon Sep 17 14:59:53 2001: - Sleeping
Use of uninitialized value in concatenation (.) at ./foo.pl line 3093.
./foo.pl: Mon Sep 17 14:59:58 2001: - Got ()
Unexpected eof Interrupted system call at ./foo.pl line 3094.
]0;flink@phse6;/local/src/project/oracle/perl_formsflink@phse6:/local/src/project/oracle/perl_forms
$
./foo.pl: Mon Sep 17 15:00:04 2001: - Done sleeping
./foo.pl: Mon Sep 17 15:00:04 2001: - Fetch done
script done on Mon Sep 17 15:00:04 2001
As you can see, the parent always winds up blocked on teh fd_retrieve,
while the child is sleeping. I don;t inderstand what I'm doing worng, here.
Any sugestions?
--
"They that would give up essential liberty for temporary safety deserve
neither liberty nor safety."
-- Benjamin Franklin
------------------------------
Date: 17 Sep 2001 13:50:32 -0700
From: merlyn@stonehenge.com (Randal L. Schwartz)
Subject: Re: What does this do ? "select( (select($writer), $|=1)[0] );" ?
Message-Id: <m1vgihlexz.fsf@halfdome.holdit.com>
>>>>> "Robert" == Robert Sherman <rsherman@ce.gatech.edu> writes:
Robert> actually, upon further inspection, this idiom is almost
Robert> word-for-word in the camel...(3rd ed., p. 781, under the
Robert> select function).
Which came through from the second camel and the first camel,
and I put it into the first camel, after having invented it.
Now of course, I'd do something like
$| = 1, select $_ for select OTHER;
which is equally obscure, completely effective, and twistily elegant. :)
print for "Just another Perl hacker,"
--
Randal L. Schwartz - Stonehenge Consulting Services, Inc. - +1 503 777 0095
<merlyn@stonehenge.com> <URL:http://www.stonehenge.com/merlyn/>
Perl/Unix/security consulting, Technical writing, Comedy, etc. etc.
See PerlTraining.Stonehenge.com for onsite and open-enrollment Perl training!
------------------------------
Date: Mon, 17 Sep 2001 19:46:35 GMT
From: m_010@yahoo.com (Joe Chung)
Subject: write to a file handle
Message-Id: <3ba652a7.9997225@enews.newsguy.com>
i am trying to write to a filehandle
open(LOCK,">/export/home/admin/log");
print LOCK "test string";
the premession of log is like this:
-rw-r--r-- 1 root other 5 Sep 17 12:41 log
why after the above statement execute, nothing is written to the file
"log" (the file is empty)?
thanks
------------------------------
Date: 17 Sep 2001 20:18:52 GMT
From: Clay Irving <clay@panix.com>
Subject: Re: write to a file handle
Message-Id: <slrn9qcmn9.av6.clay@panix1.panix.com>
In article <3ba652a7.9997225@enews.newsguy.com>, Joe Chung wrote:
> i am trying to write to a filehandle
>
> open(LOCK,">/export/home/admin/log");
Was the open successful?
open LOCK, ">/export/home/admin/log" or die "$!\n";
> print LOCK "test string";
>
> the premession of log is like this:
> -rw-r--r-- 1 root other 5 Sep 17 12:41 log
>
> why after the above statement execute, nothing is written to the file
> "log" (the file is empty)?
--
Clay Irving <clay@panix.com>
If a cow laughed, would milk come out her nose?
- Steven Wright
------------------------------
Date: Mon, 17 Sep 2001 21:06:37 GMT
From: m_010@yahoo.com (Joe Chung)
Subject: Re: write to a file handle
Message-Id: <3ba765c6.14892644@enews.newsguy.com>
the file is created. but nothing is written to file after execution.
On 17 Sep 2001 20:18:52 GMT, Clay Irving <clay@panix.com> wrote:
>In article <3ba652a7.9997225@enews.newsguy.com>, Joe Chung wrote:
>
>> i am trying to write to a filehandle
>>
>> open(LOCK,">/export/home/admin/log");
>
>Was the open successful?
>
> open LOCK, ">/export/home/admin/log" or die "$!\n";
>
>> print LOCK "test string";
>>
>> the premession of log is like this:
>> -rw-r--r-- 1 root other 5 Sep 17 12:41 log
>>
>> why after the above statement execute, nothing is written to the file
>> "log" (the file is empty)?
------------------------------
Date: 6 Apr 2001 21:33:47 GMT (Last modified)
From: Perl-Users-Request@ruby.oce.orst.edu (Perl-Users-Digest Admin)
Subject: Digest Administrivia (Last modified: 6 Apr 01)
Message-Id: <null>
Administrivia:
The Perl-Users Digest is a retransmission of the USENET newsgroup
comp.lang.perl.misc. For subscription or unsubscription requests, send
the single line:
subscribe perl-users
or:
unsubscribe perl-users
to almanac@ruby.oce.orst.edu.
To submit articles to comp.lang.perl.announce, send your article to
clpa@perl.com.
To request back copies (available for a week or so), send your request
to almanac@ruby.oce.orst.edu with the command "send perl-users x.y",
where x is the volume number and y is the issue number.
For other requests pertaining to the digest, send mail to
perl-users-request@ruby.oce.orst.edu. Do not waste your time or mine
sending perl questions to the -request address, I don't have time to
answer them even if I did know the answer.
------------------------------
End of Perl-Users Digest V10 Issue 1763
***************************************