perl-modules: Added Monitoring-Plugin module
[omd.git] / packages / perl-modules / lib / Module / CoreList.pm
blob1363f9ad189b1706161757568a214b1d8d84f38d
1 package Module::CoreList;
2 use strict;
3 use vars qw/$VERSION %released %version %families %upstream
4 %bug_tracker %deprecated/;
5 $VERSION = '2.44';
7 =head1 NAME
9 Module::CoreList - what modules shipped with versions of perl
11 =head1 SYNOPSIS
13 use Module::CoreList;
15 print $Module::CoreList::version{5.00503}{CPAN}; # prints 1.48
17 print Module::CoreList->first_release('File::Spec'); # prints 5.00405
18 print Module::CoreList->first_release_by_date('File::Spec'); # prints 5.005
19 print Module::CoreList->first_release('File::Spec', 0.82); # prints 5.006001
21 print join ', ', Module::CoreList->find_modules(qr/Data/);
22 # prints 'Data::Dumper'
23 print join ', ', Module::CoreList->find_modules(qr/test::h.*::.*s/i, 5.008008);
24 # prints 'Test::Harness::Assert, Test::Harness::Straps'
26 print join ", ", @{ $Module::CoreList::families{5.005} };
27 # prints "5.005, 5.00503, 5.00504"
29 =head1 DESCRIPTION
31 Module::CoreList provides information on which core and dual-life modules shipped
32 with each version of L<perl>.
34 It provides a number of mechanisms for querying this information.
36 There is a utility called L<corelist> provided with this module
37 which is a convenient way of querying from the command-line.
39 There is a functional programming API available for programmers to query
40 information.
42 Programmers may also query the contained hash structures to find relevant
43 information.
45 =head1 FUNCTIONS API
47 These are the functions that are available, they may either be called as functions or class methods:
49 Module::CoreList::first_release('File::Spec'); # as a function
51 Module::CoreList->first_release('File::Spec'); # class method
53 =over
55 =item C<first_release( MODULE )>
57 Behaviour since version 2.11
59 Requires a MODULE name as an argument, returns the perl version when that module first
60 appeared in core as ordered by perl version number or undef if that module is not in core.
62 =item C<first_release_by_date( MODULE )>
64 Requires a MODULE name as an argument, returns the perl version when that module first
65 appeared in core as ordered by release date or undef if that module is not in core.
67 =item C<find_modules( REGEX, [ LIST OF PERLS ] )>
69 Takes a regex as an argument, returns a list of modules that match the regex given.
70 If only a regex is provided applies to all modules in all perl versions. Optionally
71 you may provide a list of perl versions to limit the regex search.
73 =item C<find_version( PERL_VERSION )>
75 Takes a perl version as an argument. Returns that perl version if it exists or C<undef>
76 otherwise.
78 =item C<is_deprecated( MODULE, PERL_VERSION )>
80 Available in version 2.22 and above.
82 Returns true if MODULE is marked as deprecated in PERL_VERSION. If PERL_VERSION is
83 omitted, it defaults to the current version of Perl.
85 =item C<removed_from( MODULE )>
87 Available in version 2.32 and above
89 Takes a module name as an argument, returns the first perl version where that module
90 was removed from core. Returns undef if the given module was never in core or remains
91 in core.
93 =item C<removed_from_by_date( MODULE )>
95 Available in version 2.32 and above
97 Takes a module name as an argument, returns the first perl version by release date where that module
98 was removed from core. Returns undef if the given module was never in core or remains
99 in core.
101 =back
103 =head1 DATA STRUCTURES
105 These are the hash data structures that are available:
107 =over
109 =item C<%Module::CoreList::version>
111 A hash of hashes that is keyed on perl version as indicated
112 in $]. The second level hash is module => version pairs.
114 Note, it is possible for the version of a module to be unspecified,
115 whereby the value is C<undef>, so use C<exists $version{$foo}{$bar}> if
116 that's what you're testing for.
118 Starting with 2.10, the special module name C<Unicode> refers to the version of
119 the Unicode Character Database bundled with Perl.
121 =item C<%Module::CoreList::released>
123 Keyed on perl version this contains ISO
124 formatted versions of the release dates, as gleaned from L<perlhist>.
126 =item C<%Module::CoreList::families>
128 New, in 1.96, a hash that
129 clusters known perl releases by their major versions.
131 =item C<%Module::CoreList::deprecated>
133 A hash of hashes keyed on perl version and on module name.
134 If a module is defined it indicates that that module is
135 deprecated in that perl version and is scheduled for removal
136 from core at some future point.
138 =item C<%Module::CoreList::upstream>
140 A hash that contains information on where patches should be directed
141 for each core module.
143 UPSTREAM indicates where patches should go. C<undef> implies
144 that this hasn't been discussed for the module at hand.
145 C<blead> indicates that the copy of the module in the blead
146 sources is to be considered canonical, C<cpan> means that the
147 module on CPAN is to be patched first. C<first-come> means
148 that blead can be patched freely if it is in sync with the
149 latest release on CPAN.
151 =item C<%Module::CoreList::bug_tracker>
153 A hash that contains information on the appropriate bug tracker
154 for each core module.
156 BUGS is an email or url to post bug reports. For modules with
157 UPSTREAM => 'blead', use perl5-porters@perl.org. rt.cpan.org
158 appears to automatically provide a URL for CPAN modules; any value
159 given here overrides the default:
160 http://rt.cpan.org/Public/Dist/Display.html?Name=$ModuleName
162 =back
164 =head1 CAVEATS
166 Module::CoreList currently covers the 5.000, 5.001, 5.002, 5.003_07,
167 5.004, 5.004_05, 5.005, 5.005_03, 5.005_04, 5.6.0, 5.6.1, 5.6.2, 5.7.3,
168 5.8.0, 5.8.1, 5.8.2, 5.8.3, 5.8.4, 5.8.5, 5.8.6, 5.8.7, 5.8.8, 5.8.9,
169 5.9.0, 5.9.1, 5.9.2, 5.9.3, 5.9.4, 5.9.5, 5.10.0, 5.10.1, 5.11.0, 5.11.1,
170 5.11.2, 5.11.3, 5.11.4, 5.11.5, 5.12.0, 5.12.1, 5.12.2, 5.12.3, 5.13.0,
171 5.13.1, 5.13.2, 5.13.3, 5.13.4, 5.13.5, 5.13.6, 5.13.7 and 5.13.8
172 releases of perl.
174 =head1 HISTORY
176 Moved to Changes file.
178 =head1 AUTHOR
180 Richard Clamp E<lt>richardc@unixbeard.netE<gt>
182 Currently maintained by the perl 5 porters E<lt>perl5-porters@perl.orgE<gt>.
184 =head1 LICENSE
186 Copyright (C) 2002-2009 Richard Clamp. All Rights Reserved.
188 This module is free software; you can redistribute it and/or modify it
189 under the same terms as Perl itself.
191 =head1 SEE ALSO
193 L<corelist>, L<Module::Info>, L<perl>
195 =cut
197 my $dumpinc = 0;
198 sub import {
199 my $self = shift;
200 my $what = shift || '';
201 if ($what eq 'dumpinc') {
202 $dumpinc = 1;
206 END {
207 print "---INC---\n", join "\n" => keys %INC
208 if $dumpinc;
212 sub first_release_raw {
213 my $module = shift;
214 $module = shift if $module->isa(__PACKAGE__)
215 and scalar @_ and $_[0] =~ m#\A[a-zA-Z_][0-9a-zA-Z_]*(?:(::|')[0-9a-zA-Z_]+)*\z#;
216 my $version = shift;
218 my @perls = $version
219 ? grep { exists $version{$_}{ $module } &&
220 $version{$_}{ $module } ge $version } keys %version
221 : grep { exists $version{$_}{ $module } } keys %version;
223 return @perls;
226 sub first_release_by_date {
227 my @perls = &first_release_raw;
228 return unless @perls;
229 return (sort { $released{$a} cmp $released{$b} } @perls)[0];
232 sub first_release {
233 my @perls = &first_release_raw;
234 return unless @perls;
235 return (sort { $a cmp $b } @perls)[0];
238 sub find_modules {
239 my $regex = shift;
240 $regex = shift if $regex->isa(__PACKAGE__);
241 my @perls = @_;
242 @perls = keys %version unless @perls;
244 my %mods;
245 foreach (@perls) {
246 while (my ($k, $v) = each %{$version{$_}}) {
247 $mods{$k}++ if $k =~ $regex;
250 return sort keys %mods
253 sub find_version {
254 my $v = shift;
255 $v = shift if $v->isa(__PACKAGE__);
256 return $version{$v} if defined $version{$v};
257 return undef;
260 sub is_deprecated {
261 my $module = shift;
262 $module = shift if $module->isa(__PACKAGE__)
263 and scalar @_ and $_[0] =~ m#\A[a-zA-Z_][0-9a-zA-Z_]*(?:(::|')[0-9a-zA-Z_]+)*\z#;
264 my $perl_version = shift;
265 $perl_version ||= $];
266 return unless $module && exists $deprecated{$perl_version}{$module};
267 return $deprecated{$perl_version}{$module};
270 sub removed_from {
271 my @perls = &removed_raw;
272 return shift @perls;
275 sub removed_from_by_date {
276 my @perls = sort { $released{$a} cmp $released{$b} } &removed_raw;
277 return shift @perls;
280 sub removed_raw {
281 my $mod = shift;
282 $mod = shift if $mod->isa(__PACKAGE__)
283 and scalar @_ and $_[0] =~ m#\A[a-zA-Z_][0-9a-zA-Z_]*(?:(::|')[0-9a-zA-Z_]+)*\z#;
284 return unless my @perls = sort { $a cmp $b } first_release_raw($mod);
285 my $last = pop @perls;
286 my @removed = grep { $_ > $last } sort { $a cmp $b } keys %version;
287 return @removed;
290 # When things escaped.
291 # NB. If you put version numbers with trailing zeroes here, you
292 # should also add an alias for the numerical ($]) version; see
293 # just before the __END__ of this module.
294 %released = (
295 5.000 => '1994-10-17',
296 5.001 => '1995-03-14',
297 5.002 => '1996-02-29',
298 5.00307 => '1996-10-10',
299 5.004 => '1997-05-15',
300 5.005 => '1998-07-22',
301 5.00503 => '1999-03-28',
302 5.00405 => '1999-04-29',
303 5.006 => '2000-03-22',
304 5.006001 => '2001-04-08',
305 5.007003 => '2002-03-05',
306 5.008 => '2002-07-19',
307 5.008001 => '2003-09-25',
308 5.009 => '2003-10-27',
309 5.008002 => '2003-11-05',
310 5.006002 => '2003-11-15',
311 5.008003 => '2004-01-14',
312 5.00504 => '2004-02-23',
313 5.009001 => '2004-03-16',
314 5.008004 => '2004-04-21',
315 5.008005 => '2004-07-19',
316 5.008006 => '2004-11-27',
317 5.009002 => '2005-04-01',
318 5.008007 => '2005-05-30',
319 5.009003 => '2006-01-28',
320 5.008008 => '2006-01-31',
321 5.009004 => '2006-08-15',
322 5.009005 => '2007-07-07',
323 5.010000 => '2007-12-18',
324 5.008009 => '2008-12-14',
325 5.010001 => '2009-08-22',
326 5.011000 => '2009-10-02',
327 5.011001 => '2009-10-20',
328 5.011002 => '2009-11-20',
329 5.011003 => '2009-12-20',
330 5.011004 => '2010-01-20',
331 5.011005 => '2010-02-20',
332 5.012000 => '2010-04-12',
333 5.013000 => '2010-04-20',
334 5.012001 => '2010-05-16',
335 5.013001 => '2010-05-20',
336 5.013002 => '2010-06-22',
337 5.013003 => '2010-07-20',
338 5.013004 => '2010-08-20',
339 5.012002 => '2010-09-06',
340 5.013005 => '2010-09-19',
341 5.013006 => '2010-10-20',
342 5.013007 => '2010-11-20',
343 5.013008 => '2010-12-20',
344 5.012003 => '2011-01-21',
345 5.013009 => '2011-01-20',
348 for my $version ( sort { $a <=> $b } keys %released ) {
349 my $family = int ($version * 1000) / 1000;
350 push @{ $families{ $family }} , $version;
354 %version = (
355 5.000 => {
356 'AnyDBM_File' => undef, # lib/AnyDBM_File.pm
357 'AutoLoader' => undef, # lib/AutoLoader.pm
358 'AutoSplit' => undef, # lib/AutoSplit.pm
359 'Benchmark' => undef, # lib/Benchmark.pm
360 'Carp' => undef, # lib/Carp.pm
361 'Cwd' => undef, # lib/Cwd.pm
362 'DB_File' => undef, # ext/DB_File/DB_File.pm
363 'DynaLoader' => undef, # ext/DynaLoader/DynaLoader.pm
364 'English' => undef, # lib/English.pm
365 'Env' => undef, # lib/Env.pm
366 'Exporter' => undef, # lib/Exporter.pm
367 'ExtUtils::MakeMaker' => undef, # lib/ExtUtils/MakeMaker.pm
368 'Fcntl' => undef, # ext/Fcntl/Fcntl.pm
369 'File::Basename' => undef, # lib/File/Basename.pm
370 'File::CheckTree' => undef, # lib/File/CheckTree.pm
371 'File::Find' => undef, # lib/File/Find.pm
372 'FileHandle' => undef, # lib/FileHandle.pm
373 'GDBM_File' => undef, # ext/GDBM_File/GDBM_File.pm
374 'Getopt::Long' => undef, # lib/Getopt/Long.pm
375 'Getopt::Std' => undef, # lib/Getopt/Std.pm
376 'I18N::Collate' => undef, # lib/I18N/Collate.pm
377 'IPC::Open2' => undef, # lib/IPC/Open2.pm
378 'IPC::Open3' => undef, # lib/IPC/Open3.pm
379 'Math::BigFloat' => undef, # lib/Math/BigFloat.pm
380 'Math::BigInt' => undef, # lib/Math/BigInt.pm
381 'Math::Complex' => undef, # lib/Math/Complex.pm
382 'NDBM_File' => undef, # ext/NDBM_File/NDBM_File.pm
383 'Net::Ping' => undef, # lib/Net/Ping.pm
384 'ODBM_File' => undef, # ext/ODBM_File/ODBM_File.pm
385 'POSIX' => undef, # ext/POSIX/POSIX.pm
386 'SDBM_File' => undef, # ext/SDBM_File/SDBM_File.pm
387 'Search::Dict' => undef, # lib/Search/Dict.pm
388 'Shell' => undef, # lib/Shell.pm
389 'Socket' => undef, # ext/Socket/Socket.pm
390 'Sys::Hostname' => undef, # lib/Sys/Hostname.pm
391 'Sys::Syslog' => undef, # lib/Sys/Syslog.pm
392 'Term::Cap' => undef, # lib/Term/Cap.pm
393 'Term::Complete' => undef, # lib/Term/Complete.pm
394 'Test::Harness' => undef, # lib/Test/Harness.pm
395 'Text::Abbrev' => undef, # lib/Text/Abbrev.pm
396 'Text::ParseWords' => undef, # lib/Text/ParseWords.pm
397 'Text::Soundex' => undef, # lib/Text/Soundex.pm
398 'Text::Tabs' => undef, # lib/Text/Tabs.pm
399 'TieHash' => undef, # lib/TieHash.pm
400 'Time::Local' => undef, # lib/Time/Local.pm
401 'integer' => undef, # lib/integer.pm
402 'less' => undef, # lib/less.pm
403 'sigtrap' => undef, # lib/sigtrap.pm
404 'strict' => undef, # lib/strict.pm
405 'subs' => undef, # lib/subs.pm
408 5.001 => {
409 'AnyDBM_File' => undef, # lib/AnyDBM_File.pm
410 'AutoLoader' => undef, # lib/AutoLoader.pm
411 'AutoSplit' => undef, # lib/AutoSplit.pm
412 'Benchmark' => undef, # lib/Benchmark.pm
413 'Carp' => undef, # lib/Carp.pm
414 'Cwd' => undef, # lib/Cwd.pm
415 'DB_File' => undef, # ext/DB_File/DB_File.pm
416 'DynaLoader' => undef, # ext/DynaLoader/DynaLoader.pm
417 'English' => undef, # lib/English.pm
418 'Env' => undef, # lib/Env.pm
419 'Exporter' => undef, # lib/Exporter.pm
420 'ExtUtils::Liblist' => undef, # lib/ExtUtils/Liblist.pm
421 'ExtUtils::MakeMaker' => undef, # lib/ExtUtils/MakeMaker.pm
422 'ExtUtils::Manifest' => undef, # lib/ExtUtils/Manifest.pm
423 'ExtUtils::Mkbootstrap' => undef, # lib/ExtUtils/Mkbootstrap.pm
424 'Fcntl' => undef, # ext/Fcntl/Fcntl.pm
425 'File::Basename' => undef, # lib/File/Basename.pm
426 'File::CheckTree' => undef, # lib/File/CheckTree.pm
427 'File::Find' => undef, # lib/File/Find.pm
428 'File::Path' => undef, # lib/File/Path.pm
429 'FileHandle' => undef, # lib/FileHandle.pm
430 'GDBM_File' => undef, # ext/GDBM_File/GDBM_File.pm
431 'Getopt::Long' => undef, # lib/Getopt/Long.pm
432 'Getopt::Std' => undef, # lib/Getopt/Std.pm
433 'I18N::Collate' => undef, # lib/I18N/Collate.pm
434 'IPC::Open2' => undef, # lib/IPC/Open2.pm
435 'IPC::Open3' => undef, # lib/IPC/Open3.pm
436 'Math::BigFloat' => undef, # lib/Math/BigFloat.pm
437 'Math::BigInt' => undef, # lib/Math/BigInt.pm
438 'Math::Complex' => undef, # lib/Math/Complex.pm
439 'NDBM_File' => undef, # ext/NDBM_File/NDBM_File.pm
440 'Net::Ping' => undef, # lib/Net/Ping.pm
441 'ODBM_File' => undef, # ext/ODBM_File/ODBM_File.pm
442 'POSIX' => undef, # ext/POSIX/POSIX.pm
443 'SDBM_File' => undef, # ext/SDBM_File/SDBM_File.pm
444 'Search::Dict' => undef, # lib/Search/Dict.pm
445 'Shell' => undef, # lib/Shell.pm
446 'Socket' => undef, # ext/Socket/Socket.pm
447 'SubstrHash' => undef, # lib/SubstrHash.pm
448 'Sys::Hostname' => undef, # lib/Sys/Hostname.pm
449 'Sys::Syslog' => undef, # lib/Sys/Syslog.pm
450 'Term::Cap' => undef, # lib/Term/Cap.pm
451 'Term::Complete' => undef, # lib/Term/Complete.pm
452 'Test::Harness' => undef, # lib/Test/Harness.pm
453 'Text::Abbrev' => undef, # lib/Text/Abbrev.pm
454 'Text::ParseWords' => undef, # lib/Text/ParseWords.pm
455 'Text::Soundex' => undef, # lib/Text/Soundex.pm
456 'Text::Tabs' => undef, # lib/Text/Tabs.pm
457 'TieHash' => undef, # lib/TieHash.pm
458 'Time::Local' => undef, # lib/Time/Local.pm
459 'integer' => undef, # lib/integer.pm
460 'less' => undef, # lib/less.pm
461 'lib' => undef, # lib/lib.pm
462 'sigtrap' => undef, # lib/sigtrap.pm
463 'strict' => undef, # lib/strict.pm
464 'subs' => undef, # lib/subs.pm
467 5.002 => {
468 'AnyDBM_File' => undef, # lib/AnyDBM_File.pm
469 'AutoLoader' => undef, # lib/AutoLoader.pm
470 'AutoSplit' => undef, # lib/AutoSplit.pm
471 'Benchmark' => undef, # lib/Benchmark.pm
472 'Carp' => undef, # lib/Carp.pm
473 'Cwd' => undef, # lib/Cwd.pm
474 'DB_File' => '1.01', # ext/DB_File/DB_File.pm
475 'Devel::SelfStubber' => '1.01', # lib/Devel/SelfStubber.pm
476 'DirHandle' => undef, # lib/DirHandle.pm
477 'DynaLoader' => '1.00', # ext/DynaLoader/DynaLoader.pm
478 'English' => undef, # lib/English.pm
479 'Env' => undef, # lib/Env.pm
480 'Exporter' => undef, # lib/Exporter.pm
481 'ExtUtils::Install' => undef, # lib/ExtUtils/Install.pm
482 'ExtUtils::Liblist' => undef, # lib/ExtUtils/Liblist.pm
483 'ExtUtils::MM_OS2' => undef, # lib/ExtUtils/MM_OS2.pm
484 'ExtUtils::MM_Unix' => undef, # lib/ExtUtils/MM_Unix.pm
485 'ExtUtils::MM_VMS' => undef, # lib/ExtUtils/MM_VMS.pm
486 'ExtUtils::MakeMaker' => '5.21', # lib/ExtUtils/MakeMaker.pm
487 'ExtUtils::Manifest' => '1.22', # lib/ExtUtils/Manifest.pm
488 'ExtUtils::Mkbootstrap' => undef, # lib/ExtUtils/Mkbootstrap.pm
489 'ExtUtils::Mksymlists' => '1.00', # lib/ExtUtils/Mksymlists.pm
490 'Fcntl' => '1.00', # ext/Fcntl/Fcntl.pm
491 'File::Basename' => undef, # lib/File/Basename.pm
492 'File::CheckTree' => undef, # lib/File/CheckTree.pm
493 'File::Copy' => '1.5', # lib/File/Copy.pm
494 'File::Find' => undef, # lib/File/Find.pm
495 'File::Path' => '1.01', # lib/File/Path.pm
496 'FileCache' => undef, # lib/FileCache.pm
497 'FileHandle' => '1.00', # ext/FileHandle/FileHandle.pm
498 'GDBM_File' => '1.00', # ext/GDBM_File/GDBM_File.pm
499 'Getopt::Long' => '2.01', # lib/Getopt/Long.pm
500 'Getopt::Std' => undef, # lib/Getopt/Std.pm
501 'I18N::Collate' => undef, # lib/I18N/Collate.pm
502 'IPC::Open2' => undef, # lib/IPC/Open2.pm
503 'IPC::Open3' => undef, # lib/IPC/Open3.pm
504 'Math::BigFloat' => undef, # lib/Math/BigFloat.pm
505 'Math::BigInt' => undef, # lib/Math/BigInt.pm
506 'Math::Complex' => undef, # lib/Math/Complex.pm
507 'NDBM_File' => '1.00', # ext/NDBM_File/NDBM_File.pm
508 'Net::Ping' => '1', # lib/Net/Ping.pm
509 'ODBM_File' => '1.00', # ext/ODBM_File/ODBM_File.pm
510 'POSIX' => '1.00', # ext/POSIX/POSIX.pm
511 'Pod::Functions' => undef, # lib/Pod/Functions.pm
512 'Pod::Text' => undef, # lib/Pod/Text.pm
513 'SDBM_File' => '1.00', # ext/SDBM_File/SDBM_File.pm
514 'Safe' => '1.00', # ext/Safe/Safe.pm
515 'Search::Dict' => undef, # lib/Search/Dict.pm
516 'SelectSaver' => undef, # lib/SelectSaver.pm
517 'SelfLoader' => '1.06', # lib/SelfLoader.pm
518 'Shell' => undef, # lib/Shell.pm
519 'Socket' => '1.5', # ext/Socket/Socket.pm
520 'Symbol' => undef, # lib/Symbol.pm
521 'Sys::Hostname' => undef, # lib/Sys/Hostname.pm
522 'Sys::Syslog' => undef, # lib/Sys/Syslog.pm
523 'Term::Cap' => undef, # lib/Term/Cap.pm
524 'Term::Complete' => undef, # lib/Term/Complete.pm
525 'Term::ReadLine' => undef, # lib/Term/ReadLine.pm
526 'Test::Harness' => '1.07', # lib/Test/Harness.pm
527 'Text::Abbrev' => undef, # lib/Text/Abbrev.pm
528 'Text::ParseWords' => undef, # lib/Text/ParseWords.pm
529 'Text::Soundex' => undef, # lib/Text/Soundex.pm
530 'Text::Tabs' => undef, # lib/Text/Tabs.pm
531 'Text::Wrap' => undef, # lib/Text/Wrap.pm
532 'Tie::Hash' => undef, # lib/Tie/Hash.pm
533 'Tie::Scalar' => undef, # lib/Tie/Scalar.pm
534 'Tie::SubstrHash' => undef, # lib/Tie/SubstrHash.pm
535 'Time::Local' => undef, # lib/Time/Local.pm
536 'diagnostics' => undef, # lib/diagnostics.pm
537 'integer' => undef, # lib/integer.pm
538 'less' => undef, # lib/less.pm
539 'lib' => undef, # lib/lib.pm
540 'overload' => undef, # lib/overload.pm
541 'sigtrap' => undef, # lib/sigtrap.pm
542 'strict' => undef, # lib/strict.pm
543 'subs' => undef, # lib/subs.pm
544 'vars' => undef, # lib/vars.pm
547 5.00307 => {
548 'AnyDBM_File' => undef, #./lib/AnyDBM_File.pm
549 'AutoLoader' => undef, #./lib/AutoLoader.pm
550 'AutoSplit' => undef, #./lib/AutoSplit.pm
551 'Benchmark' => undef, #./lib/Benchmark.pm
552 'Carp' => undef, #./lib/Carp.pm
553 'Config' => undef,
554 'Cwd' => undef, #./lib/Cwd.pm
555 'DB_File' => '1.03', #./lib/DB_File.pm
556 'Devel::SelfStubber' => '1.01', #./lib/Devel/SelfStubber.pm
557 'diagnostics' => undef, #./lib/diagnostics.pm
558 'DirHandle' => undef, #./lib/DirHandle.pm
559 'DynaLoader' => '1.00', #./ext/DynaLoader/DynaLoader.pm
560 'English' => undef, #./lib/English.pm
561 'Env' => undef, #./lib/Env.pm
562 'Exporter' => undef, #./lib/Exporter.pm
563 'ExtUtils::Embed' => '1.18', #./lib/ExtUtils/Embed.pm
564 'ExtUtils::Install' => '1.15 ', #./lib/ExtUtils/Install.pm
565 'ExtUtils::Liblist' => '1.20 ', #./lib/ExtUtils/Liblist.pm
566 'ExtUtils::MakeMaker' => '5.38', #./lib/ExtUtils/MakeMaker.pm
567 'ExtUtils::Manifest' => '1.27', #./lib/ExtUtils/Manifest.pm
568 'ExtUtils::Mkbootstrap' => '1.13 ', #./lib/ExtUtils/Mkbootstrap.pm
569 'ExtUtils::Mksymlists' => '1.12 ', #./lib/ExtUtils/Mksymlists.pm
570 'ExtUtils::MM_OS2' => undef, #./lib/ExtUtils/MM_OS2.pm
571 'ExtUtils::MM_Unix' => '1.107 ', #./lib/ExtUtils/MM_Unix.pm
572 'ExtUtils::MM_VMS' => undef, #./lib/ExtUtils/MM_VMS.pm
573 'ExtUtils::testlib' => '1.11 ', #./lib/ExtUtils/testlib.pm
574 'Fatal' => undef, #./lib/Fatal.pm
575 'Fcntl' => '1.00', #./ext/Fcntl/Fcntl.pm
576 'File::Basename' => '2.4', #./lib/File/Basename.pm
577 'File::CheckTree' => undef, #./lib/File/CheckTree.pm
578 'File::Copy' => '1.5', #./lib/File/Copy.pm
579 'File::Find' => undef, #./lib/File/Find.pm
580 'File::Path' => '1.01', #./lib/File/Path.pm
581 'FileCache' => undef, #./lib/FileCache.pm
582 'FileHandle' => '1.00', #./ext/FileHandle/FileHandle.pm
583 'FindBin' => '1.04', #./lib/FindBin.pm
584 'GDBM_File' => '1.00', #./ext/GDBM_File/GDBM_File.pm
585 'Getopt::Long' => '2.04', #./lib/Getopt/Long.pm
586 'Getopt::Std' => undef, #./lib/Getopt/Std.pm
587 'I18N::Collate' => undef, #./lib/I18N/Collate.pm
588 'integer' => undef, #./lib/integer.pm
589 'IO' => undef, #./ext/IO/IO.pm
590 'IO::File' => '1.05', #./ext/IO/lib/IO/File.pm
591 'IO::Handle' => '1.12', #./ext/IO/lib/IO/Handle.pm
592 'IO::Pipe' => '1.07', #./ext/IO/lib/IO/Pipe.pm
593 'IO::Seekable' => '1.05', #./ext/IO/lib/IO/Seekable.pm
594 'IO::Select' => '1.09', #./ext/IO/lib/IO/Select.pm
595 'IO::Socket' => '1.13', #./ext/IO/lib/IO/Socket.pm
596 'IPC::Open2' => undef, #./lib/IPC/Open2.pm
597 'IPC::Open3' => undef, #./lib/IPC/Open3.pm
598 'less' => undef, #./lib/less.pm
599 'lib' => undef, #./lib/lib.pm
600 'Math::BigFloat' => undef, #./lib/Math/BigFloat.pm
601 'Math::BigInt' => undef, #./lib/Math/BigInt.pm
602 'Math::Complex' => undef, #./lib/Math/Complex.pm
603 'NDBM_File' => '1.00', #./ext/NDBM_File/NDBM_File.pm
604 'Net::Ping' => '1.01', #./lib/Net/Ping.pm
605 'ODBM_File' => '1.00', #./ext/ODBM_File/ODBM_File.pm
606 'Opcode' => '1.01', #./ext/Opcode/Opcode.pm
607 'ops' => undef, #./ext/Opcode/ops.pm
608 'OS2::ExtAttr' => '0.01', #./os2/OS2/ExtAttr/ExtAttr.pm
609 'OS2::PrfDB' => '0.02', #./os2/OS2/PrfDB/PrfDB.pm
610 'OS2::Process' => undef, #./os2/OS2/Process/Process.pm
611 'OS2::REXX' => undef, #./os2/OS2/REXX/REXX.pm
612 'overload' => undef, #./lib/overload.pm
613 'Pod::Functions' => undef, #./lib/Pod/Functions.pm
614 'Pod::Text' => undef, #./lib/Pod/Text.pm
615 'POSIX' => '1.00', #./ext/POSIX/POSIX.pm
616 'Safe' => '2.06', #./ext/Opcode/Safe.pm
617 'SDBM_File' => '1.00', #./ext/SDBM_File/SDBM_File.pm
618 'Search::Dict' => undef, #./lib/Search/Dict.pm
619 'SelectSaver' => undef, #./lib/SelectSaver.pm
620 'SelfLoader' => '1.06', #./lib/SelfLoader.pm
621 'Shell' => undef, #./lib/Shell.pm
622 'sigtrap' => '1.01', #./lib/sigtrap.pm
623 'Socket' => '1.5', #./ext/Socket/Socket.pm
624 'strict' => undef, #./lib/strict.pm
625 'subs' => undef, #./lib/subs.pm
626 'Symbol' => undef, #./lib/Symbol.pm
627 'Sys::Hostname' => undef, #./lib/Sys/Hostname.pm
628 'Sys::Syslog' => undef, #./lib/Sys/Syslog.pm
629 'Term::Cap' => undef, #./lib/Term/Cap.pm
630 'Term::Complete' => undef, #./lib/Term/Complete.pm
631 'Term::ReadLine' => undef, #./lib/Term/ReadLine.pm
632 'Test::Harness' => '1.13', #./lib/Test/Harness.pm
633 'Text::Abbrev' => undef, #./lib/Text/Abbrev.pm
634 'Text::ParseWords' => undef, #./lib/Text/ParseWords.pm
635 'Text::Soundex' => undef, #./lib/Text/Soundex.pm
636 'Text::Tabs' => '96.051501', #./lib/Text/Tabs.pm
637 'Text::Wrap' => '96.041801', #./lib/Text/Wrap.pm
638 'Tie::Hash' => undef, #./lib/Tie/Hash.pm
639 'Tie::Scalar' => undef, #./lib/Tie/Scalar.pm
640 'Tie::SubstrHash' => undef, #./lib/Tie/SubstrHash.pm
641 'Time::Local' => undef, #./lib/Time/Local.pm
642 'UNIVERSAL' => undef, #./lib/UNIVERSAL.pm
643 'vars' => undef, #./lib/vars.pm
644 'VMS::Filespec' => undef, #./vms/ext/Filespec.pm
645 'VMS::Stdio' => '2.0', #./vms/ext/Stdio/Stdio.pm
648 5.004 => {
649 'AnyDBM_File' => undef, #./lib/AnyDBM_File.pm
650 'AutoLoader' => undef, #./lib/AutoLoader.pm
651 'AutoSplit' => undef, #./lib/AutoSplit.pm
652 'autouse' => '1.01', #./lib/autouse.pm
653 'Benchmark' => undef, #./lib/Benchmark.pm
654 'blib' => undef, #./lib/blib.pm
655 'Bundle::CPAN' => '0.02', #./lib/Bundle/CPAN.pm
656 'Carp' => undef, #./lib/Carp.pm
657 'CGI' => '2.36', #./lib/CGI.pm
658 'CGI::Apache' => '1.01', #./lib/CGI/Apache.pm
659 'CGI::Carp' => '1.06', #./lib/CGI/Carp.pm
660 'CGI::Fast' => '1.00a', #./lib/CGI/Fast.pm
661 'CGI::Push' => '1.00', #./lib/CGI/Push.pm
662 'CGI::Switch' => '0.05', #./lib/CGI/Switch.pm
663 'Class::Struct' => undef, #./lib/Class/Struct.pm
664 'Config' => undef,
665 'constant' => '1.00', #./lib/constant.pm
666 'CPAN' => '1.2401', #./lib/CPAN.pm
667 'CPAN::FirstTime' => '1.18 ', #./lib/CPAN/FirstTime.pm
668 'CPAN::Nox' => undef, #./lib/CPAN/Nox.pm
669 'Cwd' => '2.00', #./lib/Cwd.pm
670 'DB_File' => '1.14', #./ext/DB_File/DB_File.pm
671 'Devel::SelfStubber' => '1.01', #./lib/Devel/SelfStubber.pm
672 'diagnostics' => undef, #./lib/diagnostics.pm
673 'DirHandle' => undef, #./lib/DirHandle.pm
674 'DynaLoader' => '1.02', #./ext/DynaLoader/DynaLoader.pm
675 'English' => undef, #./lib/English.pm
676 'Env' => undef, #./lib/Env.pm
677 'Exporter' => undef, #./lib/Exporter.pm
678 'ExtUtils::Command' => '1.00', #./lib/ExtUtils/Command.pm
679 'ExtUtils::Embed' => '1.2501', #./lib/ExtUtils/Embed.pm
680 'ExtUtils::Install' => '1.16 ', #./lib/ExtUtils/Install.pm
681 'ExtUtils::Liblist' => '1.2201 ', #./lib/ExtUtils/Liblist.pm
682 'ExtUtils::MakeMaker' => '5.4002', #./lib/ExtUtils/MakeMaker.pm
683 'ExtUtils::Manifest' => '1.33 ', #./lib/ExtUtils/Manifest.pm
684 'ExtUtils::Mkbootstrap' => '1.13 ', #./lib/ExtUtils/Mkbootstrap.pm
685 'ExtUtils::Mksymlists' => '1.13 ', #./lib/ExtUtils/Mksymlists.pm
686 'ExtUtils::MM_OS2' => undef, #./lib/ExtUtils/MM_OS2.pm
687 'ExtUtils::MM_Unix' => '1.114 ', #./lib/ExtUtils/MM_Unix.pm
688 'ExtUtils::MM_VMS' => undef, #./lib/ExtUtils/MM_VMS.pm
689 'ExtUtils::MM_Win32' => undef, #./lib/ExtUtils/MM_Win32.pm
690 'ExtUtils::testlib' => '1.11 ', #./lib/ExtUtils/testlib.pm
691 'ExtUtils::XSSymSet' => '1.0', #./vms/ext/XSSymSet.pm
692 'Fcntl' => '1.03', #./ext/Fcntl/Fcntl.pm
693 'File::Basename' => '2.5', #./lib/File/Basename.pm
694 'File::CheckTree' => undef, #./lib/File/CheckTree.pm
695 'File::Compare' => '1.1001', #./lib/File/Compare.pm
696 'File::Copy' => '2.02', #./lib/File/Copy.pm
697 'File::Find' => undef, #./lib/File/Find.pm
698 'File::Path' => '1.04', #./lib/File/Path.pm
699 'File::stat' => undef, #./lib/File/stat.pm
700 'FileCache' => undef, #./lib/FileCache.pm
701 'FileHandle' => '2.00', #./lib/FileHandle.pm
702 'FindBin' => '1.04', #./lib/FindBin.pm
703 'GDBM_File' => '1.00', #./ext/GDBM_File/GDBM_File.pm
704 'Getopt::Long' => '2.10', #./lib/Getopt/Long.pm
705 'Getopt::Std' => undef, #./lib/Getopt/Std.pm
706 'I18N::Collate' => undef, #./lib/I18N/Collate.pm
707 'integer' => undef, #./lib/integer.pm
708 'IO' => undef, #./ext/IO/IO.pm
709 'IO::File' => '1.0602', #./ext/IO/lib/IO/File.pm
710 'IO::Handle' => '1.1504', #./ext/IO/lib/IO/Handle.pm
711 'IO::Pipe' => '1.0901', #./ext/IO/lib/IO/Pipe.pm
712 'IO::Seekable' => '1.06', #./ext/IO/lib/IO/Seekable.pm
713 'IO::Select' => '1.10', #./ext/IO/lib/IO/Select.pm
714 'IO::Socket' => '1.1602', #./ext/IO/lib/IO/Socket.pm
715 'IPC::Open2' => '1.01', #./lib/IPC/Open2.pm
716 'IPC::Open3' => '1.0101', #./lib/IPC/Open3.pm
717 'less' => undef, #./lib/less.pm
718 'lib' => undef, #./lib/lib.pm
719 'locale' => undef, #./lib/locale.pm
720 'Math::BigFloat' => undef, #./lib/Math/BigFloat.pm
721 'Math::BigInt' => undef, #./lib/Math/BigInt.pm
722 'Math::Complex' => '1.01', #./lib/Math/Complex.pm
723 'Math::Trig' => '1', #./lib/Math/Trig.pm
724 'NDBM_File' => '1.00', #./ext/NDBM_File/NDBM_File.pm
725 'Net::hostent' => undef, #./lib/Net/hostent.pm
726 'Net::netent' => undef, #./lib/Net/netent.pm
727 'Net::Ping' => '2.02', #./lib/Net/Ping.pm
728 'Net::protoent' => undef, #./lib/Net/protoent.pm
729 'Net::servent' => undef, #./lib/Net/servent.pm
730 'ODBM_File' => '1.00', #./ext/ODBM_File/ODBM_File.pm
731 'Opcode' => '1.04', #./ext/Opcode/Opcode.pm
732 'ops' => undef, #./ext/Opcode/ops.pm
733 'Safe' => '2.06', #./ext/Opcode/Safe.pm
734 'OS2::ExtAttr' => '0.01', #./os2/OS2/ExtAttr/ExtAttr.pm
735 'OS2::PrfDB' => '0.02', #./os2/OS2/PrfDB/PrfDB.pm
736 'OS2::Process' => undef, #./os2/OS2/Process/Process.pm
737 'OS2::REXX' => undef, #./os2/OS2/REXX/REXX.pm
738 'overload' => undef, #./lib/overload.pm
739 'Pod::Functions' => undef, #./lib/Pod/Functions.pm
740 'Pod::Html' => undef, #./lib/Pod/Html.pm
741 'Pod::Text' => '1.0203', #./lib/Pod/Text.pm
742 'POSIX' => '1.02', #./ext/POSIX/POSIX.pm
743 'SDBM_File' => '1.00', #./ext/SDBM_File/SDBM_File.pm
744 'Search::Dict' => undef, #./lib/Search/Dict.pm
745 'SelectSaver' => undef, #./lib/SelectSaver.pm
746 'SelfLoader' => '1.07', #./lib/SelfLoader.pm
747 'Shell' => undef, #./lib/Shell.pm
748 'sigtrap' => '1.02', #./lib/sigtrap.pm
749 'Socket' => '1.6', #./ext/Socket/Socket.pm
750 'strict' => undef, #./lib/strict.pm
751 'subs' => undef, #./lib/subs.pm
752 'Symbol' => '1.02', #./lib/Symbol.pm
753 'Sys::Hostname' => undef, #./lib/Sys/Hostname.pm
754 'Sys::Syslog' => undef, #./lib/Sys/Syslog.pm
755 'Term::Cap' => undef, #./lib/Term/Cap.pm
756 'Term::Complete' => undef, #./lib/Term/Complete.pm
757 'Term::ReadLine' => undef, #./lib/Term/ReadLine.pm
758 'Test::Harness' => '1.1502', #./lib/Test/Harness.pm
759 'Text::Abbrev' => undef, #./lib/Text/Abbrev.pm
760 'Text::ParseWords' => undef, #./lib/Text/ParseWords.pm
761 'Text::Soundex' => undef, #./lib/Text/Soundex.pm
762 'Text::Tabs' => '96.121201', #./lib/Text/Tabs.pm
763 'Text::Wrap' => '97.011701', #./lib/Text/Wrap.pm
764 'Tie::Hash' => undef, #./lib/Tie/Hash.pm
765 'Tie::RefHash' => undef, #./lib/Tie/RefHash.pm
766 'Tie::Scalar' => undef, #./lib/Tie/Scalar.pm
767 'Tie::SubstrHash' => undef, #./lib/Tie/SubstrHash.pm
768 'Time::gmtime' => '1.01', #./lib/Time/gmtime.pm
769 'Time::Local' => undef, #./lib/Time/Local.pm
770 'Time::localtime' => '1.01', #./lib/Time/localtime.pm
771 'Time::tm' => undef, #./lib/Time/tm.pm
772 'UNIVERSAL' => undef, #./lib/UNIVERSAL.pm
773 'User::grent' => undef, #./lib/User/grent.pm
774 'User::pwent' => undef, #./lib/User/pwent.pm
775 'vars' => undef, #./lib/vars.pm
776 'VMS::DCLsym' => '1.01', #./vms/ext/DCLsym/DCLsym.pm
777 'VMS::Filespec' => undef, #./vms/ext/Filespec.pm
778 'VMS::Stdio' => '2.02', #./vms/ext/Stdio/Stdio.pm
779 'vmsish' => undef, #./vms/ext/vmsish.pm
782 5.005 => {
783 'AnyDBM_File' => undef, #./lib/AnyDBM_File.pm
784 'attrs' => '1.0', #./ext/attrs/attrs.pm
785 'AutoLoader' => undef, #./lib/AutoLoader.pm
786 'AutoSplit' => '1.0302', #./lib/AutoSplit.pm
787 'autouse' => '1.01', #./lib/autouse.pm
788 'B' => undef, #./ext/B/B.pm
789 'B::Asmdata' => undef, #./ext/B/B/Asmdata.pm
790 'B::Assembler' => undef, #./ext/B/B/Assembler.pm
791 'B::Bblock' => undef, #./ext/B/B/Bblock.pm
792 'B::Bytecode' => undef, #./ext/B/B/Bytecode.pm
793 'B::C' => undef, #./ext/B/B/C.pm
794 'B::CC' => undef, #./ext/B/B/CC.pm
795 'B::Debug' => undef, #./ext/B/B/Debug.pm
796 'B::Deparse' => '0.56', #./ext/B/B/Deparse.pm
797 'B::Disassembler' => undef, #./ext/B/B/Disassembler.pm
798 'B::Lint' => undef, #./ext/B/B/Lint.pm
799 'B::Showlex' => undef, #./ext/B/B/Showlex.pm
800 'B::Stackobj' => undef, #./ext/B/B/Stackobj.pm
801 'B::Terse' => undef, #./ext/B/B/Terse.pm
802 'B::Xref' => undef, #./ext/B/B/Xref.pm
803 'base' => undef, #./lib/base.pm
804 'Benchmark' => undef, #./lib/Benchmark.pm
805 'blib' => '1.00', #./lib/blib.pm
806 'Carp' => undef, #./lib/Carp.pm
807 'CGI' => '2.42', #./lib/CGI.pm
808 'CGI::Apache' => '1.1', #./lib/CGI/Apache.pm
809 'CGI::Carp' => '1.101', #./lib/CGI/Carp.pm
810 'CGI::Cookie' => '1.06', #./lib/CGI/Cookie.pm
811 'CGI::Fast' => '1.00a', #./lib/CGI/Fast.pm
812 'CGI::Push' => '1.01', #./lib/CGI/Push.pm
813 'CGI::Switch' => '0.06', #./lib/CGI/Switch.pm
814 'Class::Struct' => undef, #./lib/Class/Struct.pm
815 'Config' => undef,
816 'constant' => '1.00', #./lib/constant.pm
817 'CPAN' => '1.3901', #./lib/CPAN.pm
818 'CPAN::FirstTime' => '1.29 ', #./lib/CPAN/FirstTime.pm
819 'CPAN::Nox' => undef, #./lib/CPAN/Nox.pm
820 'Cwd' => '2.01', #./lib/Cwd.pm
821 'Data::Dumper' => '2.09', #./ext/Data/Dumper/Dumper.pm
822 'DB_File' => '1.60', #./ext/DB_File/DB_File.pm
823 'Devel::SelfStubber' => '1.01', #./lib/Devel/SelfStubber.pm
824 'DynaLoader' => '1.03',
825 'diagnostics' => undef, #./lib/diagnostics.pm
826 'DirHandle' => undef, #./lib/DirHandle.pm
827 'English' => undef, #./lib/English.pm
828 'Env' => undef, #./lib/Env.pm
829 'Exporter' => undef, #./lib/Exporter.pm
830 'ExtUtils::Command' => '1.01', #./lib/ExtUtils/Command.pm
831 'ExtUtils::Embed' => '1.2505', #./lib/ExtUtils/Embed.pm
832 'ExtUtils::Install' => '1.28 ', #./lib/ExtUtils/Install.pm
833 'ExtUtils::Installed' => '0.02', #./lib/ExtUtils/Installed.pm
834 'ExtUtils::Liblist' => '1.25 ', #./lib/ExtUtils/Liblist.pm
835 'ExtUtils::MakeMaker' => '5.4301', #./lib/ExtUtils/MakeMaker.pm
836 'ExtUtils::Manifest' => '1.33 ', #./lib/ExtUtils/Manifest.pm
837 'ExtUtils::Mkbootstrap' => '1.13 ', #./lib/ExtUtils/Mkbootstrap.pm
838 'ExtUtils::Mksymlists' => '1.17 ', #./lib/ExtUtils/Mksymlists.pm
839 'ExtUtils::MM_OS2' => undef, #./lib/ExtUtils/MM_OS2.pm
840 'ExtUtils::MM_Unix' => '1.12601 ', #./lib/ExtUtils/MM_Unix.pm
841 'ExtUtils::MM_VMS' => undef, #./lib/ExtUtils/MM_VMS.pm
842 'ExtUtils::MM_Win32' => undef, #./lib/ExtUtils/MM_Win32.pm
843 'ExtUtils::Packlist' => '0.03', #./lib/ExtUtils/Packlist.pm
844 'ExtUtils::testlib' => '1.11 ', #./lib/ExtUtils/testlib.pm
845 'ExtUtils::XSSymSet' => '1.0', #./vms/ext/XSSymSet.pm
846 'Fatal' => '1.02', #./lib/Fatal.pm
847 'Fcntl' => '1.03', #./ext/Fcntl/Fcntl.pm
848 'fields' => '0.02', #./lib/fields.pm
849 'File::Basename' => '2.6', #./lib/File/Basename.pm
850 'File::CheckTree' => undef, #./lib/File/CheckTree.pm
851 'File::Compare' => '1.1001', #./lib/File/Compare.pm
852 'File::Copy' => '2.02', #./lib/File/Copy.pm
853 'File::DosGlob' => undef, #./lib/File/DosGlob.pm
854 'File::Find' => undef, #./lib/File/Find.pm
855 'File::Path' => '1.0401', #./lib/File/Path.pm
856 'File::Spec' => '0.6', #./lib/File/Spec.pm
857 'File::Spec::Mac' => '1.0', #./lib/File/Spec/Mac.pm
858 'File::Spec::OS2' => undef, #./lib/File/Spec/OS2.pm
859 'File::Spec::Unix' => undef, #./lib/File/Spec/Unix.pm
860 'File::Spec::VMS' => undef, #./lib/File/Spec/VMS.pm
861 'File::Spec::Win32' => undef, #./lib/File/Spec/Win32.pm
862 'File::stat' => undef, #./lib/File/stat.pm
863 'FileCache' => undef, #./lib/FileCache.pm
864 'FileHandle' => '2.00', #./lib/FileHandle.pm
865 'FindBin' => '1.41', #./lib/FindBin.pm
866 'GDBM_File' => '1.00', #./ext/GDBM_File/GDBM_File.pm
867 'Getopt::Long' => '2.17', #./lib/Getopt/Long.pm
868 'Getopt::Std' => undef, #./lib/Getopt/Std.pm
869 'I18N::Collate' => undef, #./lib/I18N/Collate.pm
870 'integer' => undef, #./lib/integer.pm
871 'IO' => undef, #./ext/IO/IO.pm
872 'IO::File' => '1.06021', #./ext/IO/lib/IO/File.pm
873 'IO::Handle' => '1.1505', #./ext/IO/lib/IO/Handle.pm
874 'IO::Pipe' => '1.0901', #./ext/IO/lib/IO/Pipe.pm
875 'IO::Seekable' => '1.06', #./ext/IO/lib/IO/Seekable.pm
876 'IO::Select' => '1.10', #./ext/IO/lib/IO/Select.pm
877 'IO::Socket' => '1.1603', #./ext/IO/lib/IO/Socket.pm
878 'IPC::Open2' => '1.01', #./lib/IPC/Open2.pm
879 'IPC::Open3' => '1.0102', #./lib/IPC/Open3.pm
880 'IPC::Msg' => '1.00', #./ext/IPC/SysV/Msg.pm
881 'IPC::Semaphore' => '1.00', #./ext/IPC/SysV/Semaphore.pm
882 'IPC::SysV' => '1.03', #./ext/IPC/SysV/SysV.pm
883 'less' => undef, #./lib/less.pm
884 'lib' => undef, #./lib/lib.pm
885 'locale' => undef, #./lib/locale.pm
886 'Math::BigFloat' => undef, #./lib/Math/BigFloat.pm
887 'Math::BigInt' => undef, #./lib/Math/BigInt.pm
888 'Math::Complex' => '1.25', #./lib/Math/Complex.pm
889 'Math::Trig' => '1', #./lib/Math/Trig.pm
890 'NDBM_File' => '1.01', #./ext/NDBM_File/NDBM_File.pm
891 'Net::hostent' => undef, #./lib/Net/hostent.pm
892 'Net::netent' => undef, #./lib/Net/netent.pm
893 'Net::Ping' => '2.02', #./lib/Net/Ping.pm
894 'Net::protoent' => undef, #./lib/Net/protoent.pm
895 'Net::servent' => undef, #./lib/Net/servent.pm
896 'O' => undef, #./ext/B/O.pm
897 'ODBM_File' => '1.00', #./ext/ODBM_File/ODBM_File.pm
898 'Opcode' => '1.04', #./ext/Opcode/Opcode.pm
899 'ops' => undef, #./ext/Opcode/ops.pm
900 'Safe' => '2.06', #./ext/Opcode/Safe.pm
901 'OS2::ExtAttr' => '0.01', #./os2/OS2/ExtAttr/ExtAttr.pm
902 'OS2::PrfDB' => '0.02', #./os2/OS2/PrfDB/PrfDB.pm
903 'OS2::Process' => '0.2', #./os2/OS2/Process/Process.pm
904 'OS2::REXX' => undef, #./os2/OS2/REXX/REXX.pm
905 'overload' => undef, #./lib/overload.pm
906 'Pod::Functions' => undef, #./lib/Pod/Functions.pm
907 'Pod::Html' => '1.01', #./lib/Pod/Html.pm
908 'Pod::Text' => '1.0203', #./lib/Pod/Text.pm
909 'POSIX' => '1.02', #./ext/POSIX/POSIX.pm
910 're' => '0.02', #./ext/re/re.pm
911 'SDBM_File' => '1.00', #./ext/SDBM_File/SDBM_File.pm
912 'Search::Dict' => undef, #./lib/Search/Dict.pm
913 'SelectSaver' => undef, #./lib/SelectSaver.pm
914 'SelfLoader' => '1.08', #./lib/SelfLoader.pm
915 'Shell' => undef, #./lib/Shell.pm
916 'sigtrap' => '1.02', #./lib/sigtrap.pm
917 'Socket' => '1.7', #./ext/Socket/Socket.pm
918 'strict' => '1.01', #./lib/strict.pm
919 'subs' => undef, #./lib/subs.pm
920 'Symbol' => '1.02', #./lib/Symbol.pm
921 'Sys::Hostname' => undef, #./lib/Sys/Hostname.pm
922 'Sys::Syslog' => undef, #./lib/Sys/Syslog.pm
923 'Term::Cap' => undef, #./lib/Term/Cap.pm
924 'Term::Complete' => undef, #./lib/Term/Complete.pm
925 'Term::ReadLine' => undef, #./lib/Term/ReadLine.pm
926 'Test' => '1.04', #./lib/Test.pm
927 'Test::Harness' => '1.1602', #./lib/Test/Harness.pm
928 'Text::Abbrev' => undef, #./lib/Text/Abbrev.pm
929 'Text::ParseWords' => '3.1', #./lib/Text/ParseWords.pm
930 'Text::Soundex' => undef, #./lib/Text/Soundex.pm
931 'Text::Tabs' => '96.121201', #./lib/Text/Tabs.pm
932 'Text::Wrap' => '97.02', #./lib/Text/Wrap.pm
933 'Thread' => '1.0', #./ext/Thread/Thread.pm
934 'Thread::Queue' => undef, #./ext/Thread/Thread/Queue.pm
935 'Thread::Semaphore' => undef, #./ext/Thread/Thread/Semaphore.pm
936 'Thread::Signal' => undef, #./ext/Thread/Thread/Signal.pm
937 'Thread::Specific' => undef, #./ext/Thread/Thread/Specific.pm
938 'Tie::Array' => '1.00', #./lib/Tie/Array.pm
939 'Tie::Handle' => undef, #./lib/Tie/Handle.pm
940 'Tie::Hash' => undef, #./lib/Tie/Hash.pm
941 'Tie::RefHash' => undef, #./lib/Tie/RefHash.pm
942 'Tie::Scalar' => undef, #./lib/Tie/Scalar.pm
943 'Tie::SubstrHash' => undef, #./lib/Tie/SubstrHash.pm
944 'Time::gmtime' => '1.01', #./lib/Time/gmtime.pm
945 'Time::Local' => undef, #./lib/Time/Local.pm
946 'Time::localtime' => '1.01', #./lib/Time/localtime.pm
947 'Time::tm' => undef, #./lib/Time/tm.pm
948 'UNIVERSAL' => undef, #./lib/UNIVERSAL.pm
949 'User::grent' => undef, #./lib/User/grent.pm
950 'User::pwent' => undef, #./lib/User/pwent.pm
951 'vars' => undef, #./lib/vars.pm
952 'VMS::DCLsym' => '1.01', #./vms/ext/DCLsym/DCLsym.pm
953 'VMS::Filespec' => undef, #./vms/ext/Filespec.pm
954 'VMS::Stdio' => '2.1', #./vms/ext/Stdio/Stdio.pm
955 'vmsish' => undef, #./vms/ext/vmsish.pm
958 5.00503 => {
959 'AnyDBM_File' => undef,
960 'attrs' => '1.0',
961 'AutoLoader' => undef,
962 'AutoSplit' => 1.0303,
963 'autouse' => 1.01,
964 'B::Asmdata' => undef,
965 'B::Assembler' => undef,
966 'B::Bblock' => undef,
967 'B::Bytecode' => undef,
968 'B::C' => undef,
969 'B::CC' => undef,
970 'B::Debug' => undef,
971 'B::Deparse' => 0.56,
972 'B::Disassembler' => undef,
973 'B::Lint' => undef,
974 'B' => undef,
975 'B::Showlex' => undef,
976 'B::Stackobj' => undef,
977 'B::Terse' => undef,
978 'B::Xref' => undef,
979 'base' => undef,
980 'Benchmark' => undef,
981 'blib' => '1.00',
982 'Carp' => undef,
983 'CGI' => 2.46,
984 'CGI::Apache' => 1.1,
985 'CGI::Carp' => 1.13,
986 'CGI::Cookie' => 1.06,
987 'CGI::Fast' => 1.01,
988 'CGI::Push' => 1.01,
989 'CGI::Switch' => 0.06,
990 'Class::Struct' => undef,
991 'Config' => undef,
992 'constant' => '1.00',
993 'CPAN::FirstTime' => 1.36 ,
994 'CPAN' => 1.48,
995 'CPAN::Nox' => '1.00',
996 'Cwd' => 2.01,
997 'Data::Dumper' => 2.101,
998 'DB_File' => 1.65,
999 'Devel::SelfStubber' => 1.01,
1000 'diagnostics' => undef,
1001 'DirHandle' => undef,
1002 'Dumpvalue' => undef,
1003 'DynaLoader' => 1.03,
1004 'English' => undef,
1005 'Env' => undef,
1006 'Exporter' => undef,
1007 'ExtUtils::Command' => 1.01,
1008 'ExtUtils::Embed' => 1.2505,
1009 'ExtUtils::Install' => 1.28 ,
1010 'ExtUtils::Installed' => 0.02,
1011 'ExtUtils::Liblist' => 1.25 ,
1012 'ExtUtils::MakeMaker' => 5.4302,
1013 'ExtUtils::Manifest' => 1.33 ,
1014 'ExtUtils::Mkbootstrap' => 1.14 ,
1015 'ExtUtils::Mksymlists' => 1.17 ,
1016 'ExtUtils::MM_OS2' => undef,
1017 'ExtUtils::MM_Unix' => 1.12602 ,
1018 'ExtUtils::MM_VMS' => undef,
1019 'ExtUtils::MM_Win32' => undef,
1020 'ExtUtils::Packlist' => 0.03,
1021 'ExtUtils::testlib' => 1.11 ,
1022 'ExtUtils::XSSymSet' => '1.0',
1023 'Fatal' => 1.02,
1024 'Fcntl' => 1.03,
1025 'fields' => 0.02,
1026 'File::Basename' => 2.6,
1027 'File::CheckTree' => undef,
1028 'File::Compare' => 1.1001,
1029 'File::Copy' => 2.02,
1030 'File::DosGlob' => undef,
1031 'File::Find' => undef,
1032 'File::Path' => 1.0401,
1033 'File::Spec' => 0.6,
1034 'File::Spec::Mac' => '1.0',
1035 'File::Spec::OS2' => undef,
1036 'File::Spec::Unix' => undef,
1037 'File::Spec::VMS' => undef,
1038 'File::Spec::Win32' => undef,
1039 'File::stat' => undef,
1040 'FileCache' => undef,
1041 'FileHandle' => '2.00',
1042 'FindBin' => 1.42,
1043 'GDBM_File' => '1.00',
1044 'Getopt::Long' => 2.19,
1045 'Getopt::Std' => 1.01,
1046 'I18N::Collate' => undef,
1047 'integer' => undef,
1048 'IO' => undef,
1049 'IO::File' => 1.06021,
1050 'IO::Handle' => 1.1505,
1051 'IO::Pipe' => 1.0902,
1052 'IO::Seekable' => 1.06,
1053 'IO::Select' => '1.10',
1054 'IO::Socket' => 1.1603,
1055 'IPC::Msg' => '1.00',
1056 'IPC::Open2' => 1.01,
1057 'IPC::Open3' => 1.0103,
1058 'IPC::Semaphore' => '1.00',
1059 'IPC::SysV' => 1.03,
1060 'less' => undef,
1061 'lib' => undef,
1062 'locale' => undef,
1063 'Math::BigFloat' => undef,
1064 'Math::BigInt' => undef,
1065 'Math::Complex' => 1.26,
1066 'Math::Trig' => 1,
1067 'NDBM_File' => 1.01,
1068 'Net::hostent' => undef,
1069 'Net::netent' => undef,
1070 'Net::Ping' => 2.02,
1071 'Net::protoent' => undef,
1072 'Net::servent' => undef,
1073 'O' => undef,
1074 'ODBM_File' => '1.00',
1075 'Opcode' => 1.04,
1076 'ops' => undef,
1077 'OS2::ExtAttr' => 0.01,
1078 'OS2::PrfDB' => 0.02,
1079 'OS2::Process' => 0.2,
1080 'OS2::REXX' => undef,
1081 'overload' => undef,
1082 'Pod::Functions' => undef,
1083 'Pod::Html' => 1.01,
1084 'Pod::Text' => 1.0203,
1085 'POSIX' => 1.02,
1086 're' => 0.02,
1087 'Safe' => 2.06,
1088 'SDBM_File' => '1.00',
1089 'Search::Dict' => undef,
1090 'SelectSaver' => undef,
1091 'SelfLoader' => 1.08,
1092 'Shell' => undef,
1093 'sigtrap' => 1.02,
1094 'Socket' => 1.7,
1095 'strict' => 1.01,
1096 'subs' => undef,
1097 'Symbol' => 1.02,
1098 'Sys::Hostname' => undef,
1099 'Sys::Syslog' => undef,
1100 'Term::Cap' => undef,
1101 'Term::Complete' => undef,
1102 'Term::ReadLine' => undef,
1103 'Test' => 1.122,
1104 'Test::Harness' => 1.1602,
1105 'Text::Abbrev' => undef,
1106 'Text::ParseWords' => 3.1,
1107 'Text::Soundex' => undef,
1108 'Text::Tabs' => 96.121201,
1109 'Text::Wrap' => 98.112902,
1110 'Thread' => '1.0',
1111 'Thread::Queue' => undef,
1112 'Thread::Semaphore' => undef,
1113 'Thread::Specific' => undef,
1114 'Thread::Signal' => undef,
1115 'Tie::Array' => '1.00',
1116 'Tie::Handle' => undef,
1117 'Tie::Hash' => undef,
1118 'Tie::RefHash' => undef,
1119 'Tie::Scalar' => undef,
1120 'Tie::SubstrHash' => undef,
1121 'Time::gmtime' => 1.01,
1122 'Time::Local' => undef,
1123 'Time::localtime' => 1.01,
1124 'Time::tm' => undef,
1125 'UNIVERSAL' => undef,
1126 'User::grent' => undef,
1127 'User::pwent' => undef,
1128 'vars' => undef,
1129 'VMS::DCLsym' => 1.01,
1130 'VMS::Filespec' => undef,
1131 'VMS::Stdio' => 2.1,
1132 'vmsish' => undef,
1135 5.00405 => {
1136 'AnyDBM_File' => undef, #./lib/AnyDBM_File.pm
1137 'attrs' => '0.1', #./lib/attrs.pm
1138 'AutoLoader' => '5.56', #./lib/AutoLoader.pm
1139 'AutoSplit' => '1.0303', #./lib/AutoSplit.pm
1140 'autouse' => '1.01', #./lib/autouse.pm
1141 'base' => undef, #./lib/base.pm
1142 'Benchmark' => undef, #./lib/Benchmark.pm
1143 'blib' => '1.00', #./lib/blib.pm
1144 'Bundle::CPAN' => '0.03', #./lib/Bundle/CPAN.pm
1145 'Carp' => undef, #./lib/Carp.pm
1146 'CGI' => '2.42', #./lib/CGI.pm
1147 'CGI::Apache' => '1.1', #./lib/CGI/Apache.pm
1148 'CGI::Carp' => '1.10', #./lib/CGI/Carp.pm
1149 'CGI::Cookie' => '1.06', #./lib/CGI/Cookie.pm
1150 'CGI::Fast' => '1.00a', #./lib/CGI/Fast.pm
1151 'CGI::Push' => '1.01', #./lib/CGI/Push.pm
1152 'CGI::Switch' => '0.06', #./lib/CGI/Switch.pm
1153 'Class::Struct' => undef, #./lib/Class/Struct.pm
1154 'Config' => undef,
1155 'constant' => '1.00', #./lib/constant.pm
1156 'CPAN' => '1.40', #./lib/CPAN.pm
1157 'CPAN::FirstTime' => '1.30 ', #./lib/CPAN/FirstTime.pm
1158 'CPAN::Nox' => undef, #./lib/CPAN/Nox.pm
1159 'Cwd' => '2.01', #./lib/Cwd.pm
1160 'DB_File' => '1.15', #./ext/DB_File/DB_File.pm
1161 'Devel::SelfStubber' => '1.01', #./lib/Devel/SelfStubber.pm
1162 'diagnostics' => undef, #./lib/diagnostics.pm
1163 'DirHandle' => undef, #./lib/DirHandle.pm
1164 'DynaLoader' => '1.03',
1165 'English' => undef, #./lib/English.pm
1166 'Env' => undef, #./lib/Env.pm
1167 'Exporter' => undef, #./lib/Exporter.pm
1168 'ExtUtils::Command' => '1.01', #./lib/ExtUtils/Command.pm
1169 'ExtUtils::Embed' => '1.2505', #./lib/ExtUtils/Embed.pm
1170 'ExtUtils::Install' => '1.28 ', #./lib/ExtUtils/Install.pm
1171 'ExtUtils::Liblist' => '1.25 ', #./lib/ExtUtils/Liblist.pm
1172 'ExtUtils::MakeMaker' => '5.42', #./lib/ExtUtils/MakeMaker.pm
1173 'ExtUtils::Manifest' => '1.33 ', #./lib/ExtUtils/Manifest.pm
1174 'ExtUtils::Mkbootstrap' => '1.14 ', #./lib/ExtUtils/Mkbootstrap.pm
1175 'ExtUtils::Mksymlists' => '1.16 ', #./lib/ExtUtils/Mksymlists.pm
1176 'ExtUtils::MM_OS2' => undef, #./lib/ExtUtils/MM_OS2.pm
1177 'ExtUtils::MM_Unix' => '1.118 ', #./lib/ExtUtils/MM_Unix.pm
1178 'ExtUtils::MM_VMS' => undef, #./lib/ExtUtils/MM_VMS.pm
1179 'ExtUtils::MM_Win32' => undef, #./lib/ExtUtils/MM_Win32.pm
1180 'ExtUtils::testlib' => '1.11 ', #./lib/ExtUtils/testlib.pm
1181 'ExtUtils::XSSymSet' => '1.0', #./vms/ext/XSSymSet.pm
1182 'Fcntl' => '1.03', #./ext/Fcntl/Fcntl.pm
1183 'File::Basename' => '2.6', #./lib/File/Basename.pm
1184 'File::CheckTree' => undef, #./lib/File/CheckTree.pm
1185 'File::Compare' => '1.1001', #./lib/File/Compare.pm
1186 'File::Copy' => '2.02', #./lib/File/Copy.pm
1187 'File::DosGlob' => undef, #./lib/File/DosGlob.pm
1188 'File::Find' => undef, #./lib/File/Find.pm
1189 'File::Path' => '1.0402', #./lib/File/Path.pm
1190 'File::Spec' => '0.6', #./lib/File/Spec.pm
1191 'File::Spec::Mac' => '1.0', #./lib/File/Spec/Mac.pm
1192 'File::Spec::OS2' => undef, #./lib/File/Spec/OS2.pm
1193 'File::Spec::Unix' => undef, #./lib/File/Spec/Unix.pm
1194 'File::Spec::VMS' => undef, #./lib/File/Spec/VMS.pm
1195 'File::Spec::Win32' => undef, #./lib/File/Spec/Win32.pm
1196 'File::stat' => undef, #./lib/File/stat.pm
1197 'FileCache' => undef, #./lib/FileCache.pm
1198 'FileHandle' => '2.00', #./lib/FileHandle.pm
1199 'FindBin' => '1.41', #./lib/FindBin.pm
1200 'GDBM_File' => '1.00', #./ext/GDBM_File/GDBM_File.pm
1201 'Getopt::Long' => '2.19', #./lib/Getopt/Long.pm
1202 'Getopt::Std' => undef, #./lib/Getopt/Std.pm
1203 'I18N::Collate' => undef, #./lib/I18N/Collate.pm
1204 'integer' => undef, #./lib/integer.pm
1205 'IO' => undef, #./ext/IO/IO.pm
1206 'IO::File' => '1.06021', #./ext/IO/lib/IO/File.pm
1207 'IO::Handle' => '1.1504', #./ext/IO/lib/IO/Handle.pm
1208 'IO::Pipe' => '1.0901', #./ext/IO/lib/IO/Pipe.pm
1209 'IO::Seekable' => '1.06', #./ext/IO/lib/IO/Seekable.pm
1210 'IO::Select' => '1.10', #./ext/IO/lib/IO/Select.pm
1211 'IO::Socket' => '1.1603', #./ext/IO/lib/IO/Socket.pm
1212 'IPC::Open2' => '1.01', #./lib/IPC/Open2.pm
1213 'IPC::Open3' => '1.0103', #./lib/IPC/Open3.pm
1214 'less' => undef, #./lib/less.pm
1215 'lib' => undef, #./lib/lib.pm
1216 'locale' => undef, #./lib/locale.pm
1217 'Math::BigFloat' => undef, #./lib/Math/BigFloat.pm
1218 'Math::BigInt' => undef, #./lib/Math/BigInt.pm
1219 'Math::Complex' => '1.25', #./lib/Math/Complex.pm
1220 'Math::Trig' => '1', #./lib/Math/Trig.pm
1221 'NDBM_File' => '1.01', #./ext/NDBM_File/NDBM_File.pm
1222 'Net::hostent' => undef, #./lib/Net/hostent.pm
1223 'Net::netent' => undef, #./lib/Net/netent.pm
1224 'Net::Ping' => '2.02', #./lib/Net/Ping.pm
1225 'Net::protoent' => undef, #./lib/Net/protoent.pm
1226 'Net::servent' => undef, #./lib/Net/servent.pm
1227 'ODBM_File' => '1.00', #./ext/ODBM_File/ODBM_File.pm
1228 'Opcode' => '1.04', #./ext/Opcode/Opcode.pm
1229 'ops' => undef, #./ext/Opcode/ops.pm
1230 'OS2::ExtAttr' => '0.01', #./os2/OS2/ExtAttr/ExtAttr.pm
1231 'OS2::PrfDB' => '0.02', #./os2/OS2/PrfDB/PrfDB.pm
1232 'OS2::Process' => undef, #./os2/OS2/Process/Process.pm
1233 'OS2::REXX' => undef, #./os2/OS2/REXX/REXX.pm
1234 'overload' => undef, #./lib/overload.pm
1235 'Pod::Functions' => undef, #./lib/Pod/Functions.pm
1236 'Pod::Html' => '1.0101', #./lib/Pod/Html.pm
1237 'Pod::Text' => '1.0204', #./lib/Pod/Text.pm
1238 'POSIX' => '1.02', #./ext/POSIX/POSIX.pm
1239 're' => undef, #./lib/re.pm
1240 'Safe' => '2.06', #./ext/Opcode/Safe.pm
1241 'SDBM_File' => '1.00', #./ext/SDBM_File/SDBM_File.pm
1242 'Search::Dict' => undef, #./lib/Search/Dict.pm
1243 'SelectSaver' => undef, #./lib/SelectSaver.pm
1244 'SelfLoader' => '1.08', #./lib/SelfLoader.pm
1245 'Shell' => undef, #./lib/Shell.pm
1246 'sigtrap' => '1.02', #./lib/sigtrap.pm
1247 'Socket' => '1.7', #./ext/Socket/Socket.pm
1248 'strict' => '1.01', #./lib/strict.pm
1249 'subs' => undef, #./lib/subs.pm
1250 'Symbol' => '1.02', #./lib/Symbol.pm
1251 'Sys::Hostname' => undef, #./lib/Sys/Hostname.pm
1252 'Sys::Syslog' => undef, #./lib/Sys/Syslog.pm
1253 'Term::Cap' => undef, #./lib/Term/Cap.pm
1254 'Term::Complete' => undef, #./lib/Term/Complete.pm
1255 'Term::ReadLine' => undef, #./lib/Term/ReadLine.pm
1256 'Test' => '1.04', #./lib/Test.pm
1257 'Test::Harness' => '1.1602', #./lib/Test/Harness.pm
1258 'Text::Abbrev' => undef, #./lib/Text/Abbrev.pm
1259 'Text::ParseWords' => '3.1001', #./lib/Text/ParseWords.pm
1260 'Text::Soundex' => undef, #./lib/Text/Soundex.pm
1261 'Text::Tabs' => '96.121201', #./lib/Text/Tabs.pm
1262 'Text::Wrap' => '98.112902', #./lib/Text/Wrap.pm
1263 'Tie::Handle' => undef, #./lib/Tie/Handle.pm
1264 'Tie::Hash' => undef, #./lib/Tie/Hash.pm
1265 'Tie::RefHash' => undef, #./lib/Tie/RefHash.pm
1266 'Tie::Scalar' => undef, #./lib/Tie/Scalar.pm
1267 'Tie::SubstrHash' => undef, #./lib/Tie/SubstrHash.pm
1268 'Time::gmtime' => '1.01', #./lib/Time/gmtime.pm
1269 'Time::Local' => undef, #./lib/Time/Local.pm
1270 'Time::localtime' => '1.01', #./lib/Time/localtime.pm
1271 'Time::tm' => undef, #./lib/Time/tm.pm
1272 'UNIVERSAL' => undef, #./lib/UNIVERSAL.pm
1273 'User::grent' => undef, #./lib/User/grent.pm
1274 'User::pwent' => undef, #./lib/User/pwent.pm
1275 'vars' => undef, #./lib/vars.pm
1276 'VMS::DCLsym' => '1.01', #./vms/ext/DCLsym/DCLsym.pm
1277 'VMS::Filespec' => undef, #./vms/ext/Filespec.pm
1278 'VMS::Stdio' => '2.02', #./vms/ext/Stdio/Stdio.pm
1279 'vmsish' => undef, #./vms/ext/vmsish.pm
1282 5.00504 => {
1283 'AnyDBM_File' => undef, #lib/AnyDBM_File.pm
1284 'attrs' => '1.0', #lib/attrs.pm
1285 'AutoLoader' => undef, #lib/AutoLoader.pm
1286 'AutoSplit' => '1.0303', #lib/AutoSplit.pm
1287 'autouse' => '1.01', #lib/autouse.pm
1288 'base' => undef, #lib/base.pm
1289 'B::Asmdata' => undef, #lib/B/Asmdata.pm
1290 'B::Assembler' => undef, #lib/B/Assembler.pm
1291 'B::Bblock' => undef, #lib/B/Bblock.pm
1292 'B::Bytecode' => undef, #lib/B/Bytecode.pm
1293 'B::CC' => undef, #lib/B/CC.pm
1294 'B::C' => undef, #lib/B/C.pm
1295 'B::Debug' => undef, #lib/B/Debug.pm
1296 'B::Deparse' => '0.56', #lib/B/Deparse.pm
1297 'B::Disassembler' => undef, #lib/B/Disassembler.pm
1298 'Benchmark' => undef, #lib/Benchmark.pm
1299 'blib' => '1.00', #lib/blib.pm
1300 'B::Lint' => undef, #lib/B/Lint.pm
1301 'B::Showlex' => undef, #lib/B/Showlex.pm
1302 'B::Stackobj' => undef, #lib/B/Stackobj.pm
1303 'B::Terse' => undef, #lib/B/Terse.pm
1304 'B' => undef, #lib/B.pm
1305 'B::Xref' => undef, #lib/B/Xref.pm
1306 'Carp' => undef, #lib/Carp.pm
1307 'CGI' => '2.46', #lib/CGI.pm
1308 'CGI::Apache' => '1.1', #lib/CGI/Apache.pm
1309 'CGI::Carp' => '1.13', #lib/CGI/Carp.pm
1310 'CGI::Cookie' => '1.06', #lib/CGI/Cookie.pm
1311 'CGI::Fast' => '1.01', #lib/CGI/Fast.pm
1312 'CGI::Push' => '1.01', #lib/CGI/Push.pm
1313 'CGI::Switch' => '0.06', #lib/CGI/Switch.pm
1314 'Class::Struct' => undef, #lib/Class/Struct.pm
1315 'Config' => undef, #lib/Config.pm
1316 'constant' => '1.00', #lib/constant.pm
1317 'CPAN' => '1.48', #lib/CPAN.pm
1318 'CPAN::FirstTime' => '1.36 ', #lib/CPAN/FirstTime.pm
1319 'CPAN::Nox' => '1.00', #lib/CPAN/Nox.pm
1320 'Cwd' => '2.01', #lib/Cwd.pm
1321 'Data::Dumper' => '2.101', #lib/Data/Dumper.pm
1322 'DB_File' => '1.807', #lib/DB_File.pm
1323 'Devel::SelfStubber' => '1.01', #lib/Devel/SelfStubber.pm
1324 'diagnostics' => undef, #lib/diagnostics.pm
1325 'DirHandle' => undef, #lib/DirHandle.pm
1326 'Dumpvalue' => undef, #lib/Dumpvalue.pm
1327 'DynaLoader' => '1.03', #lib/DynaLoader.pm
1328 'English' => undef, #lib/English.pm
1329 'Env' => undef, #lib/Env.pm
1330 'Errno' => '1.111', #lib/Errno.pm
1331 'Exporter' => undef, #lib/Exporter.pm
1332 'ExtUtils::Command' => '1.01', #lib/ExtUtils/Command.pm
1333 'ExtUtils::Embed' => '1.2505', #lib/ExtUtils/Embed.pm
1334 'ExtUtils::Install' => '1.28 ', #lib/ExtUtils/Install.pm
1335 'ExtUtils::Installed' => '0.02', #lib/ExtUtils/Installed.pm
1336 'ExtUtils::Liblist' => '1.25 ', #lib/ExtUtils/Liblist.pm
1337 'ExtUtils::MakeMaker' => '5.4302', #lib/ExtUtils/MakeMaker.pm
1338 'ExtUtils::Manifest' => '1.33 ', #lib/ExtUtils/Manifest.pm
1339 'ExtUtils::Miniperl' => undef, #lib/ExtUtils/Miniperl.pm
1340 'ExtUtils::Mkbootstrap' => '1.14 ', #lib/ExtUtils/Mkbootstrap.pm
1341 'ExtUtils::Mksymlists' => '1.17 ', #lib/ExtUtils/Mksymlists.pm
1342 'ExtUtils::MM_OS2' => undef, #lib/ExtUtils/MM_OS2.pm
1343 'ExtUtils::MM_Unix' => '1.12602 ', #lib/ExtUtils/MM_Unix.pm
1344 'ExtUtils::MM_VMS' => undef, #lib/ExtUtils/MM_VMS.pm
1345 'ExtUtils::MM_Win32' => undef, #lib/ExtUtils/MM_Win32.pm
1346 'ExtUtils::Packlist' => '0.03', #lib/ExtUtils/Packlist.pm
1347 'ExtUtils::testlib' => '1.11 ', #lib/ExtUtils/testlib.pm
1348 'ExtUtils::XSSymSet' => '1.0', #vms/ext/XSSymSet.pm
1349 'Fatal' => '1.02', #lib/Fatal.pm
1350 'Fcntl' => '1.03', #lib/Fcntl.pm
1351 'fields' => '0.02', #lib/fields.pm
1352 'File::Basename' => '2.6', #lib/File/Basename.pm
1353 'FileCache' => undef, #lib/FileCache.pm
1354 'File::CheckTree' => undef, #lib/File/CheckTree.pm
1355 'File::Compare' => '1.1002', #lib/File/Compare.pm
1356 'File::Copy' => '2.02', #lib/File/Copy.pm
1357 'File::DosGlob' => undef, #lib/File/DosGlob.pm
1358 'File::Find' => undef, #lib/File/Find.pm
1359 'FileHandle' => '2.00', #lib/FileHandle.pm
1360 'File::Path' => '1.0401', #lib/File/Path.pm
1361 'File::Spec' => '0.8', #lib/File/Spec.pm
1362 'File::Spec::Functions' => undef, #lib/File/Spec/Functions.pm
1363 'File::Spec::Mac' => undef, #lib/File/Spec/Mac.pm
1364 'File::Spec::OS2' => undef, #lib/File/Spec/OS2.pm
1365 'File::Spec::Unix' => undef, #lib/File/Spec/Unix.pm
1366 'File::Spec::VMS' => undef, #lib/File/Spec/VMS.pm
1367 'File::Spec::Win32' => undef, #lib/File/Spec/Win32.pm
1368 'File::stat' => undef, #lib/File/stat.pm
1369 'FindBin' => '1.42', #lib/FindBin.pm
1370 'GDBM_File' => '1.00', #lib/GDBM_File.pm
1371 'Getopt::Long' => '2.20', #lib/Getopt/Long.pm
1372 'Getopt::Std' => '1.01', #lib/Getopt/Std.pm
1373 'I18N::Collate' => undef, #lib/I18N/Collate.pm
1374 'integer' => undef, #lib/integer.pm
1375 'IO::File' => '1.06021', #lib/IO/File.pm
1376 'IO::Handle' => '1.1505', #lib/IO/Handle.pm
1377 'IO::Pipe' => '1.0902', #lib/IO/Pipe.pm
1378 'IO::Seekable' => '1.06', #lib/IO/Seekable.pm
1379 'IO::Select' => '1.10', #lib/IO/Select.pm
1380 'IO::Socket' => '1.1603', #lib/IO/Socket.pm
1381 'IO' => undef, #lib/IO.pm
1382 'IPC::Msg' => '1.00', #lib/IPC/Msg.pm
1383 'IPC::Open2' => '1.01', #lib/IPC/Open2.pm
1384 'IPC::Open3' => '1.0103', #lib/IPC/Open3.pm
1385 'IPC::Semaphore' => '1.00', #lib/IPC/Semaphore.pm
1386 'IPC::SysV' => '1.03', #lib/IPC/SysV.pm
1387 'less' => undef, #lib/less.pm
1388 'lib' => undef, #lib/lib.pm
1389 'locale' => undef, #lib/locale.pm
1390 'Math::BigFloat' => undef, #lib/Math/BigFloat.pm
1391 'Math::BigInt' => undef, #lib/Math/BigInt.pm
1392 'Math::Complex' => '1.26', #lib/Math/Complex.pm
1393 'Math::Trig' => '1', #lib/Math/Trig.pm
1394 'NDBM_File' => '1.01', #ext/NDBM_File/NDBM_File.pm
1395 'Net::hostent' => undef, #lib/Net/hostent.pm
1396 'Net::netent' => undef, #lib/Net/netent.pm
1397 'Net::Ping' => '2.02', #lib/Net/Ping.pm
1398 'Net::protoent' => undef, #lib/Net/protoent.pm
1399 'Net::servent' => undef, #lib/Net/servent.pm
1400 'ODBM_File' => '1.00', #ext/ODBM_File/ODBM_File.pm
1401 'Opcode' => '1.04', #lib/Opcode.pm
1402 'ops' => undef, #lib/ops.pm
1403 'O' => undef, #lib/O.pm
1404 'OS2::ExtAttr' => '0.01', #os2/OS2/ExtAttr/ExtAttr.pm
1405 'OS2::PrfDB' => '0.02', #os2/OS2/PrfDB/PrfDB.pm
1406 'OS2::Process' => '0.2', #os2/OS2/Process/Process.pm
1407 'OS2::REXX' => undef, #os2/OS2/REXX/REXX.pm
1408 'overload' => undef, #lib/overload.pm
1409 'Pod::Functions' => undef, #lib/Pod/Functions.pm
1410 'Pod::Html' => '1.02', #lib/Pod/Html.pm
1411 'Pod::Text' => '1.0203', #lib/Pod/Text.pm
1412 'POSIX' => '1.02', #lib/POSIX.pm
1413 're' => '0.02', #lib/re.pm
1414 'Safe' => '2.06', #lib/Safe.pm
1415 'SDBM_File' => '1.00', #lib/SDBM_File.pm
1416 'Search::Dict' => undef, #lib/Search/Dict.pm
1417 'SelectSaver' => undef, #lib/SelectSaver.pm
1418 'SelfLoader' => '1.08', #lib/SelfLoader.pm
1419 'Shell' => undef, #lib/Shell.pm
1420 'sigtrap' => '1.02', #lib/sigtrap.pm
1421 'Socket' => '1.7', #lib/Socket.pm
1422 'strict' => '1.01', #lib/strict.pm
1423 'subs' => undef, #lib/subs.pm
1424 'Symbol' => '1.02', #lib/Symbol.pm
1425 'Sys::Hostname' => undef, #lib/Sys/Hostname.pm
1426 'Sys::Syslog' => undef, #lib/Sys/Syslog.pm
1427 'Term::Cap' => undef, #lib/Term/Cap.pm
1428 'Term::Complete' => undef, #lib/Term/Complete.pm
1429 'Term::ReadLine' => undef, #lib/Term/ReadLine.pm
1430 'Test' => '1.122', #lib/Test.pm
1431 'Test::Harness' => '1.1602', #lib/Test/Harness.pm
1432 'Text::Abbrev' => undef, #lib/Text/Abbrev.pm
1433 'Text::ParseWords' => '3.1', #lib/Text/ParseWords.pm
1434 'Text::Soundex' => undef, #lib/Text/Soundex.pm
1435 'Text::Tabs' => '96.121201', #lib/Text/Tabs.pm
1436 'Text::Wrap' => '98.112902', #lib/Text/Wrap.pm
1437 'Thread' => '1.0', #ext/Thread/Thread.pm
1438 'Thread::Queue' => undef, #ext/Thread/Thread/Queue.pm
1439 'Thread::Semaphore' => undef, #ext/Thread/Thread/Semaphore.pm
1440 'Thread::Signal' => undef, #ext/Thread/Thread/Signal.pm
1441 'Thread::Specific' => undef, #ext/Thread/Thread/Specific.pm
1442 'Tie::Array' => '1.00', #lib/Tie/Array.pm
1443 'Tie::Handle' => undef, #lib/Tie/Handle.pm
1444 'Tie::Hash' => undef, #lib/Tie/Hash.pm
1445 'Tie::RefHash' => undef, #lib/Tie/RefHash.pm
1446 'Tie::Scalar' => undef, #lib/Tie/Scalar.pm
1447 'Tie::SubstrHash' => undef, #lib/Tie/SubstrHash.pm
1448 'Time::gmtime' => '1.01', #lib/Time/gmtime.pm
1449 'Time::localtime' => '1.01', #lib/Time/localtime.pm
1450 'Time::Local' => undef, #lib/Time/Local.pm
1451 'Time::tm' => undef, #lib/Time/tm.pm
1452 'UNIVERSAL' => undef, #lib/UNIVERSAL.pm
1453 'User::grent' => undef, #lib/User/grent.pm
1454 'User::pwent' => undef, #lib/User/pwent.pm
1455 'vars' => undef, #lib/vars.pm
1456 'VMS::DCLsym' => '1.01', #vms/ext/DCLsym/DCLsym.pm
1457 'VMS::Filespec' => undef, #vms/ext/Filespec.pm
1458 'VMS::Stdio' => '2.1', #vms/ext/Stdio/Stdio.pm
1459 'vmsish' => undef, #vms/ext/vmsish.pm
1462 5.006 => {
1463 'AnyDBM_File' => undef, #./lib/AnyDBM_File.pm
1464 'AutoLoader' => '5.57', #./lib/AutoLoader.pm
1465 'AutoSplit' => '1.0305', #./lib/AutoSplit.pm
1466 'B' => undef, #./ext/B/B.pm
1467 'B::Asmdata' => undef, #./ext/B/B/Asmdata.pm
1468 'B::Assembler' => undef, #./ext/B/B/Assembler.pm
1469 'B::Bblock' => undef, #./ext/B/B/Bblock.pm
1470 'B::Bytecode' => undef, #./ext/B/B/Bytecode.pm
1471 'B::C' => undef, #./ext/B/B/C.pm
1472 'B::CC' => undef, #./ext/B/B/CC.pm
1473 'B::Debug' => undef, #./ext/B/B/Debug.pm
1474 'B::Deparse' => '0.59', #./ext/B/B/Deparse.pm
1475 'B::Disassembler' => undef, #./ext/B/B/Disassembler.pm
1476 'B::Lint' => undef, #./ext/B/B/Lint.pm
1477 'B::Showlex' => undef, #./ext/B/B/Showlex.pm
1478 'B::Stackobj' => undef, #./ext/B/B/Stackobj.pm
1479 'B::Stash' => undef, #./ext/B/B/Stash.pm
1480 'B::Terse' => undef, #./ext/B/B/Terse.pm
1481 'B::Xref' => undef, #./ext/B/B/Xref.pm
1482 'Benchmark' => '1', #./lib/Benchmark.pm
1483 'ByteLoader' => '0.03', #./ext/ByteLoader/ByteLoader.pm
1484 'CGI' => '2.56', #./lib/CGI.pm
1485 'CGI::Apache' => undef, #./lib/CGI/Apache.pm
1486 'CGI::Carp' => '1.14', #./lib/CGI/Carp.pm
1487 'CGI::Cookie' => '1.12', #./lib/CGI/Cookie.pm
1488 'CGI::Fast' => '1.02', #./lib/CGI/Fast.pm
1489 'CGI::Pretty' => '1.03', #./lib/CGI/Pretty.pm
1490 'CGI::Push' => '1.01', #./lib/CGI/Push.pm
1491 'CGI::Switch' => undef, #./lib/CGI/Switch.pm
1492 'CPAN' => '1.52', #./lib/CPAN.pm
1493 'CPAN::FirstTime' => '1.38 ', #./lib/CPAN/FirstTime.pm
1494 'CPAN::Nox' => '1.00', #./lib/CPAN/Nox.pm
1495 'Carp' => undef, #./lib/Carp.pm
1496 'Carp::Heavy' => undef, #./lib/Carp/Heavy.pm
1497 'Class::Struct' => '0.58', #./lib/Class/Struct.pm
1498 'Config' => undef,
1499 'Cwd' => '2.02', #./lib/Cwd.pm
1500 'DB' => '1.0', #./lib/DB.pm
1501 'DB_File' => '1.72', #./ext/DB_File/DB_File.pm
1502 'Data::Dumper' => '2.101', #./ext/Data/Dumper/Dumper.pm
1503 'Devel::DProf' => '20000000.00_00', #./ext/Devel/DProf/DProf.pm
1504 'Devel::Peek' => '1.00_01', #./ext/Devel/Peek/Peek.pm
1505 'Devel::SelfStubber' => '1.01', #./lib/Devel/SelfStubber.pm
1506 'DirHandle' => undef, #./lib/DirHandle.pm
1507 'Dumpvalue' => undef, #./lib/Dumpvalue.pm
1508 'DynaLoader' => '1.04',
1509 'English' => undef, #./lib/English.pm
1510 'Env' => undef, #./lib/Env.pm
1511 'Exporter' => '5.562', #./lib/Exporter.pm
1512 'Exporter::Heavy' => undef, #./lib/Exporter/Heavy.pm
1513 'ExtUtils::Command' => '1.01', #./lib/ExtUtils/Command.pm
1514 'ExtUtils::Embed' => '1.2505', #./lib/ExtUtils/Embed.pm
1515 'ExtUtils::Install' => '1.28 ', #./lib/ExtUtils/Install.pm
1516 'ExtUtils::Installed' => '0.02', #./lib/ExtUtils/Installed.pm
1517 'ExtUtils::Liblist' => '1.25 ', #./lib/ExtUtils/Liblist.pm
1518 'ExtUtils::MM_Cygwin' => undef, #./lib/ExtUtils/MM_Cygwin.pm
1519 'ExtUtils::MM_OS2' => undef, #./lib/ExtUtils/MM_OS2.pm
1520 'ExtUtils::MM_Unix' => '1.12603 ', #./lib/ExtUtils/MM_Unix.pm
1521 'ExtUtils::MM_VMS' => undef, #./lib/ExtUtils/MM_VMS.pm
1522 'ExtUtils::MM_Win32' => undef, #./lib/ExtUtils/MM_Win32.pm
1523 'ExtUtils::MakeMaker' => '5.45', #./lib/ExtUtils/MakeMaker.pm
1524 'ExtUtils::Manifest' => '1.33 ', #./lib/ExtUtils/Manifest.pm
1525 'ExtUtils::Miniperl' => undef,
1526 'ExtUtils::Mkbootstrap' => '1.14 ', #./lib/ExtUtils/Mkbootstrap.pm
1527 'ExtUtils::Mksymlists' => '1.17 ', #./lib/ExtUtils/Mksymlists.pm
1528 'ExtUtils::Packlist' => '0.03', #./lib/ExtUtils/Packlist.pm
1529 'ExtUtils::XSSymSet' => '1.0', #./vms/ext/XSSymSet.pm
1530 'ExtUtils::testlib' => '1.11 ', #./lib/ExtUtils/testlib.pm
1531 'Fatal' => '1.02', #./lib/Fatal.pm
1532 'Fcntl' => '1.03', #./ext/Fcntl/Fcntl.pm
1533 'File::Basename' => '2.6', #./lib/File/Basename.pm
1534 'File::CheckTree' => undef, #./lib/File/CheckTree.pm
1535 'File::Compare' => '1.1002', #./lib/File/Compare.pm
1536 'File::Copy' => '2.03', #./lib/File/Copy.pm
1537 'File::DosGlob' => undef, #./lib/File/DosGlob.pm
1538 'File::Find' => undef, #./lib/File/Find.pm
1539 'File::Glob' => '0.991', #./ext/File/Glob/Glob.pm
1540 'File::Path' => '1.0403', #./lib/File/Path.pm
1541 'File::Spec' => '0.8', #./lib/File/Spec.pm
1542 'File::Spec::Functions' => undef, #./lib/File/Spec/Functions.pm
1543 'File::Spec::Mac' => undef, #./lib/File/Spec/Mac.pm
1544 'File::Spec::OS2' => undef, #./lib/File/Spec/OS2.pm
1545 'File::Spec::Unix' => undef, #./lib/File/Spec/Unix.pm
1546 'File::Spec::VMS' => undef, #./lib/File/Spec/VMS.pm
1547 'File::Spec::Win32' => undef, #./lib/File/Spec/Win32.pm
1548 'File::stat' => undef, #./lib/File/stat.pm
1549 'FileCache' => undef, #./lib/FileCache.pm
1550 'FileHandle' => '2.00', #./lib/FileHandle.pm
1551 'FindBin' => '1.42', #./lib/FindBin.pm
1552 'GDBM_File' => '1.03', #./ext/GDBM_File/GDBM_File.pm
1553 'Getopt::Long' => '2.23', #./lib/Getopt/Long.pm
1554 'Getopt::Std' => '1.02', #./lib/Getopt/Std.pm
1555 'I18N::Collate' => undef, #./lib/I18N/Collate.pm
1556 'IO' => '1.20', #./ext/IO/IO.pm
1557 'IO::Dir' => '1.03', #./ext/IO/lib/IO/Dir.pm
1558 'IO::File' => '1.08', #./ext/IO/lib/IO/File.pm
1559 'IO::Handle' => '1.21', #./ext/IO/lib/IO/Handle.pm
1560 'IO::Pipe' => '1.121', #./ext/IO/lib/IO/Pipe.pm
1561 'IO::Poll' => '0.01', #./ext/IO/lib/IO/Poll.pm
1562 'IO::Seekable' => '1.08', #./ext/IO/lib/IO/Seekable.pm
1563 'IO::Select' => '1.14', #./ext/IO/lib/IO/Select.pm
1564 'IO::Socket' => '1.26', #./ext/IO/lib/IO/Socket.pm
1565 'IO::Socket::INET' => '1.25', #./ext/IO/lib/IO/Socket/INET.pm
1566 'IO::Socket::UNIX' => '1.20', #./ext/IO/lib/IO/Socket/UNIX.pm
1567 'IPC::Open2' => '1.01', #./lib/IPC/Open2.pm
1568 'IPC::Open3' => '1.0103', #./lib/IPC/Open3.pm
1569 'IPC::Msg' => '1.00', #./ext/IPC/SysV/Msg.pm
1570 'IPC::Semaphore' => '1.00', #./ext/IPC/SysV/Semaphore.pm
1571 'IPC::SysV' => '1.03', #./ext/IPC/SysV/SysV.pm
1572 'JNI' => '0.01', #./jpl/JNI/JNI.pm
1573 'JPL::AutoLoader' => undef, #./jpl/JPL/AutoLoader.pm
1574 'JPL::Class' => undef, #./jpl/JPL/Class.pm
1575 'JPL::Compile' => undef, #./jpl/JPL/Compile.pm
1576 'Math::BigFloat' => undef, #./lib/Math/BigFloat.pm
1577 'Math::BigInt' => undef, #./lib/Math/BigInt.pm
1578 'Math::Complex' => '1.26', #./lib/Math/Complex.pm
1579 'Math::Trig' => '1', #./lib/Math/Trig.pm
1580 'NDBM_File' => '1.03', #./ext/NDBM_File/NDBM_File.pm
1581 'Net::Ping' => '2.02', #./lib/Net/Ping.pm
1582 'Net::hostent' => undef, #./lib/Net/hostent.pm
1583 'Net::netent' => undef, #./lib/Net/netent.pm
1584 'Net::protoent' => undef, #./lib/Net/protoent.pm
1585 'Net::servent' => undef, #./lib/Net/servent.pm
1586 'O' => undef, #./ext/B/O.pm
1587 'ODBM_File' => '1.02', #./ext/ODBM_File/ODBM_File.pm
1588 'OS2::ExtAttr' => '0.01', #./os2/OS2/ExtAttr/ExtAttr.pm
1589 'OS2::PrfDB' => '0.02', #./os2/OS2/PrfDB/PrfDB.pm
1590 'OS2::Process' => '0.2', #./os2/OS2/Process/Process.pm
1591 'OS2::REXX' => undef, #./os2/OS2/REXX/REXX.pm
1592 'OS2::DLL' => undef, #./os2/OS2/REXX/DLL/DLL.pm
1593 'Opcode' => '1.04', #./ext/Opcode/Opcode.pm
1594 'POSIX' => '1.03', #./ext/POSIX/POSIX.pm
1595 'Pod::Checker' => '1.098', #./lib/Pod/Checker.pm
1596 'Pod::Find' => '0.12', #./lib/Pod/Find.pm
1597 'Pod::Functions' => undef, #./lib/Pod/Functions.pm
1598 'Pod::Html' => '1.03', #./lib/Pod/Html.pm
1599 'Pod::InputObjects' => '1.12', #./lib/Pod/InputObjects.pm
1600 'Pod::Man' => '1.02', #./lib/Pod/Man.pm
1601 'Pod::ParseUtils' => '0.2', #./lib/Pod/ParseUtils.pm
1602 'Pod::Parser' => '1.12', #./lib/Pod/Parser.pm
1603 'Pod::Plainer' => '0.01', #./lib/Pod/Plainer.pm
1604 'Pod::Select' => '1.12', #./lib/Pod/Select.pm
1605 'Pod::Text' => '2.03', #./lib/Pod/Text.pm
1606 'Pod::Text::Color' => '0.05', #./lib/Pod/Text/Color.pm
1607 'Pod::Text::Termcap' => '0.04', #./lib/Pod/Text/Termcap.pm
1608 'Pod::Usage' => '1.12', #./lib/Pod/Usage.pm
1609 'SDBM_File' => '1.02', #./ext/SDBM_File/SDBM_File.pm
1610 'Safe' => '2.06', #./ext/Opcode/Safe.pm
1611 'Search::Dict' => undef, #./lib/Search/Dict.pm
1612 'SelectSaver' => undef, #./lib/SelectSaver.pm
1613 'SelfLoader' => '1.0901', #./lib/SelfLoader.pm
1614 'Shell' => '0.2', #./lib/Shell.pm
1615 'Socket' => '1.72', #./ext/Socket/Socket.pm
1616 'Symbol' => '1.02', #./lib/Symbol.pm
1617 'Sys::Hostname' => '1.1', #./ext/Sys/Hostname/Hostname.pm
1618 'Sys::Syslog' => '0.01', #./ext/Sys/Syslog/Syslog.pm
1619 'Term::ANSIColor' => '1.01', #./lib/Term/ANSIColor.pm
1620 'Term::Cap' => undef, #./lib/Term/Cap.pm
1621 'Term::Complete' => undef, #./lib/Term/Complete.pm
1622 'Term::ReadLine' => undef, #./lib/Term/ReadLine.pm
1623 'Test' => '1.13', #./lib/Test.pm
1624 'Test::Harness' => '1.1604', #./lib/Test/Harness.pm
1625 'Text::Abbrev' => undef, #./lib/Text/Abbrev.pm
1626 'Text::ParseWords' => '3.2', #./lib/Text/ParseWords.pm
1627 'Text::Soundex' => '1.0', #./lib/Text/Soundex.pm
1628 'Text::Tabs' => '98.112801', #./lib/Text/Tabs.pm
1629 'Text::Wrap' => '98.112902', #./lib/Text/Wrap.pm
1630 'Thread' => '1.0', #./ext/Thread/Thread.pm
1631 'Thread::Queue' => undef, #./ext/Thread/Thread/Queue.pm
1632 'Thread::Semaphore' => undef, #./ext/Thread/Thread/Semaphore.pm
1633 'Thread::Signal' => undef, #./ext/Thread/Thread/Signal.pm
1634 'Thread::Specific' => undef, #./ext/Thread/Thread/Specific.pm
1635 'Tie::Array' => '1.01', #./lib/Tie/Array.pm
1636 'Tie::Handle' => '1.0', #./lib/Tie/Handle.pm
1637 'Tie::Hash' => undef, #./lib/Tie/Hash.pm
1638 'Tie::RefHash' => undef, #./lib/Tie/RefHash.pm
1639 'Tie::Scalar' => undef, #./lib/Tie/Scalar.pm
1640 'Tie::SubstrHash' => undef, #./lib/Tie/SubstrHash.pm
1641 'Time::Local' => undef, #./lib/Time/Local.pm
1642 'Time::gmtime' => '1.01', #./lib/Time/gmtime.pm
1643 'Time::localtime' => '1.01', #./lib/Time/localtime.pm
1644 'Time::tm' => undef, #./lib/Time/tm.pm
1645 'UNIVERSAL' => undef, #./lib/UNIVERSAL.pm
1646 'User::grent' => undef, #./lib/User/grent.pm
1647 'User::pwent' => undef, #./lib/User/pwent.pm
1648 'VMS::DCLsym' => '1.01', #./vms/ext/DCLsym/DCLsym.pm
1649 'VMS::Filespec' => undef, #./vms/ext/Filespec.pm
1650 'VMS::Stdio' => '2.2', #./vms/ext/Stdio/Stdio.pm
1651 'XSLoader' => '0.01',
1652 'attributes' => '0.03', #./lib/attributes.pm
1653 'attrs' => '1.0', #./ext/attrs/attrs.pm
1654 'autouse' => '1.02', #./lib/autouse.pm
1655 'base' => '1.01', #./lib/base.pm
1656 'blib' => '1.00', #./lib/blib.pm
1657 'bytes' => undef, #./lib/bytes.pm
1658 'charnames' => undef, #./lib/charnames.pm
1659 'constant' => '1.02', #./lib/constant.pm
1660 'diagnostics' => '1.0', #./lib/diagnostics.pm
1661 'fields' => '1.01', #./lib/fields.pm
1662 'filetest' => undef, #./lib/filetest.pm
1663 'integer' => undef, #./lib/integer.pm
1664 'less' => undef, #./lib/less.pm
1665 'lib' => '0.5564', #./lib/lib.pm
1666 'locale' => undef, #./lib/locale.pm
1667 'open' => undef, #./lib/open.pm
1668 'ops' => undef, #./ext/Opcode/ops.pm
1669 'overload' => undef, #./lib/overload.pm
1670 're' => '0.02', #./ext/re/re.pm
1671 'sigtrap' => '1.02', #./lib/sigtrap.pm
1672 'strict' => '1.01', #./lib/strict.pm
1673 'subs' => undef, #./lib/subs.pm
1674 'utf8' => undef, #./lib/utf8.pm
1675 'vars' => undef, #./lib/vars.pm
1676 'vmsish' => undef, #./vms/ext/vmsish.pm
1677 'warnings' => undef, #./lib/warnings.pm
1678 'warnings::register' => undef, #./lib/warnings/register.pm
1681 5.006001 => {
1682 'AnyDBM_File' => undef,
1683 'attributes' => 0.03,
1684 'attrs' => '1.0',
1685 'AutoLoader' => 5.58,
1686 'AutoSplit' => 1.0305,
1687 'autouse' => 1.02,
1688 'B::Asmdata' => undef,
1689 'B::Assembler' => 0.02,
1690 'B::Bblock' => undef,
1691 'B::Bytecode' => undef,
1692 'B::C' => undef,
1693 'B::CC' => undef,
1694 'B::Concise' => 0.51,
1695 'B::Debug' => undef,
1696 'B::Deparse' => 0.6,
1697 'B::Disassembler' => undef,
1698 'B::Lint' => undef,
1699 'B' => undef,
1700 'B::Showlex' => undef,
1701 'B::Stackobj' => undef,
1702 'B::Stash' => undef,
1703 'B::Terse' => undef,
1704 'B::Xref' => undef,
1705 'base' => 1.01,
1706 'Benchmark' => 1,
1707 'blib' => '1.00',
1708 'ByteLoader' => 0.04,
1709 'bytes' => undef,
1710 'Carp' => undef,
1711 'Carp::Heavy' => undef,
1712 'CGI' => 2.752,
1713 'CGI::Apache' => undef,
1714 'CGI::Carp' => '1.20',
1715 'CGI::Cookie' => 1.18,
1716 'CGI::Fast' => 1.02,
1717 'CGI::Pretty' => 1.05,
1718 'CGI::Push' => 1.04,
1719 'CGI::Switch' => undef,
1720 'CGI::Util' => 1.1,
1721 'charnames' => undef,
1722 'Class::Struct' => 0.59,
1723 'Config' => undef,
1724 'constant' => 1.02,
1725 'CPAN::FirstTime' => 1.53 ,
1726 'CPAN' => '1.59_54',
1727 'CPAN::Nox' => '1.00',
1728 'Cwd' => 2.04,
1729 'Data::Dumper' => 2.102,
1730 'DB' => '1.0',
1731 'DB_File' => 1.75,
1732 'Devel::DProf' => '20000000.00_00',
1733 'Devel::Peek' => '1.00_01',
1734 'Devel::SelfStubber' => 1.01,
1735 'diagnostics' => '1.0', # really v1.0, but that causes breakage
1736 'DirHandle' => undef,
1737 'Dumpvalue' => undef,
1738 'DynaLoader' => 1.04,
1739 'English' => undef,
1740 'Env' => undef,
1741 'Exporter' => 5.562,
1742 'Exporter::Heavy' => undef,
1743 'ExtUtils::Command' => 1.01,
1744 'ExtUtils::Embed' => 1.2505,
1745 'ExtUtils::Install' => 1.28 ,
1746 'ExtUtils::Installed' => 0.02,
1747 'ExtUtils::Liblist' => 1.26 ,
1748 'ExtUtils::MakeMaker' => 5.45,
1749 'ExtUtils::Manifest' => 1.33 ,
1750 'ExtUtils::Miniperl' => undef,
1751 'ExtUtils::Mkbootstrap' => 1.14 ,
1752 'ExtUtils::Mksymlists' => 1.17 ,
1753 'ExtUtils::MM_Cygwin' => undef,
1754 'ExtUtils::MM_OS2' => undef,
1755 'ExtUtils::MM_Unix' => 1.12603 ,
1756 'ExtUtils::MM_VMS' => undef,
1757 'ExtUtils::MM_Win32' => undef,
1758 'ExtUtils::Packlist' => 0.03,
1759 'ExtUtils::testlib' => 1.11 ,
1760 'ExtUtils::XSSymSet' => '1.0',
1761 'Fatal' => 1.02,
1762 'Fcntl' => 1.03,
1763 'fields' => 1.01,
1764 'File::Basename' => 2.6,
1765 'File::CheckTree' => undef,
1766 'File::Compare' => 1.1002,
1767 'File::Copy' => 2.03,
1768 'File::DosGlob' => undef,
1769 'File::Find' => undef,
1770 'File::Glob' => 0.991,
1771 'File::Path' => 1.0404,
1772 'File::Spec' => 0.82,
1773 'File::Spec::Epoc' => undef,
1774 'File::Spec::Functions' => 1.1,
1775 'File::Spec::Mac' => 1.2,
1776 'File::Spec::OS2' => 1.1,
1777 'File::Spec::Unix' => 1.2,
1778 'File::Spec::VMS' => 1.1,
1779 'File::Spec::Win32' => 1.2,
1780 'File::stat' => undef,
1781 'File::Temp' => 0.12,
1782 'FileCache' => undef,
1783 'FileHandle' => '2.00',
1784 'filetest' => undef,
1785 'FindBin' => 1.42,
1786 'GDBM_File' => 1.05,
1787 'Getopt::Long' => 2.25,
1788 'Getopt::Std' => 1.02,
1789 'I18N::Collate' => undef,
1790 'integer' => undef,
1791 'IO' => '1.20',
1792 'IO::Dir' => 1.03,
1793 'IO::File' => 1.08,
1794 'IO::Handle' => 1.21,
1795 'IO::Pipe' => 1.121,
1796 'IO::Poll' => 0.05,
1797 'IO::Seekable' => 1.08,
1798 'IO::Select' => 1.14,
1799 'IO::Socket' => 1.26,
1800 'IO::Socket::INET' => 1.25,
1801 'IO::Socket::UNIX' => '1.20',
1802 'IPC::Msg' => '1.00',
1803 'IPC::Open2' => 1.01,
1804 'IPC::Open3' => 1.0103,
1805 'IPC::Semaphore' => '1.00',
1806 'IPC::SysV' => 1.03,
1807 'JNI' => 0.1,
1808 'JPL::AutoLoader' => undef,
1809 'JPL::Class' => undef,
1810 'JPL::Compile' => undef,
1811 'less' => undef,
1812 'lib' => 0.5564,
1813 'locale' => undef,
1814 'Math::BigFloat' => 0.02,
1815 'Math::BigInt' => 0.01,
1816 'Math::Complex' => 1.31,
1817 'Math::Trig' => 1,
1818 'NDBM_File' => 1.04,
1819 'Net::hostent' => undef,
1820 'Net::netent' => undef,
1821 'Net::Ping' => 2.02,
1822 'Net::protoent' => undef,
1823 'Net::servent' => undef,
1824 'O' => undef,
1825 'ODBM_File' => 1.03,
1826 'Opcode' => 1.04,
1827 'open' => undef,
1828 'ops' => undef,
1829 'OS2::DLL' => undef,
1830 'OS2::ExtAttr' => 0.01,
1831 'OS2::PrfDB' => 0.02,
1832 'OS2::Process' => 0.2,
1833 'OS2::REXX' => '1.00',
1834 'overload' => undef,
1835 'Pod::Checker' => 1.2,
1836 'Pod::Find' => 0.21,
1837 'Pod::Functions' => undef,
1838 'Pod::Html' => 1.03,
1839 'Pod::LaTeX' => 0.53,
1840 'Pod::Man' => 1.15,
1841 'Pod::InputObjects' => 1.13,
1842 'Pod::Parser' => 1.13,
1843 'Pod::ParseUtils' => 0.22,
1844 'Pod::Plainer' => 0.01,
1845 'Pod::Select' => 1.13,
1846 'Pod::Text' => 2.08,
1847 'Pod::Text::Color' => 0.06,
1848 'Pod::Text::Overstrike' => 1.01,
1849 'Pod::Text::Termcap' => 1,
1850 'Pod::Usage' => 1.14,
1851 'POSIX' => 1.03,
1852 're' => 0.02,
1853 'Safe' => 2.06,
1854 'SDBM_File' => 1.03,
1855 'Search::Dict' => undef,
1856 'SelectSaver' => undef,
1857 'SelfLoader' => 1.0902,
1858 'Shell' => 0.3,
1859 'sigtrap' => 1.02,
1860 'Socket' => 1.72,
1861 'strict' => 1.01,
1862 'subs' => undef,
1863 'Symbol' => 1.02,
1864 'Sys::Hostname' => 1.1,
1865 'Sys::Syslog' => 0.01,
1866 'Term::ANSIColor' => 1.03,
1867 'Term::Cap' => undef,
1868 'Term::Complete' => undef,
1869 'Term::ReadLine' => undef,
1870 'Test' => 1.15,
1871 'Test::Harness' => 1.1604,
1872 'Text::Abbrev' => undef,
1873 'Text::ParseWords' => 3.2,
1874 'Text::Soundex' => '1.0',
1875 'Text::Tabs' => 98.112801,
1876 'Text::Wrap' => 2001.0131,
1877 'Thread' => '1.0',
1878 'Thread::Queue' => undef,
1879 'Thread::Semaphore' => undef,
1880 'Thread::Signal' => undef,
1881 'Thread::Specific' => undef,
1882 'Tie::Array' => 1.01,
1883 'Tie::Handle' => '4.0',
1884 'Tie::Hash' => undef,
1885 'Tie::RefHash' => 1.3,
1886 'Tie::Scalar' => undef,
1887 'Tie::SubstrHash' => undef,
1888 'Time::gmtime' => 1.01,
1889 'Time::Local' => undef,
1890 'Time::localtime' => 1.01,
1891 'Time::tm' => undef,
1892 'UNIVERSAL' => undef,
1893 'User::grent' => undef,
1894 'User::pwent' => undef,
1895 'utf8' => undef,
1896 'vars' => undef,
1897 'VMS::DCLsym' => 1.01,
1898 'VMS::Filespec' => undef,
1899 'VMS::Stdio' => 2.2,
1900 'vmsish' => undef,
1901 'warnings' => undef,
1902 'warnings::register' => undef,
1903 'XSLoader' => '0.01',
1906 5.006002 => {
1907 'AnyDBM_File' => undef, #lib/AnyDBM_File.pm
1908 'attributes' => '0.03', #lib/attributes.pm
1909 'attrs' => '1.0', #lib/attrs.pm
1910 'AutoLoader' => '5.58', #lib/AutoLoader.pm
1911 'AutoSplit' => '1.0305', #lib/AutoSplit.pm
1912 'autouse' => '1.02', #lib/autouse.pm
1913 'B' => undef, #lib/B.pm
1914 'B::Asmdata' => undef, #lib/B/Asmdata.pm
1915 'B::Assembler' => '0.02', #lib/B/Assembler.pm
1916 'B::Bblock' => undef, #lib/B/Bblock.pm
1917 'B::Bytecode' => undef, #lib/B/Bytecode.pm
1918 'B::C' => undef, #lib/B/C.pm
1919 'B::CC' => undef, #lib/B/CC.pm
1920 'B::Concise' => '0.51', #lib/B/Concise.pm
1921 'B::Debug' => undef, #lib/B/Debug.pm
1922 'B::Deparse' => '0.6', #lib/B/Deparse.pm
1923 'B::Disassembler' => undef, #lib/B/Disassembler.pm
1924 'B::Lint' => undef, #lib/B/Lint.pm
1925 'B::Showlex' => undef, #lib/B/Showlex.pm
1926 'B::Stackobj' => undef, #lib/B/Stackobj.pm
1927 'B::Stash' => undef, #lib/B/Stash.pm
1928 'B::Terse' => undef, #lib/B/Terse.pm
1929 'B::Xref' => undef, #lib/B/Xref.pm
1930 'base' => '1.01', #lib/base.pm
1931 'Benchmark' => '1', #lib/Benchmark.pm
1932 'blib' => '1.00', #lib/blib.pm
1933 'ByteLoader' => '0.04', #lib/ByteLoader.pm
1934 'bytes' => undef, #lib/bytes.pm
1935 'Carp' => undef, #lib/Carp.pm
1936 'Carp::Heavy' => undef, #lib/Carp/Heavy.pm
1937 'CGI' => '2.752', #lib/CGI.pm
1938 'CGI::Apache' => undef, #lib/CGI/Apache.pm
1939 'CGI::Carp' => '1.20', #lib/CGI/Carp.pm
1940 'CGI::Cookie' => '1.18', #lib/CGI/Cookie.pm
1941 'CGI::Fast' => '1.02', #lib/CGI/Fast.pm
1942 'CGI::Pretty' => '1.05', #lib/CGI/Pretty.pm
1943 'CGI::Push' => '1.04', #lib/CGI/Push.pm
1944 'CGI::Switch' => undef, #lib/CGI/Switch.pm
1945 'CGI::Util' => '1.1', #lib/CGI/Util.pm
1946 'charnames' => undef, #lib/charnames.pm
1947 'Class::Struct' => '0.59', #lib/Class/Struct.pm
1948 'Config' => undef, #lib/Config.pm
1949 'constant' => '1.02', #lib/constant.pm
1950 'CPAN' => '1.59_54', #lib/CPAN.pm
1951 'CPAN::FirstTime' => '1.53 ', #lib/CPAN/FirstTime.pm
1952 'CPAN::Nox' => '1.00', #lib/CPAN/Nox.pm
1953 'Cwd' => '2.04', #lib/Cwd.pm
1954 'Data::Dumper' => '2.121', #lib/Data/Dumper.pm
1955 'DB' => '1.0', #lib/DB.pm
1956 'DB_File' => '1.806', #lib/DB_File.pm
1957 'Devel::DProf' => '20000000.00_00', #lib/Devel/DProf.pm
1958 'Devel::Peek' => '1.00_01', #lib/Devel/Peek.pm
1959 'Devel::SelfStubber' => '1.01', #lib/Devel/SelfStubber.pm
1960 'diagnostics' => '1.0', #lib/diagnostics.pm
1961 'DirHandle' => undef, #lib/DirHandle.pm
1962 'Dumpvalue' => undef, #lib/Dumpvalue.pm
1963 'DynaLoader' => '1.04', #lib/DynaLoader.pm
1964 'English' => undef, #lib/English.pm
1965 'Env' => undef, #lib/Env.pm
1966 'Errno' => '1.111', #lib/Errno.pm
1967 'Exporter' => '5.562', #lib/Exporter.pm
1968 'Exporter::Heavy' => undef, #lib/Exporter/Heavy.pm
1969 'ExtUtils::Command' => '1.05', #lib/ExtUtils/Command.pm
1970 'ExtUtils::Command::MM' => '0.03', #lib/ExtUtils/Command/MM.pm
1971 'ExtUtils::Embed' => '1.2505', #lib/ExtUtils/Embed.pm
1972 'ExtUtils::Install' => '1.32', #lib/ExtUtils/Install.pm
1973 'ExtUtils::Installed' => '0.08', #lib/ExtUtils/Installed.pm
1974 'ExtUtils::Liblist' => '1.01', #lib/ExtUtils/Liblist.pm
1975 'ExtUtils::Liblist::Kid'=> '1.3', #lib/ExtUtils/Liblist/Kid.pm
1976 'ExtUtils::MakeMaker' => '6.17', #lib/ExtUtils/MakeMaker.pm
1977 'ExtUtils::MakeMaker::bytes'=> '0.01', #lib/ExtUtils/MakeMaker/bytes.pm
1978 'ExtUtils::MakeMaker::vmsish'=> '0.01', #lib/ExtUtils/MakeMaker/vmsish.pm
1979 'ExtUtils::Manifest' => '1.42', #lib/ExtUtils/Manifest.pm
1980 'ExtUtils::Miniperl' => undef, #lib/ExtUtils/Miniperl.pm
1981 'ExtUtils::Mkbootstrap' => '1.15', #lib/ExtUtils/Mkbootstrap.pm
1982 'ExtUtils::Mksymlists' => '1.19', #lib/ExtUtils/Mksymlists.pm
1983 'ExtUtils::MM' => '0.04', #lib/ExtUtils/MM.pm
1984 'ExtUtils::MM_Any' => '0.07', #lib/ExtUtils/MM_Any.pm
1985 'ExtUtils::MM_BeOS' => '1.04', #lib/ExtUtils/MM_BeOS.pm
1986 'ExtUtils::MM_Cygwin' => '1.06', #lib/ExtUtils/MM_Cygwin.pm
1987 'ExtUtils::MM_DOS' => '0.02', #lib/ExtUtils/MM_DOS.pm
1988 'ExtUtils::MM_MacOS' => '1.07', #lib/ExtUtils/MM_MacOS.pm
1989 'ExtUtils::MM_NW5' => '2.06', #lib/ExtUtils/MM_NW5.pm
1990 'ExtUtils::MM_OS2' => '1.04', #lib/ExtUtils/MM_OS2.pm
1991 'ExtUtils::MM_Unix' => '1.42', #lib/ExtUtils/MM_Unix.pm
1992 'ExtUtils::MM_UWIN' => '0.02', #lib/ExtUtils/MM_UWIN.pm
1993 'ExtUtils::MM_VMS' => '5.70', #lib/ExtUtils/MM_VMS.pm
1994 'ExtUtils::MM_Win32' => '1.09', #lib/ExtUtils/MM_Win32.pm
1995 'ExtUtils::MM_Win95' => '0.03', #lib/ExtUtils/MM_Win95.pm
1996 'ExtUtils::MY' => '0.01', #lib/ExtUtils/MY.pm
1997 'ExtUtils::Packlist' => '0.04', #lib/ExtUtils/Packlist.pm
1998 'ExtUtils::testlib' => '1.15', #lib/ExtUtils/testlib.pm
1999 'ExtUtils::XSSymSet' => '1.0', #vms/ext/XSSymSet.pm
2000 'Fatal' => '1.02', #lib/Fatal.pm
2001 'Fcntl' => '1.03', #lib/Fcntl.pm
2002 'fields' => '1.01', #lib/fields.pm
2003 'File::Basename' => '2.6', #lib/File/Basename.pm
2004 'File::CheckTree' => undef, #lib/File/CheckTree.pm
2005 'File::Compare' => '1.1002', #lib/File/Compare.pm
2006 'File::Copy' => '2.03', #lib/File/Copy.pm
2007 'File::DosGlob' => undef, #lib/File/DosGlob.pm
2008 'File::Find' => undef, #lib/File/Find.pm
2009 'File::Glob' => '0.991', #lib/File/Glob.pm
2010 'File::Path' => '1.0404', #lib/File/Path.pm
2011 'File::Spec' => '0.86', #lib/File/Spec.pm
2012 'File::Spec::Cygwin' => '1.1', #lib/File/Spec/Cygwin.pm
2013 'File::Spec::Epoc' => '1.1', #lib/File/Spec/Epoc.pm
2014 'File::Spec::Functions' => '1.3', #lib/File/Spec/Functions.pm
2015 'File::Spec::Mac' => '1.4', #lib/File/Spec/Mac.pm
2016 'File::Spec::OS2' => '1.2', #lib/File/Spec/OS2.pm
2017 'File::Spec::Unix' => '1.5', #lib/File/Spec/Unix.pm
2018 'File::Spec::VMS' => '1.4', #lib/File/Spec/VMS.pm
2019 'File::Spec::Win32' => '1.4', #lib/File/Spec/Win32.pm
2020 'File::stat' => undef, #lib/File/stat.pm
2021 'File::Temp' => '0.14', #lib/File/Temp.pm
2022 'FileCache' => undef, #lib/FileCache.pm
2023 'FileHandle' => '2.00', #lib/FileHandle.pm
2024 'filetest' => undef, #lib/filetest.pm
2025 'FindBin' => '1.42', #lib/FindBin.pm
2026 'GDBM_File' => '1.05', #ext/GDBM_File/GDBM_File.pm
2027 'Getopt::Long' => '2.25', #lib/Getopt/Long.pm
2028 'Getopt::Std' => '1.02', #lib/Getopt/Std.pm
2029 'I18N::Collate' => undef, #lib/I18N/Collate.pm
2030 'if' => '0.03', #lib/if.pm
2031 'integer' => undef, #lib/integer.pm
2032 'IO' => '1.20', #lib/IO.pm
2033 'IO::Dir' => '1.03', #lib/IO/Dir.pm
2034 'IO::File' => '1.08', #lib/IO/File.pm
2035 'IO::Handle' => '1.21', #lib/IO/Handle.pm
2036 'IO::Pipe' => '1.121', #lib/IO/Pipe.pm
2037 'IO::Poll' => '0.05', #lib/IO/Poll.pm
2038 'IO::Seekable' => '1.08', #lib/IO/Seekable.pm
2039 'IO::Select' => '1.14', #lib/IO/Select.pm
2040 'IO::Socket' => '1.26', #lib/IO/Socket.pm
2041 'IO::Socket::INET' => '1.25', #lib/IO/Socket/INET.pm
2042 'IO::Socket::UNIX' => '1.20', #lib/IO/Socket/UNIX.pm
2043 'IPC::Msg' => '1.00', #lib/IPC/Msg.pm
2044 'IPC::Open2' => '1.01', #lib/IPC/Open2.pm
2045 'IPC::Open3' => '1.0103', #lib/IPC/Open3.pm
2046 'IPC::Semaphore' => '1.00', #lib/IPC/Semaphore.pm
2047 'IPC::SysV' => '1.03', #lib/IPC/SysV.pm
2048 'JNI' => '0.1', #jpl/JNI/JNI.pm
2049 'JPL::AutoLoader' => undef, #jpl/JPL/AutoLoader.pm
2050 'JPL::Class' => undef, #jpl/JPL/Class.pm
2051 'JPL::Compile' => undef, #jpl/JPL/Compile.pm
2052 'less' => undef, #lib/less.pm
2053 'lib' => '0.5564', #lib/lib.pm
2054 'locale' => undef, #lib/locale.pm
2055 'Math::BigFloat' => '0.02', #lib/Math/BigFloat.pm
2056 'Math::BigInt' => '0.01', #lib/Math/BigInt.pm
2057 'Math::Complex' => '1.31', #lib/Math/Complex.pm
2058 'Math::Trig' => '1', #lib/Math/Trig.pm
2059 'NDBM_File' => '1.04', #ext/NDBM_File/NDBM_File.pm
2060 'Net::hostent' => undef, #lib/Net/hostent.pm
2061 'Net::netent' => undef, #lib/Net/netent.pm
2062 'Net::Ping' => '2.02', #lib/Net/Ping.pm
2063 'Net::protoent' => undef, #lib/Net/protoent.pm
2064 'Net::servent' => undef, #lib/Net/servent.pm
2065 'O' => undef, #lib/O.pm
2066 'ODBM_File' => '1.03', #ext/ODBM_File/ODBM_File.pm
2067 'Opcode' => '1.04', #lib/Opcode.pm
2068 'open' => undef, #lib/open.pm
2069 'ops' => '1.00', #lib/ops.pm
2070 'OS2::DLL' => undef, #os2/OS2/REXX/DLL/DLL.pm
2071 'OS2::ExtAttr' => '0.01', #os2/OS2/ExtAttr/ExtAttr.pm
2072 'OS2::PrfDB' => '0.02', #os2/OS2/PrfDB/PrfDB.pm
2073 'OS2::Process' => '0.2', #os2/OS2/Process/Process.pm
2074 'OS2::REXX' => '1.00', #os2/OS2/REXX/REXX.pm
2075 'overload' => undef, #lib/overload.pm
2076 'Pod::Checker' => '1.2', #lib/Pod/Checker.pm
2077 'Pod::Find' => '0.21', #lib/Pod/Find.pm
2078 'Pod::Functions' => undef, #lib/Pod/Functions.pm
2079 'Pod::Html' => '1.03', #lib/Pod/Html.pm
2080 'Pod::InputObjects' => '1.13', #lib/Pod/InputObjects.pm
2081 'Pod::LaTeX' => '0.53', #lib/Pod/LaTeX.pm
2082 'Pod::Man' => '1.15', #lib/Pod/Man.pm
2083 'Pod::Parser' => '1.13', #lib/Pod/Parser.pm
2084 'Pod::ParseUtils' => '0.22', #lib/Pod/ParseUtils.pm
2085 'Pod::Plainer' => '0.01', #lib/Pod/Plainer.pm
2086 'Pod::Select' => '1.13', #lib/Pod/Select.pm
2087 'Pod::Text' => '2.08', #lib/Pod/Text.pm
2088 'Pod::Text::Color' => '0.06', #lib/Pod/Text/Color.pm
2089 'Pod::Text::Overstrike' => '1.01', #lib/Pod/Text/Overstrike.pm
2090 'Pod::Text::Termcap' => '1', #lib/Pod/Text/Termcap.pm
2091 'Pod::Usage' => '1.14', #lib/Pod/Usage.pm
2092 'POSIX' => '1.03', #lib/POSIX.pm
2093 're' => '0.02', #lib/re.pm
2094 'Safe' => '2.10', #lib/Safe.pm
2095 'SDBM_File' => '1.03', #lib/SDBM_File.pm
2096 'Search::Dict' => undef, #lib/Search/Dict.pm
2097 'SelectSaver' => undef, #lib/SelectSaver.pm
2098 'SelfLoader' => '1.0902', #lib/SelfLoader.pm
2099 'Shell' => '0.3', #lib/Shell.pm
2100 'sigtrap' => '1.02', #lib/sigtrap.pm
2101 'Socket' => '1.72', #lib/Socket.pm
2102 'strict' => '1.01', #lib/strict.pm
2103 'subs' => undef, #lib/subs.pm
2104 'Symbol' => '1.02', #lib/Symbol.pm
2105 'Sys::Hostname' => '1.1', #lib/Sys/Hostname.pm
2106 'Sys::Syslog' => '0.01', #lib/Sys/Syslog.pm
2107 'Term::ANSIColor' => '1.03', #lib/Term/ANSIColor.pm
2108 'Term::Cap' => undef, #lib/Term/Cap.pm
2109 'Term::Complete' => undef, #lib/Term/Complete.pm
2110 'Term::ReadLine' => undef, #lib/Term/ReadLine.pm
2111 'Test' => '1.24', #lib/Test.pm
2112 'Test::Builder' => '0.17', #lib/Test/Builder.pm
2113 'Test::Harness' => '2.30', #lib/Test/Harness.pm
2114 'Test::Harness::Assert' => '0.01', #lib/Test/Harness/Assert.pm
2115 'Test::Harness::Iterator'=> '0.01', #lib/Test/Harness/Iterator.pm
2116 'Test::Harness::Straps' => '0.15', #lib/Test/Harness/Straps.pm
2117 'Test::More' => '0.47', #lib/Test/More.pm
2118 'Test::Simple' => '0.47', #lib/Test/Simple.pm
2119 'Text::Abbrev' => undef, #lib/Text/Abbrev.pm
2120 'Text::ParseWords' => '3.2', #lib/Text/ParseWords.pm
2121 'Text::Soundex' => '1.0', #lib/Text/Soundex.pm
2122 'Text::Tabs' => '98.112801', #lib/Text/Tabs.pm
2123 'Text::Wrap' => '2001.0131', #lib/Text/Wrap.pm
2124 'Thread' => '1.0', #ext/Thread/Thread.pm
2125 'Thread::Queue' => undef, #ext/Thread/Thread/Queue.pm
2126 'Thread::Semaphore' => undef, #ext/Thread/Thread/Semaphore.pm
2127 'Thread::Signal' => undef, #ext/Thread/Thread/Signal.pm
2128 'Thread::Specific' => undef, #ext/Thread/Thread/Specific.pm
2129 'Tie::Array' => '1.01', #lib/Tie/Array.pm
2130 'Tie::Handle' => '4.0', #lib/Tie/Handle.pm
2131 'Tie::Hash' => undef, #lib/Tie/Hash.pm
2132 'Tie::RefHash' => '1.3', #lib/Tie/RefHash.pm
2133 'Tie::Scalar' => undef, #lib/Tie/Scalar.pm
2134 'Tie::SubstrHash' => undef, #lib/Tie/SubstrHash.pm
2135 'Time::gmtime' => '1.01', #lib/Time/gmtime.pm
2136 'Time::Local' => undef, #lib/Time/Local.pm
2137 'Time::localtime' => '1.01', #lib/Time/localtime.pm
2138 'Time::tm' => undef, #lib/Time/tm.pm
2139 'Unicode' => '3.0.1', # lib/unicore/version
2140 'UNIVERSAL' => undef, #lib/UNIVERSAL.pm
2141 'User::grent' => undef, #lib/User/grent.pm
2142 'User::pwent' => undef, #lib/User/pwent.pm
2143 'utf8' => undef, #lib/utf8.pm
2144 'vars' => undef, #lib/vars.pm
2145 'VMS::DCLsym' => '1.01', #vms/ext/DCLsym/DCLsym.pm
2146 'VMS::Filespec' => undef, #vms/ext/Filespec.pm
2147 'VMS::Stdio' => '2.2', #vms/ext/Stdio/Stdio.pm
2148 'vmsish' => undef, #vms/ext/vmsish.pm
2149 'warnings' => undef, #lib/warnings.pm
2150 'warnings::register' => undef, #lib/warnings/register.pm
2151 'XSLoader' => '0.01', #lib/XSLoader.pm
2154 5.007003 => {
2155 'AnyDBM_File' => '1.00',
2156 'Attribute::Handlers' => '0.76',
2157 'attributes' => '0.04_01',
2158 'attrs' => '1.01',
2159 'AutoLoader' => '5.59',
2160 'AutoSplit' => '1.0307',
2161 'autouse' => '1.03',
2162 'B::Asmdata' => '1.00',
2163 'B::Assembler' => '0.04',
2164 'B::Bblock' => '1.00',
2165 'B::Bytecode' => '1.00',
2166 'B::C' => '1.01',
2167 'B::CC' => '1.00',
2168 'B::Concise' => '0.52',
2169 'B::Debug' => '1.00',
2170 'B::Deparse' => '0.63',
2171 'B::Disassembler' => '1.01',
2172 'B::Lint' => '1.00',
2173 'B' => '1.00',
2174 'B::Showlex' => '1.00',
2175 'B::Stackobj' => '1.00',
2176 'B::Stash' => '1.00',
2177 'B::Terse' => '1.00',
2178 'B::Xref' => '1.00',
2179 'base' => '1.02',
2180 'Benchmark' => '1.04',
2181 'blib' => '1.01',
2182 'ByteLoader' => '0.04',
2183 'bytes' => '1.00',
2184 'Carp' => '1.01',
2185 'Carp::Heavy' => undef,
2186 'CGI' => '2.80',
2187 'CGI::Apache' => '1.00',
2188 'CGI::Carp' => '1.22',
2189 'CGI::Cookie' => '1.20',
2190 'CGI::Fast' => '1.04',
2191 'CGI::Pretty' => '1.05_00',
2192 'CGI::Push' => '1.04',
2193 'CGI::Switch' => '1.00',
2194 'CGI::Util' => '1.3',
2195 'charnames' => '1.01',
2196 'Class::ISA' => '0.32',
2197 'Class::Struct' => '0.61',
2198 'Config' => undef,
2199 'constant' => '1.04',
2200 'CPAN::FirstTime' => '1.54 ',
2201 'CPAN' => '1.59_56',
2202 'CPAN::Nox' => '1.00_01',
2203 'Cwd' => '2.06',
2204 'Data::Dumper' => '2.12',
2205 'DB' => '1.0',
2206 'DB_File' => '1.804',
2207 'Devel::DProf' => '20000000.00_01',
2208 'Devel::Peek' => '1.00_03',
2209 'Devel::PPPort' => '2.0002',
2210 'Devel::SelfStubber' => '1.03',
2211 'diagnostics' => '1.1',
2212 'Digest' => '1.00',
2213 'Digest::MD5' => '2.16',
2214 'DirHandle' => '1.00',
2215 'Dumpvalue' => '1.10',
2216 'DynaLoader' => 1.04,
2217 'Encode' => '0.40',
2218 'Encode::CN' => '0.02',
2219 'Encode::CN::HZ' => undef,
2220 'Encode::Encoding' => '0.02',
2221 'Encode::Internal' => '0.30',
2222 'Encode::iso10646_1' => '0.30',
2223 'Encode::JP' => '0.02',
2224 'Encode::JP::Constants' => '1.02',
2225 'Encode::JP::H2Z' => '0.77',
2226 'Encode::JP::ISO_2022_JP' => undef,
2227 'Encode::JP::JIS' => undef,
2228 'Encode::JP::Tr' => '0.77',
2229 'Encode::KR' => '0.02',
2230 'Encode::Tcl' => '1.01',
2231 'Encode::Tcl::Escape' => '1.01',
2232 'Encode::Tcl::Extended' => '1.01',
2233 'Encode::Tcl::HanZi' => '1.01',
2234 'Encode::Tcl::Table' => '1.01',
2235 'Encode::TW' => '0.02',
2236 'Encode::Unicode' => '0.30',
2237 'Encode::usc2_le' => '0.30',
2238 'Encode::utf8' => '0.30',
2239 'Encode::XS' => '0.40',
2240 'encoding' => '1.00',
2241 'English' => '1.00',
2242 'Env' => '1.00',
2243 'Exporter' => '5.566',
2244 'Exporter::Heavy' => '5.562',
2245 'ExtUtils::Command' => '1.02',
2246 'ExtUtils::Constant' => '0.11',
2247 'ExtUtils::Embed' => '1.250601',
2248 'ExtUtils::Install' => '1.29',
2249 'ExtUtils::Installed' => '0.04',
2250 'ExtUtils::Liblist' => '1.2701',
2251 'ExtUtils::MakeMaker' => '5.48_03',
2252 'ExtUtils::Manifest' => '1.35',
2253 'ExtUtils::Miniperl' => undef,
2254 'ExtUtils::Mkbootstrap' => '1.1401',
2255 'ExtUtils::Mksymlists' => '1.18',
2256 'ExtUtils::MM_BeOS' => '1.00',
2257 'ExtUtils::MM_Cygwin' => '1.00',
2258 'ExtUtils::MM_OS2' => '1.00',
2259 'ExtUtils::MM_Unix' => '1.12607',
2260 'ExtUtils::MM_VMS' => '5.56',
2261 'ExtUtils::MM_Win32' => '1.00_02',
2262 'ExtUtils::Packlist' => '0.04',
2263 'ExtUtils::testlib' => '1.1201',
2264 'ExtUtils::XSSymSet' => '1.0',
2265 'Fatal' => '1.03',
2266 'Fcntl' => '1.04',
2267 'fields' => '1.02',
2268 'File::Basename' => '2.71',
2269 'File::CheckTree' => '4.1',
2270 'File::Compare' => '1.1003',
2271 'File::Copy' => '2.05',
2272 'File::DosGlob' => '1.00',
2273 'File::Find' => '1.04',
2274 'File::Glob' => '1.01',
2275 'File::Path' => '1.05',
2276 'File::Spec' => '0.83',
2277 'File::Spec::Cygwin' => '1.0',
2278 'File::Spec::Epoc' => '1.00',
2279 'File::Spec::Functions' => '1.2',
2280 'File::Spec::Mac' => '1.3',
2281 'File::Spec::OS2' => '1.1',
2282 'File::Spec::Unix' => '1.4',
2283 'File::Spec::VMS' => '1.2',
2284 'File::Spec::Win32' => '1.3',
2285 'File::stat' => '1.00',
2286 'File::Temp' => '0.13',
2287 'FileCache' => '1.00',
2288 'FileHandle' => '2.01',
2289 'filetest' => '1.00',
2290 'Filter::Simple' => '0.77',
2291 'Filter::Util::Call' => '1.06',
2292 'FindBin' => '1.43',
2293 'GDBM_File' => '1.06',
2294 'Getopt::Long' => '2.28',
2295 'Getopt::Std' => '1.03',
2296 'I18N::Collate' => '1.00',
2297 'I18N::Langinfo' => '0.01',
2298 'I18N::LangTags' => '0.27',
2299 'I18N::LangTags::List' => '0.25',
2300 'if' => '0.01',
2301 'integer' => '1.00',
2302 'IO' => '1.20',
2303 'IO::Dir' => '1.03_00',
2304 'IO::File' => '1.09',
2305 'IO::Handle' => '1.21_00',
2306 'IO::Pipe' => '1.122',
2307 'IO::Poll' => '0.06',
2308 'IO::Seekable' => '1.08_00',
2309 'IO::Select' => '1.15',
2310 'IO::Socket' => '1.27',
2311 'IO::Socket::INET' => '1.26',
2312 'IO::Socket::UNIX' => '1.20_00',
2313 'IPC::Msg' => '1.00_00',
2314 'IPC::Open2' => '1.01',
2315 'IPC::Open3' => '1.0104',
2316 'IPC::Semaphore' => '1.00_00',
2317 'IPC::SysV' => '1.03_00',
2318 'JNI' => '0.1',
2319 'JPL::AutoLoader' => undef,
2320 'JPL::Class' => undef,
2321 'JPL::Compile' => undef,
2322 'less' => '0.01',
2323 'lib' => '0.5564',
2324 'List::Util' => '1.06_00',
2325 'locale' => '1.00',
2326 'Locale::Constants' => '2.01',
2327 'Locale::Country' => '2.01',
2328 'Locale::Currency' => '2.01',
2329 'Locale::Language' => '2.01',
2330 'Locale::Maketext' => '1.03',
2331 'Locale::Script' => '2.01',
2332 'Math::BigFloat' => '1.30',
2333 'Math::BigInt' => '1.54',
2334 'Math::BigInt::Calc' => '0.25',
2335 'Math::Complex' => '1.34',
2336 'Math::Trig' => '1.01',
2337 'Memoize' => '0.66',
2338 'Memoize::AnyDBM_File' => '0.65',
2339 'Memoize::Expire' => '0.66',
2340 'Memoize::ExpireFile' => '0.65',
2341 'Memoize::ExpireTest' => '0.65',
2342 'Memoize::NDBM_File' => '0.65',
2343 'Memoize::SDBM_File' => '0.65',
2344 'Memoize::Storable' => '0.65',
2345 'MIME::Base64' => '2.12',
2346 'MIME::QuotedPrint' => '2.03',
2347 'NDBM_File' => '1.04',
2348 'Net::Cmd' => '2.21',
2349 'Net::Config' => '1.10',
2350 'Net::Domain' => '2.17',
2351 'Net::FTP' => '2.64',
2352 'Net::FTP::A' => '1.15',
2353 'Net::FTP::dataconn' => '0.10',
2354 'Net::FTP::E' => '0.01',
2355 'Net::FTP::I' => '1.12',
2356 'Net::FTP::L' => '0.01',
2357 'Net::hostent' => '1.00',
2358 'Net::netent' => '1.00',
2359 'Net::Netrc' => '2.12',
2360 'Net::NNTP' => '2.21',
2361 'Net::Ping' => '2.12',
2362 'Net::POP3' => '2.23',
2363 'Net::protoent' => '1.00',
2364 'Net::servent' => '1.00',
2365 'Net::SMTP' => '2.21',
2366 'Net::Time' => '2.09',
2367 'NEXT' => '0.50',
2368 'O' => '1.00',
2369 'ODBM_File' => '1.03',
2370 'Opcode' => '1.05',
2371 'open' => '1.01',
2372 'ops' => '1.00',
2373 'OS2::DLL' => '1.00',
2374 'OS2::ExtAttr' => '0.01',
2375 'OS2::PrfDB' => '0.02',
2376 'OS2::Process' => '1.0',
2377 'OS2::REXX' => '1.01',
2378 'overload' => '1.00',
2379 'PerlIO' => '1.00',
2380 'PerlIO::Scalar' => '0.01',
2381 'PerlIO::Via' => '0.01',
2382 'Pod::Checker' => '1.3',
2383 'Pod::Find' => '0.22',
2384 'Pod::Functions' => '1.01',
2385 'Pod::Html' => '1.04',
2386 'Pod::LaTeX' => '0.54',
2387 'Pod::Man' => '1.32',
2388 'Pod::InputObjects' => '1.13',
2389 'Pod::ParseLink' => '1.05',
2390 'Pod::Parser' => '1.13',
2391 'Pod::ParseUtils' => '0.22',
2392 'Pod::Plainer' => '0.01',
2393 'Pod::Select' => '1.13',
2394 'Pod::Text' => '2.18',
2395 'Pod::Text::Color' => '1.03',
2396 'Pod::Text::Overstrike' => '1.08',
2397 'Pod::Text::Termcap' => '1.09',
2398 'Pod::Usage' => '1.14',
2399 'POSIX' => '1.05',
2400 're' => '0.03',
2401 'Safe' => '2.07',
2402 'Scalar::Util' => undef,
2403 'SDBM_File' => '1.03',
2404 'Search::Dict' => '1.02',
2405 'SelectSaver' => '1.00',
2406 'SelfLoader' => '1.0903',
2407 'Shell' => '0.4',
2408 'sigtrap' => '1.02',
2409 'Socket' => '1.75',
2410 'sort' => '1.00',
2411 'Storable' => '1.015',
2412 'strict' => '1.02',
2413 'subs' => '1.00',
2414 'Switch' => '2.06',
2415 'Symbol' => '1.04',
2416 'Sys::Hostname' => '1.1',
2417 'Sys::Syslog' => '0.02',
2418 'Term::ANSIColor' => '1.04',
2419 'Term::Cap' => '1.07',
2420 'Term::Complete' => '1.4',
2421 'Term::ReadLine' => '1.00',
2422 'Test' => '1.18',
2423 'Test::Builder' => '0.11',
2424 'Test::Harness' => '2.01',
2425 'Test::Harness::Assert' => '0.01',
2426 'Test::Harness::Iterator'=> '0.01',
2427 'Test::Harness::Straps' => '0.08',
2428 'Test::More' => '0.41',
2429 'Test::Simple' => '0.41',
2430 'Text::Abbrev' => '1.00',
2431 'Text::Balanced' => '1.89',
2432 'Text::ParseWords' => '3.21',
2433 'Text::Soundex' => '1.01',
2434 'Text::Tabs' => '98.112801',
2435 'Text::Wrap' => '2001.0929',
2436 'Thread' => '2.00',
2437 'Thread::Queue' => '1.00',
2438 'Thread::Semaphore' => '1.00',
2439 'Thread::Signal' => '1.00',
2440 'Thread::Specific' => '1.00',
2441 'threads' => '0.05',
2442 'threads::shared' => '0.90',
2443 'Tie::Array' => '1.02',
2444 'Tie::File' => '0.17',
2445 'Tie::Hash' => '1.00',
2446 'Tie::Handle' => '4.1',
2447 'Tie::Memoize' => '1.0',
2448 'Tie::RefHash' => '1.3_00',
2449 'Tie::Scalar' => '1.00',
2450 'Tie::SubstrHash' => '1.00',
2451 'Time::gmtime' => '1.02',
2452 'Time::HiRes' => '1.20_00',
2453 'Time::Local' => '1.04',
2454 'Time::localtime' => '1.02',
2455 'Time::tm' => '1.00',
2456 'Unicode::Collate' => '0.10',
2457 'Unicode::Normalize' => '0.14',
2458 'Unicode::UCD' => '0.2',
2459 'UNIVERSAL' => '1.00',
2460 'User::grent' => '1.00',
2461 'User::pwent' => '1.00',
2462 'utf8' => '1.00',
2463 'vars' => '1.01',
2464 'VMS::DCLsym' => '1.02',
2465 'VMS::Filespec' => '1.1',
2466 'VMS::Stdio' => '2.3',
2467 'vmsish' => '1.00',
2468 'warnings' => '1.00',
2469 'warnings::register' => '1.00',
2470 'XS::Typemap' => '0.01',
2471 'XSLoader' => '0.01',
2474 5.008 => {
2475 'AnyDBM_File' => '1.00', #./lib/AnyDBM_File.pm
2476 'Attribute::Handlers' => '0.77', #./lib/Attribute/Handlers.pm
2477 'attributes' => '0.05', #./lib/attributes.pm
2478 'attrs' => '1.01', #./ext/attrs/attrs.pm
2479 'AutoLoader' => '5.59', #./lib/AutoLoader.pm
2480 'AutoSplit' => '1.0307', #./lib/AutoSplit.pm
2481 'autouse' => '1.03', #./lib/autouse.pm
2482 'B' => '1.01', #./ext/B/B.pm
2483 'B::Asmdata' => '1.00', #./ext/B/B/Asmdata.pm
2484 'B::Assembler' => '0.04', #./ext/B/B/Assembler.pm
2485 'B::Bblock' => '1.00', #./ext/B/B/Bblock.pm
2486 'B::Bytecode' => '1.00', #./ext/B/B/Bytecode.pm
2487 'B::C' => '1.01', #./ext/B/B/C.pm
2488 'B::CC' => '1.00', #./ext/B/B/CC.pm
2489 'B::Concise' => '0.52', #./ext/B/B/Concise.pm
2490 'B::Debug' => '1.00', #./ext/B/B/Debug.pm
2491 'B::Deparse' => '0.63', #./ext/B/B/Deparse.pm
2492 'B::Disassembler' => '1.01', #./ext/B/B/Disassembler.pm
2493 'B::Lint' => '1.01', #./ext/B/B/Lint.pm
2494 'B::Showlex' => '1.00', #./ext/B/B/Showlex.pm
2495 'B::Stackobj' => '1.00', #./ext/B/B/Stackobj.pm
2496 'B::Stash' => '1.00', #./ext/B/B/Stash.pm
2497 'B::Terse' => '1.00', #./ext/B/B/Terse.pm
2498 'B::Xref' => '1.01', #./ext/B/B/Xref.pm
2499 'base' => '1.03', #./lib/base.pm
2500 'Benchmark' => '1.04', #./lib/Benchmark.pm
2501 'bigint' => '0.02', #./lib/bigint.pm
2502 'bignum' => '0.11', #./lib/bignum.pm
2503 'bigrat' => '0.04', #./lib/bigrat.pm
2504 'blib' => '1.02', #./lib/blib.pm
2505 'ByteLoader' => '0.04', #./ext/ByteLoader/ByteLoader.pm
2506 'bytes' => '1.00', #./lib/bytes.pm
2507 'Carp' => '1.01', #./lib/Carp.pm
2508 'Carp::Heavy' => 'undef', #./lib/Carp/Heavy.pm
2509 'CGI' => '2.81', #./lib/CGI.pm
2510 'CGI::Apache' => '1.00', #./lib/CGI/Apache.pm
2511 'CGI::Carp' => '1.23', #./lib/CGI/Carp.pm
2512 'CGI::Cookie' => '1.20', #./lib/CGI/Cookie.pm
2513 'CGI::Fast' => '1.04', #./lib/CGI/Fast.pm
2514 'CGI::Pretty' => '1.05_00', #./lib/CGI/Pretty.pm
2515 'CGI::Push' => '1.04', #./lib/CGI/Push.pm
2516 'CGI::Switch' => '1.00', #./lib/CGI/Switch.pm
2517 'CGI::Util' => '1.3', #./lib/CGI/Util.pm
2518 'charnames' => '1.01', #./lib/charnames.pm
2519 'Class::ISA' => '0.32', #./lib/Class/ISA.pm
2520 'Class::Struct' => '0.61', #./lib/Class/Struct.pm
2521 'constant' => '1.04', #./lib/constant.pm
2522 'Config' => undef,
2523 'CPAN' => '1.61', #./lib/CPAN.pm
2524 'CPAN::FirstTime' => '1.56 ', #./lib/CPAN/FirstTime.pm
2525 'CPAN::Nox' => '1.02', #./lib/CPAN/Nox.pm
2526 'Cwd' => '2.06', #./lib/Cwd.pm
2527 'Data::Dumper' => '2.12', #./ext/Data/Dumper/Dumper.pm
2528 'DB' => '1.0', #./lib/DB.pm
2529 'DB_File' => '1.804', #./ext/DB_File/DB_File.pm
2530 'Devel::DProf' => '20000000.00_01', #./ext/Devel/DProf/DProf.pm
2531 'Devel::Peek' => '1.00_03', #./ext/Devel/Peek/Peek.pm
2532 'Devel::PPPort' => '2.0002', #./ext/Devel/PPPort/PPPort.pm
2533 'Devel::SelfStubber' => '1.03', #./lib/Devel/SelfStubber.pm
2534 'diagnostics' => '1.1', #./lib/diagnostics.pm
2535 'Digest' => '1.00', #./lib/Digest.pm
2536 'Digest::MD5' => '2.20', #./ext/Digest/MD5/MD5.pm
2537 'DirHandle' => '1.00', #./lib/DirHandle.pm
2538 'Dumpvalue' => '1.11', #./lib/Dumpvalue.pm
2539 'DynaLoader' => '1.04',
2540 'Encode' => '1.75', #./ext/Encode/Encode.pm
2541 'Encode::Alias' => '1.32', #./ext/Encode/lib/Encode/Alias.pm
2542 'Encode::Byte' => '1.22', #./ext/Encode/Byte/Byte.pm
2543 'Encode::CJKConstants' => '1.00', #./ext/Encode/lib/Encode/CJKConstants.pm
2544 'Encode::CN' => '1.24', #./ext/Encode/CN/CN.pm
2545 'Encode::CN::HZ' => '1.04', #./ext/Encode/lib/Encode/CN/HZ.pm
2546 'Encode::Config' => '1.06', #./ext/Encode/lib/Encode/Config.pm
2547 'Encode::EBCDIC' => '1.21', #./ext/Encode/EBCDIC/EBCDIC.pm
2548 'Encode::Encoder' => '0.05', #./ext/Encode/lib/Encode/Encoder.pm
2549 'Encode::Encoding' => '1.30', #./ext/Encode/lib/Encode/Encoding.pm
2550 'Encode::Guess' => '1.06', #./ext/Encode/lib/Encode/Guess.pm
2551 'Encode::JP::H2Z' => '1.02', #./ext/Encode/lib/Encode/JP/H2Z.pm
2552 'Encode::JP::JIS7' => '1.08', #./ext/Encode/lib/Encode/JP/JIS7.pm
2553 'Encode::JP' => '1.25', #./ext/Encode/JP/JP.pm
2554 'Encode::KR' => '1.22', #./ext/Encode/KR/KR.pm
2555 'Encode::KR::2022_KR' => '1.05', #./ext/Encode/lib/Encode/KR/2022_KR.pm
2556 'Encode::MIME::Header' => '1.05', #./ext/Encode/lib/Encode/MIME/Header.pm
2557 'Encode::Symbol' => '1.22', #./ext/Encode/Symbol/Symbol.pm
2558 'Encode::TW' => '1.26', #./ext/Encode/TW/TW.pm
2559 'Encode::Unicode' => '1.37', #./ext/Encode/Unicode/Unicode.pm
2560 'encoding' => '1.35', #./ext/Encode/encoding.pm
2561 'English' => '1.00', #./lib/English.pm
2562 'Env' => '1.00', #./lib/Env.pm
2563 'Exporter' => '5.566', #./lib/Exporter.pm
2564 'Exporter::Heavy' => '5.566', #./lib/Exporter/Heavy.pm
2565 'ExtUtils::Command' => '1.04', #./lib/ExtUtils/Command.pm
2566 'ExtUtils::Command::MM' => '0.01', #./lib/ExtUtils/Command/MM.pm
2567 'ExtUtils::Constant' => '0.12', #./lib/ExtUtils/Constant.pm
2568 'ExtUtils::Embed' => '1.250601', #./lib/ExtUtils/Embed.pm
2569 'ExtUtils::Install' => '1.29', #./lib/ExtUtils/Install.pm
2570 'ExtUtils::Installed' => '0.06', #./lib/ExtUtils/Installed.pm
2571 'ExtUtils::Liblist' => '1.00', #./lib/ExtUtils/Liblist.pm
2572 'ExtUtils::Liblist::Kid'=> '1.29', #./lib/ExtUtils/Liblist/Kid.pm
2573 'ExtUtils::MakeMaker' => '6.03', #./lib/ExtUtils/MakeMaker.pm
2574 'ExtUtils::Manifest' => '1.38', #./lib/ExtUtils/Manifest.pm
2575 'ExtUtils::Miniperl' => undef,
2576 'ExtUtils::Mkbootstrap' => '1.15', #./lib/ExtUtils/Mkbootstrap.pm
2577 'ExtUtils::Mksymlists' => '1.19', #./lib/ExtUtils/Mksymlists.pm
2578 'ExtUtils::MM' => '0.04', #./lib/ExtUtils/MM.pm
2579 'ExtUtils::MM_Any' => '0.04', #./lib/ExtUtils/MM_Any.pm
2580 'ExtUtils::MM_BeOS' => '1.03', #./lib/ExtUtils/MM_BeOS.pm
2581 'ExtUtils::MM_Cygwin' => '1.04', #./lib/ExtUtils/MM_Cygwin.pm
2582 'ExtUtils::MM_DOS' => '0.01', #./lib/ExtUtils/MM_DOS.pm
2583 'ExtUtils::MM_MacOS' => '1.03', #./lib/ExtUtils/MM_MacOS.pm
2584 'ExtUtils::MM_NW5' => '2.05', #./lib/ExtUtils/MM_NW5.pm
2585 'ExtUtils::MM_OS2' => '1.03', #./lib/ExtUtils/MM_OS2.pm
2586 'ExtUtils::MM_Unix' => '1.33', #./lib/ExtUtils/MM_Unix.pm
2587 'ExtUtils::MM_UWIN' => '0.01', #./lib/ExtUtils/MM_UWIN.pm
2588 'ExtUtils::MM_VMS' => '5.65', #./lib/ExtUtils/MM_VMS.pm
2589 'ExtUtils::MM_Win32' => '1.05', #./lib/ExtUtils/MM_Win32.pm
2590 'ExtUtils::MM_Win95' => '0.02', #./lib/ExtUtils/MM_Win95.pm
2591 'ExtUtils::MY' => '0.01', #./lib/ExtUtils/MY.pm
2592 'ExtUtils::Packlist' => '0.04', #./lib/ExtUtils/Packlist.pm
2593 'ExtUtils::testlib' => '1.15', #./lib/ExtUtils/testlib.pm
2594 'ExtUtils::XSSymSet' => '1.0', #./vms/ext/XSSymSet.pm
2595 'Fatal' => '1.03', #./lib/Fatal.pm
2596 'Fcntl' => '1.04', #./ext/Fcntl/Fcntl.pm
2597 'fields' => '1.02', #./lib/fields.pm
2598 'File::Basename' => '2.71', #./lib/File/Basename.pm
2599 'File::CheckTree' => '4.2', #./lib/File/CheckTree.pm
2600 'File::Compare' => '1.1003', #./lib/File/Compare.pm
2601 'File::Copy' => '2.05', #./lib/File/Copy.pm
2602 'File::DosGlob' => '1.00', #./lib/File/DosGlob.pm
2603 'File::Find' => '1.04', #./lib/File/Find.pm
2604 'File::Glob' => '1.01', #./ext/File/Glob/Glob.pm
2605 'File::Path' => '1.05', #./lib/File/Path.pm
2606 'File::Spec' => '0.83', #./lib/File/Spec.pm
2607 'File::Spec::Cygwin' => '1.0', #./lib/File/Spec/Cygwin.pm
2608 'File::Spec::Epoc' => '1.00', #./lib/File/Spec/Epoc.pm
2609 'File::Spec::Functions' => '1.2', #./lib/File/Spec/Functions.pm
2610 'File::Spec::Mac' => '1.3', #./lib/File/Spec/Mac.pm
2611 'File::Spec::OS2' => '1.1', #./lib/File/Spec/OS2.pm
2612 'File::Spec::Unix' => '1.4', #./lib/File/Spec/Unix.pm
2613 'File::Spec::VMS' => '1.2', #./lib/File/Spec/VMS.pm
2614 'File::Spec::Win32' => '1.3', #./lib/File/Spec/Win32.pm
2615 'File::stat' => '1.00', #./lib/File/stat.pm
2616 'File::Temp' => '0.13', #./lib/File/Temp.pm
2617 'FileCache' => '1.021', #./lib/FileCache.pm
2618 'FileHandle' => '2.01', #./lib/FileHandle.pm
2619 'filetest' => '1.00', #./lib/filetest.pm
2620 'Filter::Simple' => '0.78', #./lib/Filter/Simple.pm
2621 'Filter::Util::Call' => '1.06', #./ext/Filter/Util/Call/Call.pm
2622 'FindBin' => '1.43', #./lib/FindBin.pm
2623 'GDBM_File' => '1.06', #./ext/GDBM_File/GDBM_File.pm
2624 'Getopt::Long' => '2.32', #./lib/Getopt/Long.pm
2625 'Getopt::Std' => '1.03', #./lib/Getopt/Std.pm
2626 'Hash::Util' => '0.04', #./lib/Hash/Util.pm
2627 'I18N::Collate' => '1.00', #./lib/I18N/Collate.pm
2628 'I18N::Langinfo' => '0.01', #./ext/I18N/Langinfo/Langinfo.pm
2629 'I18N::LangTags' => '0.27', #./lib/I18N/LangTags.pm
2630 'I18N::LangTags::List' => '0.25', #./lib/I18N/LangTags/List.pm
2631 'if' => '0.01', #./lib/if.pm
2632 'integer' => '1.00', #./lib/integer.pm
2633 'IO' => '1.20', #./ext/IO/IO.pm
2634 'IO::Dir' => '1.03_00', #./ext/IO/lib/IO/Dir.pm
2635 'IO::File' => '1.09', #./ext/IO/lib/IO/File.pm
2636 'IO::Handle' => '1.21_00', #./ext/IO/lib/IO/Handle.pm
2637 'IO::Pipe' => '1.122', #./ext/IO/lib/IO/Pipe.pm
2638 'IO::Poll' => '0.06', #./ext/IO/lib/IO/Poll.pm
2639 'IO::Seekable' => '1.08_00', #./ext/IO/lib/IO/Seekable.pm
2640 'IO::Select' => '1.15', #./ext/IO/lib/IO/Select.pm
2641 'IO::Socket' => '1.27', #./ext/IO/lib/IO/Socket.pm
2642 'IO::Socket::INET' => '1.26', #./ext/IO/lib/IO/Socket/INET.pm
2643 'IO::Socket::UNIX' => '1.20_00', #./ext/IO/lib/IO/Socket/UNIX.pm
2644 'IPC::Open2' => '1.01', #./lib/IPC/Open2.pm
2645 'IPC::Open3' => '1.0104', #./lib/IPC/Open3.pm
2646 'IPC::Msg' => '1.00_00', #./ext/IPC/SysV/Msg.pm
2647 'IPC::Semaphore' => '1.00_00', #./ext/IPC/SysV/Semaphore.pm
2648 'IPC::SysV' => '1.03_00', #./ext/IPC/SysV/SysV.pm
2649 'JNI' => '0.1', #./jpl/JNI/JNI.pm
2650 'JPL::AutoLoader' => undef, #./jpl/JPL/AutoLoader.pm
2651 'JPL::Class' => undef, #./jpl/JPL/Class.pm
2652 'JPL::Compile' => undef, #./jpl/JPL/Compile.pm
2653 'less' => '0.01', #./lib/less.pm
2654 'lib' => '0.5564',
2655 'List::Util' => '1.07_00', #./ext/List/Util/lib/List/Util.pm
2656 'locale' => '1.00', #./lib/locale.pm
2657 'Locale::Constants' => '2.01', #./lib/Locale/Constants.pm
2658 'Locale::Country' => '2.04', #./lib/Locale/Country.pm
2659 'Locale::Currency' => '2.01', #./lib/Locale/Currency.pm
2660 'Locale::Language' => '2.01', #./lib/Locale/Language.pm
2661 'Locale::Maketext' => '1.03', #./lib/Locale/Maketext.pm
2662 'Locale::Script' => '2.01', #./lib/Locale/Script.pm
2663 'Math::BigFloat' => '1.35', #./lib/Math/BigFloat.pm
2664 'Math::BigFloat::Trace' => '0.01', #./lib/Math/BigFloat/Trace.pm
2665 'Math::BigInt' => '1.60', #./lib/Math/BigInt.pm
2666 'Math::BigInt::Calc' => '0.30', #./lib/Math/BigInt/Calc.pm
2667 'Math::BigInt::Trace' => '0.01', #./lib/Math/BigInt/Trace.pm
2668 'Math::BigRat' => '0.07', #./lib/Math/BigRat.pm
2669 'Math::Complex' => '1.34', #./lib/Math/Complex.pm
2670 'Math::Trig' => '1.01', #./lib/Math/Trig.pm
2671 'Memoize' => '1.01', #./lib/Memoize.pm
2672 'Memoize::AnyDBM_File' => '0.65', #./lib/Memoize/AnyDBM_File.pm
2673 'Memoize::Expire' => '1.00', #./lib/Memoize/Expire.pm
2674 'Memoize::ExpireFile' => '1.01', #./lib/Memoize/ExpireFile.pm
2675 'Memoize::ExpireTest' => '0.65', #./lib/Memoize/ExpireTest.pm
2676 'Memoize::NDBM_File' => '0.65', #./lib/Memoize/NDBM_File.pm
2677 'Memoize::SDBM_File' => '0.65', #./lib/Memoize/SDBM_File.pm
2678 'Memoize::Storable' => '0.65', #./lib/Memoize/Storable.pm
2679 'MIME::Base64' => '2.12', #./ext/MIME/Base64/Base64.pm
2680 'MIME::QuotedPrint' => '2.03', #./ext/MIME/Base64/QuotedPrint.pm
2681 'NDBM_File' => '1.04', #./ext/NDBM_File/NDBM_File.pm
2682 'Net::Cmd' => '2.21', #./lib/Net/Cmd.pm
2683 'Net::Config' => '1.10', #./lib/Net/Config.pm
2684 'Net::Domain' => '2.17', #./lib/Net/Domain.pm
2685 'Net::FTP' => '2.65', #./lib/Net/FTP.pm
2686 'Net::FTP::A' => '1.15', #./lib/Net/FTP/A.pm
2687 'Net::FTP::dataconn' => '0.11', #./lib/Net/FTP/dataconn.pm
2688 'Net::FTP::E' => '0.01', #./lib/Net/FTP/E.pm
2689 'Net::FTP::I' => '1.12', #./lib/Net/FTP/I.pm
2690 'Net::FTP::L' => '0.01', #./lib/Net/FTP/L.pm
2691 'Net::hostent' => '1.00', #./lib/Net/hostent.pm
2692 'Net::netent' => '1.00', #./lib/Net/netent.pm
2693 'Net::Netrc' => '2.12', #./lib/Net/Netrc.pm
2694 'Net::NNTP' => '2.21', #./lib/Net/NNTP.pm
2695 'Net::Ping' => '2.19', #./lib/Net/Ping.pm
2696 'Net::POP3' => '2.23', #./lib/Net/POP3.pm
2697 'Net::protoent' => '1.00', #./lib/Net/protoent.pm
2698 'Net::servent' => '1.00', #./lib/Net/servent.pm
2699 'Net::SMTP' => '2.24', #./lib/Net/SMTP.pm
2700 'Net::Time' => '2.09', #./lib/Net/Time.pm
2701 'NEXT' => '0.50', #./lib/NEXT.pm
2702 'O' => '1.00', #./ext/B/O.pm
2703 'ODBM_File' => '1.03', #./ext/ODBM_File/ODBM_File.pm
2704 'Opcode' => '1.05', #./ext/Opcode/Opcode.pm
2705 'open' => '1.01', #./lib/open.pm
2706 'ops' => '1.00', #./ext/Opcode/ops.pm
2707 'OS2::DLL' => '1.00', #./os2/OS2/REXX/DLL/DLL.pm
2708 'OS2::ExtAttr' => '0.01', #./os2/OS2/ExtAttr/ExtAttr.pm
2709 'OS2::PrfDB' => '0.02', #./os2/OS2/PrfDB/PrfDB.pm
2710 'OS2::Process' => '1.0', #./os2/OS2/Process/Process.pm
2711 'OS2::REXX' => '1.01', #./os2/OS2/REXX/REXX.pm
2712 'overload' => '1.00', #./lib/overload.pm
2713 'PerlIO' => '1.01', #./lib/PerlIO.pm
2714 'PerlIO::encoding' => '0.06', #./ext/PerlIO/encoding/encoding.pm
2715 'PerlIO::scalar' => '0.01', #./ext/PerlIO/scalar/scalar.pm
2716 'PerlIO::via' => '0.01', #./ext/PerlIO/via/via.pm
2717 'PerlIO::via::QuotedPrint'=> '0.04', #./lib/PerlIO/via/QuotedPrint.pm
2718 'Pod::Checker' => '1.3', #./lib/Pod/Checker.pm
2719 'Pod::Find' => '0.22', #./lib/Pod/Find.pm
2720 'Pod::Functions' => '1.01', #./lib/Pod/Functions.pm
2721 'Pod::Html' => '1.04', #./lib/Pod/Html.pm
2722 'Pod::InputObjects' => '1.13', #./lib/Pod/InputObjects.pm
2723 'Pod::LaTeX' => '0.54', #./lib/Pod/LaTeX.pm
2724 'Pod::Man' => '1.33', #./lib/Pod/Man.pm
2725 'Pod::ParseLink' => '1.05', #./lib/Pod/ParseLink.pm
2726 'Pod::Parser' => '1.13', #./lib/Pod/Parser.pm
2727 'Pod::ParseUtils' => '0.22', #./lib/Pod/ParseUtils.pm
2728 'Pod::Plainer' => '0.01', #./lib/Pod/Plainer.pm
2729 'Pod::Select' => '1.13', #./lib/Pod/Select.pm
2730 'Pod::Text' => '2.19', #./lib/Pod/Text.pm
2731 'Pod::Text::Color' => '1.03', #./lib/Pod/Text/Color.pm
2732 'Pod::Text::Overstrike' => '1.08', #./lib/Pod/Text/Overstrike.pm
2733 'Pod::Text::Termcap' => '1.09', #./lib/Pod/Text/Termcap.pm
2734 'Pod::Usage' => '1.14', #./lib/Pod/Usage.pm
2735 'POSIX' => '1.05', #./ext/POSIX/POSIX.pm
2736 're' => '0.03', #./ext/re/re.pm
2737 'Safe' => '2.07', #./ext/Opcode/Safe.pm
2738 'Scalar::Util' => 'undef', #./ext/List/Util/lib/Scalar/Util.pm
2739 'SDBM_File' => '1.03', #./ext/SDBM_File/SDBM_File.pm
2740 'Search::Dict' => '1.02', #./lib/Search/Dict.pm
2741 'SelectSaver' => '1.00', #./lib/SelectSaver.pm
2742 'SelfLoader' => '1.0903', #./lib/SelfLoader.pm
2743 'Shell' => '0.4', #./lib/Shell.pm
2744 'sigtrap' => '1.02', #./lib/sigtrap.pm
2745 'Socket' => '1.75', #./ext/Socket/Socket.pm
2746 'sort' => '1.01', #./lib/sort.pm
2747 'Storable' => '2.04', #./ext/Storable/Storable.pm
2748 'strict' => '1.02', #./lib/strict.pm
2749 'subs' => '1.00', #./lib/subs.pm
2750 'Switch' => '2.09', #./lib/Switch.pm
2751 'Symbol' => '1.04', #./lib/Symbol.pm
2752 'Sys::Hostname' => '1.1', #./ext/Sys/Hostname/Hostname.pm
2753 'Sys::Syslog' => '0.03', #./ext/Sys/Syslog/Syslog.pm
2754 'Term::ANSIColor' => '1.04', #./lib/Term/ANSIColor.pm
2755 'Term::Cap' => '1.07', #./lib/Term/Cap.pm
2756 'Term::Complete' => '1.4', #./lib/Term/Complete.pm
2757 'Term::ReadLine' => '1.00', #./lib/Term/ReadLine.pm
2758 'Test' => '1.20', #./lib/Test.pm
2759 'Test::Builder' => '0.15', #./lib/Test/Builder.pm
2760 'Test::Harness' => '2.26', #./lib/Test/Harness.pm
2761 'Test::Harness::Assert' => '0.01', #./lib/Test/Harness/Assert.pm
2762 'Test::Harness::Iterator'=> '0.01', #./lib/Test/Harness/Iterator.pm
2763 'Test::Harness::Straps' => '0.14', #./lib/Test/Harness/Straps.pm
2764 'Test::More' => '0.45', #./lib/Test/More.pm
2765 'Test::Simple' => '0.45', #./lib/Test/Simple.pm
2766 'Text::Abbrev' => '1.00', #./lib/Text/Abbrev.pm
2767 'Text::Balanced' => '1.89', #./lib/Text/Balanced.pm
2768 'Text::ParseWords' => '3.21', #./lib/Text/ParseWords.pm
2769 'Text::Soundex' => '1.01', #./lib/Text/Soundex.pm
2770 'Text::Tabs' => '98.112801', #./lib/Text/Tabs.pm
2771 'Text::Wrap' => '2001.0929', #./lib/Text/Wrap.pm
2772 'Thread' => '2.00', #./lib/Thread.pm
2773 'Thread::Queue' => '2.00', #./lib/Thread/Queue.pm
2774 'Thread::Semaphore' => '2.00', #./lib/Thread/Semaphore.pm
2775 'Thread::Signal' => '1.00', #./ext/Thread/Thread/Signal.pm
2776 'Thread::Specific' => '1.00', #./ext/Thread/Thread/Specific.pm
2777 'threads' => '0.99', #./ext/threads/threads.pm
2778 'threads::shared' => '0.90', #./ext/threads/shared/shared.pm
2779 'Tie::Array' => '1.02', #./lib/Tie/Array.pm
2780 'Tie::File' => '0.93', #./lib/Tie/File.pm
2781 'Tie::Handle' => '4.1', #./lib/Tie/Handle.pm
2782 'Tie::Hash' => '1.00', #./lib/Tie/Hash.pm
2783 'Tie::Memoize' => '1.0', #./lib/Tie/Memoize.pm
2784 'Tie::RefHash' => '1.30', #./lib/Tie/RefHash.pm
2785 'Tie::Scalar' => '1.00', #./lib/Tie/Scalar.pm
2786 'Tie::SubstrHash' => '1.00', #./lib/Tie/SubstrHash.pm
2787 'Time::gmtime' => '1.02', #./lib/Time/gmtime.pm
2788 'Time::HiRes' => '1.20_00', #./ext/Time/HiRes/HiRes.pm
2789 'Time::Local' => '1.04', #./lib/Time/Local.pm
2790 'Time::localtime' => '1.02', #./lib/Time/localtime.pm
2791 'Time::tm' => '1.00', #./lib/Time/tm.pm
2792 'Unicode' => '3.2.0', # lib/unicore/version
2793 'Unicode::Collate' => '0.12', #./lib/Unicode/Collate.pm
2794 'Unicode::Normalize' => '0.17', #./ext/Unicode/Normalize/Normalize.pm
2795 'Unicode::UCD' => '0.2', #./lib/Unicode/UCD.pm
2796 'UNIVERSAL' => '1.00', #./lib/UNIVERSAL.pm
2797 'User::grent' => '1.00', #./lib/User/grent.pm
2798 'User::pwent' => '1.00', #./lib/User/pwent.pm
2799 'utf8' => '1.00', #./lib/utf8.pm
2800 'vars' => '1.01', #./lib/vars.pm
2801 'VMS::DCLsym' => '1.02', #./vms/ext/DCLsym/DCLsym.pm
2802 'VMS::Filespec' => '1.1', #./vms/ext/Filespec.pm
2803 'VMS::Stdio' => '2.3', #./vms/ext/Stdio/Stdio.pm
2804 'vmsish' => '1.00', #./lib/vmsish.pm
2805 'warnings' => '1.00', #./lib/warnings.pm
2806 'warnings::register' => '1.00', #./lib/warnings/register.pm
2807 'XS::APItest' => '0.01', #./ext/XS/APItest/APItest.pm
2808 'XS::Typemap' => '0.01', #./ext/XS/Typemap/Typemap.pm
2809 'XSLoader' => '0.01',
2812 5.008001 => {
2813 'AnyDBM_File' => '1.00', #./lib/AnyDBM_File.pm
2814 'Attribute::Handlers' => '0.78', #./lib/Attribute/Handlers.pm
2815 'attributes' => '0.06', #./lib/attributes.pm
2816 'attrs' => '1.01', #./lib/attrs.pm
2817 'AutoLoader' => '5.60', #./lib/AutoLoader.pm
2818 'AutoSplit' => '1.04', #./lib/AutoSplit.pm
2819 'autouse' => '1.03', #./lib/autouse.pm
2820 'B' => '1.02', #./lib/B.pm
2821 'B::Asmdata' => '1.01', #./lib/B/Asmdata.pm
2822 'B::Assembler' => '0.06', #./lib/B/Assembler.pm
2823 'B::Bblock' => '1.02', #./lib/B/Bblock.pm
2824 'B::Bytecode' => '1.01', #./lib/B/Bytecode.pm
2825 'B::C' => '1.02', #./lib/B/C.pm
2826 'B::CC' => '1.00', #./lib/B/CC.pm
2827 'B::Concise' => '0.56', #./lib/B/Concise.pm
2828 'B::Debug' => '1.01', #./lib/B/Debug.pm
2829 'B::Deparse' => '0.64', #./lib/B/Deparse.pm
2830 'B::Disassembler' => '1.03', #./lib/B/Disassembler.pm
2831 'B::Lint' => '1.02', #./lib/B/Lint.pm
2832 'B::Showlex' => '1.00', #./lib/B/Showlex.pm
2833 'B::Stackobj' => '1.00', #./lib/B/Stackobj.pm
2834 'B::Stash' => '1.00', #./lib/B/Stash.pm
2835 'B::Terse' => '1.02', #./lib/B/Terse.pm
2836 'B::Xref' => '1.01', #./lib/B/Xref.pm
2837 'base' => '2.03', #./lib/base.pm
2838 'Benchmark' => '1.051', #./lib/Benchmark.pm
2839 'bigint' => '0.04', #./lib/bigint.pm
2840 'bignum' => '0.14', #./lib/bignum.pm
2841 'bigrat' => '0.06', #./lib/bigrat.pm
2842 'blib' => '1.02', #./lib/blib.pm
2843 'ByteLoader' => '0.05', #./lib/ByteLoader.pm
2844 'bytes' => '1.01', #./lib/bytes.pm
2845 'Carp' => '1.01', #./lib/Carp.pm
2846 'Carp::Heavy' => '1.01', #./lib/Carp/Heavy.pm
2847 'CGI' => '3.00', #./lib/CGI.pm
2848 'CGI::Apache' => '1.00', #./lib/CGI/Apache.pm
2849 'CGI::Carp' => '1.26', #./lib/CGI/Carp.pm
2850 'CGI::Cookie' => '1.24', #./lib/CGI/Cookie.pm
2851 'CGI::Fast' => '1.041', #./lib/CGI/Fast.pm
2852 'CGI::Pretty' => '1.07_00', #./lib/CGI/Pretty.pm
2853 'CGI::Push' => '1.04', #./lib/CGI/Push.pm
2854 'CGI::Switch' => '1.00', #./lib/CGI/Switch.pm
2855 'CGI::Util' => '1.31', #./lib/CGI/Util.pm
2856 'charnames' => '1.02', #./lib/charnames.pm
2857 'Class::ISA' => '0.32', #./lib/Class/ISA.pm
2858 'Class::Struct' => '0.63', #./lib/Class/Struct.pm
2859 'Config' => undef, #./lib/Config.pm
2860 'constant' => '1.04', #./lib/constant.pm
2861 'CPAN' => '1.76_01', #./lib/CPAN.pm
2862 'CPAN::FirstTime' => '1.60 ', #./lib/CPAN/FirstTime.pm
2863 'CPAN::Nox' => '1.03', #./lib/CPAN/Nox.pm
2864 'Cwd' => '2.08', #./lib/Cwd.pm
2865 'Data::Dumper' => '2.121', #./lib/Data/Dumper.pm
2866 'DB' => '1.0', #./lib/DB.pm
2867 'DB_File' => '1.806', #./lib/DB_File.pm
2868 'Devel::DProf' => '20030813.00', #./lib/Devel/DProf.pm
2869 'Devel::Peek' => '1.01', #./lib/Devel/Peek.pm
2870 'Devel::PPPort' => '2.007', #./lib/Devel/PPPort.pm
2871 'Devel::SelfStubber' => '1.03', #./lib/Devel/SelfStubber.pm
2872 'diagnostics' => '1.11', #./lib/diagnostics.pm
2873 'Digest' => '1.02', #./lib/Digest.pm
2874 'Digest::MD5' => '2.27', #./lib/Digest/MD5.pm
2875 'DirHandle' => '1.00', #./lib/DirHandle.pm
2876 'Dumpvalue' => '1.11', #./lib/Dumpvalue.pm
2877 'DynaLoader' => '1.04', #./lib/DynaLoader.pm
2878 'Encode' => '1.9801', #./lib/Encode.pm
2879 'Encode::Alias' => '1.38', #./lib/Encode/Alias.pm
2880 'Encode::Byte' => '1.23', #./lib/Encode/Byte.pm
2881 'Encode::CJKConstants' => '1.02', #./lib/Encode/CJKConstants.pm
2882 'Encode::CN' => '1.24', #./lib/Encode/CN.pm
2883 'Encode::CN::HZ' => '1.05', #./lib/Encode/CN/HZ.pm
2884 'Encode::Config' => '1.07', #./lib/Encode/Config.pm
2885 'Encode::EBCDIC' => '1.21', #./lib/Encode/EBCDIC.pm
2886 'Encode::Encoder' => '0.07', #./lib/Encode/Encoder.pm
2887 'Encode::Encoding' => '1.33', #./lib/Encode/Encoding.pm
2888 'Encode::Guess' => '1.09', #./lib/Encode/Guess.pm
2889 'Encode::JP' => '1.25', #./lib/Encode/JP.pm
2890 'Encode::JP::H2Z' => '1.02', #./lib/Encode/JP/H2Z.pm
2891 'Encode::JP::JIS7' => '1.12', #./lib/Encode/JP/JIS7.pm
2892 'Encode::KR' => '1.23', #./lib/Encode/KR.pm
2893 'Encode::KR::2022_KR' => '1.06', #./lib/Encode/KR/2022_KR.pm
2894 'Encode::MIME::Header' => '1.09', #./lib/Encode/MIME/Header.pm
2895 'Encode::Symbol' => '1.22', #./lib/Encode/Symbol.pm
2896 'Encode::TW' => '1.26', #./lib/Encode/TW.pm
2897 'Encode::Unicode' => '1.40', #./lib/Encode/Unicode.pm
2898 'Encode::Unicode::UTF7' => '0.02', #./lib/Encode/Unicode/UTF7.pm
2899 'encoding' => '1.47', #./lib/encoding.pm
2900 'English' => '1.01', #./lib/English.pm
2901 'Env' => '1.00', #./lib/Env.pm
2902 'Errno' => '1.09_00', #./lib/Errno.pm
2903 'Exporter' => '5.567', #./lib/Exporter.pm
2904 'Exporter::Heavy' => '5.567', #./lib/Exporter/Heavy.pm
2905 'ExtUtils::Command' => '1.05', #./lib/ExtUtils/Command.pm
2906 'ExtUtils::Command::MM' => '0.03', #./lib/ExtUtils/Command/MM.pm
2907 'ExtUtils::Constant' => '0.14', #./lib/ExtUtils/Constant.pm
2908 'ExtUtils::Embed' => '1.250601', #./lib/ExtUtils/Embed.pm
2909 'ExtUtils::Install' => '1.32', #./lib/ExtUtils/Install.pm
2910 'ExtUtils::Installed' => '0.08', #./lib/ExtUtils/Installed.pm
2911 'ExtUtils::Liblist' => '1.01', #./lib/ExtUtils/Liblist.pm
2912 'ExtUtils::Liblist::Kid'=> '1.3', #./lib/ExtUtils/Liblist/Kid.pm
2913 'ExtUtils::MakeMaker' => '6.17', #./lib/ExtUtils/MakeMaker.pm
2914 'ExtUtils::MakeMaker::bytes'=> '0.01', #./lib/ExtUtils/MakeMaker/bytes.pm
2915 'ExtUtils::MakeMaker::vmsish'=> '0.01', #./lib/ExtUtils/MakeMaker/vmsish.pm
2916 'ExtUtils::Manifest' => '1.42', #./lib/ExtUtils/Manifest.pm
2917 'ExtUtils::Miniperl' => undef, #./lib/ExtUtils/Miniperl.pm
2918 'ExtUtils::Mkbootstrap' => '1.15', #./lib/ExtUtils/Mkbootstrap.pm
2919 'ExtUtils::Mksymlists' => '1.19', #./lib/ExtUtils/Mksymlists.pm
2920 'ExtUtils::MM' => '0.04', #./lib/ExtUtils/MM.pm
2921 'ExtUtils::MM_Any' => '0.07', #./lib/ExtUtils/MM_Any.pm
2922 'ExtUtils::MM_BeOS' => '1.04', #./lib/ExtUtils/MM_BeOS.pm
2923 'ExtUtils::MM_Cygwin' => '1.06', #./lib/ExtUtils/MM_Cygwin.pm
2924 'ExtUtils::MM_DOS' => '0.02', #./lib/ExtUtils/MM_DOS.pm
2925 'ExtUtils::MM_MacOS' => '1.07', #./lib/ExtUtils/MM_MacOS.pm
2926 'ExtUtils::MM_NW5' => '2.06', #./lib/ExtUtils/MM_NW5.pm
2927 'ExtUtils::MM_OS2' => '1.04', #./lib/ExtUtils/MM_OS2.pm
2928 'ExtUtils::MM_Unix' => '1.42', #./lib/ExtUtils/MM_Unix.pm
2929 'ExtUtils::MM_UWIN' => '0.02', #./lib/ExtUtils/MM_UWIN.pm
2930 'ExtUtils::MM_VMS' => '5.70', #./lib/ExtUtils/MM_VMS.pm
2931 'ExtUtils::MM_Win32' => '1.09', #./lib/ExtUtils/MM_Win32.pm
2932 'ExtUtils::MM_Win95' => '0.03', #./lib/ExtUtils/MM_Win95.pm
2933 'ExtUtils::MY' => '0.01', #./lib/ExtUtils/MY.pm
2934 'ExtUtils::Packlist' => '0.04', #./lib/ExtUtils/Packlist.pm
2935 'ExtUtils::testlib' => '1.15', #./lib/ExtUtils/testlib.pm
2936 'ExtUtils::XSSymSet' => '1.0', #./vms/ext/XSSymSet.pm
2937 'Fatal' => '1.03', #./lib/Fatal.pm
2938 'Fcntl' => '1.05', #./lib/Fcntl.pm
2939 'fields' => '2.03', #./lib/fields.pm
2940 'File::Basename' => '2.72', #./lib/File/Basename.pm
2941 'File::CheckTree' => '4.2', #./lib/File/CheckTree.pm
2942 'File::Compare' => '1.1003', #./lib/File/Compare.pm
2943 'File::Copy' => '2.06', #./lib/File/Copy.pm
2944 'File::DosGlob' => '1.00', #./lib/File/DosGlob.pm
2945 'File::Find' => '1.05', #./lib/File/Find.pm
2946 'File::Glob' => '1.02', #./lib/File/Glob.pm
2947 'File::Path' => '1.06', #./lib/File/Path.pm
2948 'File::Spec' => '0.86', #./lib/File/Spec.pm
2949 'File::Spec::Cygwin' => '1.1', #./lib/File/Spec/Cygwin.pm
2950 'File::Spec::Epoc' => '1.1', #./lib/File/Spec/Epoc.pm
2951 'File::Spec::Functions' => '1.3', #./lib/File/Spec/Functions.pm
2952 'File::Spec::Mac' => '1.4', #./lib/File/Spec/Mac.pm
2953 'File::Spec::OS2' => '1.2', #./lib/File/Spec/OS2.pm
2954 'File::Spec::Unix' => '1.5', #./lib/File/Spec/Unix.pm
2955 'File::Spec::VMS' => '1.4', #./lib/File/Spec/VMS.pm
2956 'File::Spec::Win32' => '1.4', #./lib/File/Spec/Win32.pm
2957 'File::stat' => '1.00', #./lib/File/stat.pm
2958 'File::Temp' => '0.14', #./lib/File/Temp.pm
2959 'FileCache' => '1.03', #./lib/FileCache.pm
2960 'FileHandle' => '2.01', #./lib/FileHandle.pm
2961 'filetest' => '1.01', #./lib/filetest.pm
2962 'Filter::Simple' => '0.78', #./lib/Filter/Simple.pm
2963 'Filter::Util::Call' => '1.0601', #./lib/Filter/Util/Call.pm
2964 'FindBin' => '1.43', #./lib/FindBin.pm
2965 'GDBM_File' => '1.07', #./ext/GDBM_File/GDBM_File.pm
2966 'Getopt::Long' => '2.34', #./lib/Getopt/Long.pm
2967 'Getopt::Std' => '1.04', #./lib/Getopt/Std.pm
2968 'Hash::Util' => '0.05', #./lib/Hash/Util.pm
2969 'I18N::Collate' => '1.00', #./lib/I18N/Collate.pm
2970 'I18N::Langinfo' => '0.02', #./lib/I18N/Langinfo.pm
2971 'I18N::LangTags' => '0.28', #./lib/I18N/LangTags.pm
2972 'I18N::LangTags::List' => '0.26', #./lib/I18N/LangTags/List.pm
2973 'if' => '0.03', #./lib/if.pm
2974 'integer' => '1.00', #./lib/integer.pm
2975 'IO' => '1.21', #./lib/IO.pm
2976 'IO::Dir' => '1.04', #./lib/IO/Dir.pm
2977 'IO::File' => '1.10', #./lib/IO/File.pm
2978 'IO::Handle' => '1.23', #./lib/IO/Handle.pm
2979 'IO::Pipe' => '1.122', #./lib/IO/Pipe.pm
2980 'IO::Poll' => '0.06', #./lib/IO/Poll.pm
2981 'IO::Seekable' => '1.09', #./lib/IO/Seekable.pm
2982 'IO::Select' => '1.16', #./lib/IO/Select.pm
2983 'IO::Socket' => '1.28', #./lib/IO/Socket.pm
2984 'IO::Socket::INET' => '1.27', #./lib/IO/Socket/INET.pm
2985 'IO::Socket::UNIX' => '1.21', #./lib/IO/Socket/UNIX.pm
2986 'IPC::Msg' => '1.02', #./lib/IPC/Msg.pm
2987 'IPC::Open2' => '1.01', #./lib/IPC/Open2.pm
2988 'IPC::Open3' => '1.0105', #./lib/IPC/Open3.pm
2989 'IPC::Semaphore' => '1.02', #./lib/IPC/Semaphore.pm
2990 'IPC::SysV' => '1.04', #./lib/IPC/SysV.pm
2991 'JNI' => '0.2', #./jpl/JNI/JNI.pm
2992 'JPL::AutoLoader' => undef, #./jpl/JPL/AutoLoader.pm
2993 'JPL::Class' => undef, #./jpl/JPL/Class.pm
2994 'JPL::Compile' => undef, #./jpl/JPL/Compile.pm
2995 'less' => '0.01', #./lib/less.pm
2996 'lib' => '0.5565', #./lib/lib.pm
2997 'List::Util' => '1.13', #./lib/List/Util.pm
2998 'locale' => '1.00', #./lib/locale.pm
2999 'Locale::Constants' => '2.01', #./lib/Locale/Constants.pm
3000 'Locale::Country' => '2.61', #./lib/Locale/Country.pm
3001 'Locale::Currency' => '2.21', #./lib/Locale/Currency.pm
3002 'Locale::Language' => '2.21', #./lib/Locale/Language.pm
3003 'Locale::Maketext' => '1.06', #./lib/Locale/Maketext.pm
3004 'Locale::Maketext::Guts'=> undef, #./lib/Locale/Maketext/Guts.pm
3005 'Locale::Maketext::GutsLoader'=> undef, #./lib/Locale/Maketext/GutsLoader.pm
3006 'Locale::Script' => '2.21', #./lib/Locale/Script.pm
3007 'Math::BigFloat' => '1.40', #./lib/Math/BigFloat.pm
3008 'Math::BigFloat::Trace' => '0.01', #./lib/Math/BigFloat/Trace.pm
3009 'Math::BigInt' => '1.66', #./lib/Math/BigInt.pm
3010 'Math::BigInt::Calc' => '0.36', #./lib/Math/BigInt/Calc.pm
3011 'Math::BigInt::Scalar' => '0.11', #./lib/Math/BigInt/Scalar.pm
3012 'Math::BigInt::Trace' => '0.01', #./lib/Math/BigInt/Trace.pm
3013 'Math::BigRat' => '0.10', #./lib/Math/BigRat.pm
3014 'Math::Complex' => '1.34', #./lib/Math/Complex.pm
3015 'Math::Trig' => '1.02', #./lib/Math/Trig.pm
3016 'Memoize' => '1.01', #./lib/Memoize.pm
3017 'Memoize::AnyDBM_File' => '0.65', #./lib/Memoize/AnyDBM_File.pm
3018 'Memoize::Expire' => '1.00', #./lib/Memoize/Expire.pm
3019 'Memoize::ExpireFile' => '1.01', #./lib/Memoize/ExpireFile.pm
3020 'Memoize::ExpireTest' => '0.65', #./lib/Memoize/ExpireTest.pm
3021 'Memoize::NDBM_File' => '0.65', #./lib/Memoize/NDBM_File.pm
3022 'Memoize::SDBM_File' => '0.65', #./lib/Memoize/SDBM_File.pm
3023 'Memoize::Storable' => '0.65', #./lib/Memoize/Storable.pm
3024 'MIME::Base64' => '2.20', #./lib/MIME/Base64.pm
3025 'MIME::QuotedPrint' => '2.20', #./lib/MIME/QuotedPrint.pm
3026 'NDBM_File' => '1.05', #./ext/NDBM_File/NDBM_File.pm
3027 'Net::Cmd' => '2.24', #./lib/Net/Cmd.pm
3028 'Net::Config' => '1.10', #./lib/Net/Config.pm
3029 'Net::Domain' => '2.18', #./lib/Net/Domain.pm
3030 'Net::FTP' => '2.71', #./lib/Net/FTP.pm
3031 'Net::FTP::A' => '1.16', #./lib/Net/FTP/A.pm
3032 'Net::FTP::dataconn' => '0.11', #./lib/Net/FTP/dataconn.pm
3033 'Net::FTP::E' => '0.01', #./lib/Net/FTP/E.pm
3034 'Net::FTP::I' => '1.12', #./lib/Net/FTP/I.pm
3035 'Net::FTP::L' => '0.01', #./lib/Net/FTP/L.pm
3036 'Net::hostent' => '1.01', #./lib/Net/hostent.pm
3037 'Net::netent' => '1.00', #./lib/Net/netent.pm
3038 'Net::Netrc' => '2.12', #./lib/Net/Netrc.pm
3039 'Net::NNTP' => '2.22', #./lib/Net/NNTP.pm
3040 'Net::Ping' => '2.31', #./lib/Net/Ping.pm
3041 'Net::POP3' => '2.24', #./lib/Net/POP3.pm
3042 'Net::protoent' => '1.00', #./lib/Net/protoent.pm
3043 'Net::servent' => '1.01', #./lib/Net/servent.pm
3044 'Net::SMTP' => '2.26', #./lib/Net/SMTP.pm
3045 'Net::Time' => '2.09', #./lib/Net/Time.pm
3046 'NEXT' => '0.60', #./lib/NEXT.pm
3047 'O' => '1.00', #./lib/O.pm
3048 'ODBM_File' => '1.04', #./ext/ODBM_File/ODBM_File.pm
3049 'Opcode' => '1.05', #./lib/Opcode.pm
3050 'open' => '1.02', #./lib/open.pm
3051 'ops' => '1.00', #./lib/ops.pm
3052 'OS2::ExtAttr' => '0.02', #./os2/OS2/ExtAttr/ExtAttr.pm
3053 'OS2::PrfDB' => '0.03', #./os2/OS2/PrfDB/PrfDB.pm
3054 'OS2::Process' => '1.01', #./os2/OS2/Process/Process.pm
3055 'OS2::DLL' => '1.01', #./os2/OS2/REXX/DLL/DLL.pm
3056 'OS2::REXX' => '1.02', #./os2/OS2/REXX/REXX.pm
3057 'overload' => '1.01', #./lib/overload.pm
3058 'PerlIO' => '1.02', #./lib/PerlIO.pm
3059 'PerlIO::encoding' => '0.07', #./lib/PerlIO/encoding.pm
3060 'PerlIO::scalar' => '0.02', #./lib/PerlIO/scalar.pm
3061 'PerlIO::via' => '0.02', #./lib/PerlIO/via.pm
3062 'PerlIO::via::QuotedPrint'=> '0.05', #./lib/PerlIO/via/QuotedPrint.pm
3063 'Pod::Checker' => '1.41', #./lib/Pod/Checker.pm
3064 'Pod::Find' => '0.24', #./lib/Pod/Find.pm
3065 'Pod::Functions' => '1.02', #./lib/Pod/Functions.pm
3066 'Pod::Html' => '1.0501', #./lib/Pod/Html.pm
3067 'Pod::InputObjects' => '1.14', #./lib/Pod/InputObjects.pm
3068 'Pod::LaTeX' => '0.55', #./lib/Pod/LaTeX.pm
3069 'Pod::Man' => '1.37', #./lib/Pod/Man.pm
3070 'Pod::ParseLink' => '1.06', #./lib/Pod/ParseLink.pm
3071 'Pod::Parser' => '1.13', #./lib/Pod/Parser.pm
3072 'Pod::ParseUtils' => '0.3', #./lib/Pod/ParseUtils.pm
3073 'Pod::Perldoc' => '3.10', #./lib/Pod/Perldoc.pm
3074 'Pod::Perldoc::BaseTo' => undef, #./lib/Pod/Perldoc/BaseTo.pm
3075 'Pod::Perldoc::GetOptsOO'=> undef, #./lib/Pod/Perldoc/GetOptsOO.pm
3076 'Pod::Perldoc::ToChecker'=> undef, #./lib/Pod/Perldoc/ToChecker.pm
3077 'Pod::Perldoc::ToMan' => undef, #./lib/Pod/Perldoc/ToMan.pm
3078 'Pod::Perldoc::ToNroff' => undef, #./lib/Pod/Perldoc/ToNroff.pm
3079 'Pod::Perldoc::ToPod' => undef, #./lib/Pod/Perldoc/ToPod.pm
3080 'Pod::Perldoc::ToRtf' => undef, #./lib/Pod/Perldoc/ToRtf.pm
3081 'Pod::Perldoc::ToText' => undef, #./lib/Pod/Perldoc/ToText.pm
3082 'Pod::Perldoc::ToTk' => 'undef', #./lib/Pod/Perldoc/ToTk.pm
3083 'Pod::Perldoc::ToXml' => undef, #./lib/Pod/Perldoc/ToXml.pm
3084 'Pod::Plainer' => '0.01', #./lib/Pod/Plainer.pm
3085 'Pod::PlainText' => '2.01', #./lib/Pod/PlainText.pm
3086 'Pod::Select' => '1.13', #./lib/Pod/Select.pm
3087 'Pod::Text' => '2.21', #./lib/Pod/Text.pm
3088 'Pod::Text::Color' => '1.04', #./lib/Pod/Text/Color.pm
3089 'Pod::Text::Overstrike' => '1.1', #./lib/Pod/Text/Overstrike.pm
3090 'Pod::Text::Termcap' => '1.11', #./lib/Pod/Text/Termcap.pm
3091 'Pod::Usage' => '1.16', #./lib/Pod/Usage.pm
3092 'POSIX' => '1.06', #./lib/POSIX.pm
3093 're' => '0.04', #./lib/re.pm
3094 'Safe' => '2.10', #./lib/Safe.pm
3095 'Scalar::Util' => '1.13', #./lib/Scalar/Util.pm
3096 'SDBM_File' => '1.04', #./lib/SDBM_File.pm
3097 'Search::Dict' => '1.02', #./lib/Search/Dict.pm
3098 'SelectSaver' => '1.00', #./lib/SelectSaver.pm
3099 'SelfLoader' => '1.0904', #./lib/SelfLoader.pm
3100 'Shell' => '0.5', #./lib/Shell.pm
3101 'sigtrap' => '1.02', #./lib/sigtrap.pm
3102 'Socket' => '1.76', #./lib/Socket.pm
3103 'sort' => '1.02', #./lib/sort.pm
3104 'Storable' => '2.08', #./lib/Storable.pm
3105 'strict' => '1.03', #./lib/strict.pm
3106 'subs' => '1.00', #./lib/subs.pm
3107 'Switch' => '2.10', #./lib/Switch.pm
3108 'Symbol' => '1.05', #./lib/Symbol.pm
3109 'Sys::Hostname' => '1.11', #./lib/Sys/Hostname.pm
3110 'Sys::Syslog' => '0.04', #./lib/Sys/Syslog.pm
3111 'Term::ANSIColor' => '1.07', #./lib/Term/ANSIColor.pm
3112 'Term::Cap' => '1.08', #./lib/Term/Cap.pm
3113 'Term::Complete' => '1.401', #./lib/Term/Complete.pm
3114 'Term::ReadLine' => '1.01', #./lib/Term/ReadLine.pm
3115 'Test' => '1.24', #./lib/Test.pm
3116 'Test::Builder' => '0.17', #./lib/Test/Builder.pm
3117 'Test::Harness' => '2.30', #./lib/Test/Harness.pm
3118 'Test::Harness::Assert' => '0.01', #./lib/Test/Harness/Assert.pm
3119 'Test::Harness::Iterator'=> '0.01', #./lib/Test/Harness/Iterator.pm
3120 'Test::Harness::Straps' => '0.15', #./lib/Test/Harness/Straps.pm
3121 'Test::More' => '0.47', #./lib/Test/More.pm
3122 'Test::Simple' => '0.47', #./lib/Test/Simple.pm
3123 'Text::Abbrev' => '1.01', #./lib/Text/Abbrev.pm
3124 'Text::Balanced' => '1.95', #./lib/Text/Balanced.pm
3125 'Text::ParseWords' => '3.21', #./lib/Text/ParseWords.pm
3126 'Text::Soundex' => '1.01', #./lib/Text/Soundex.pm
3127 'Text::Tabs' => '98.112801', #./lib/Text/Tabs.pm
3128 'Text::Wrap' => '2001.09291', #./lib/Text/Wrap.pm
3129 'Thread' => '2.00', #./lib/Thread.pm
3130 'Thread::Queue' => '2.00', #./lib/Thread/Queue.pm
3131 'Thread::Semaphore' => '2.01', #./lib/Thread/Semaphore.pm
3132 'Thread::Signal' => '1.00', #./ext/Thread/Thread/Signal.pm
3133 'Thread::Specific' => '1.00', #./ext/Thread/Thread/Specific.pm
3134 'threads' => '1.00', #./lib/threads.pm
3135 'threads::shared' => '0.91', #./lib/threads/shared.pm
3136 'Tie::Array' => '1.03', #./lib/Tie/Array.pm
3137 'Tie::File' => '0.97', #./lib/Tie/File.pm
3138 'Tie::Handle' => '4.1', #./lib/Tie/Handle.pm
3139 'Tie::Hash' => '1.00', #./lib/Tie/Hash.pm
3140 'Tie::Memoize' => '1.0', #./lib/Tie/Memoize.pm
3141 'Tie::RefHash' => '1.31', #./lib/Tie/RefHash.pm
3142 'Tie::Scalar' => '1.00', #./lib/Tie/Scalar.pm
3143 'Tie::SubstrHash' => '1.00', #./lib/Tie/SubstrHash.pm
3144 'Time::gmtime' => '1.02', #./lib/Time/gmtime.pm
3145 'Time::HiRes' => '1.51', #./lib/Time/HiRes.pm
3146 'Time::Local' => '1.07', #./lib/Time/Local.pm
3147 'Time::localtime' => '1.02', #./lib/Time/localtime.pm
3148 'Time::tm' => '1.00', #./lib/Time/tm.pm
3149 'Unicode' => '4.0.0', # lib/unicore/version
3150 'Unicode::Collate' => '0.28', #./lib/Unicode/Collate.pm
3151 'Unicode::Normalize' => '0.23', #./lib/Unicode/Normalize.pm
3152 'Unicode::UCD' => '0.21', #./lib/Unicode/UCD.pm
3153 'UNIVERSAL' => '1.01', #./lib/UNIVERSAL.pm
3154 'User::grent' => '1.00', #./lib/User/grent.pm
3155 'User::pwent' => '1.00', #./lib/User/pwent.pm
3156 'utf8' => '1.02', #./lib/utf8.pm
3157 'vars' => '1.01', #./lib/vars.pm
3158 'VMS::DCLsym' => '1.02', #./vms/ext/DCLsym/DCLsym.pm
3159 'VMS::Filespec' => '1.11', #./vms/ext/Filespec.pm
3160 'VMS::Stdio' => '2.3', #./vms/ext/Stdio/Stdio.pm
3161 'vmsish' => '1.01', #./lib/vmsish.pm
3162 'warnings' => '1.03', #./lib/warnings.pm
3163 'warnings::register' => '1.00', #./lib/warnings/register.pm
3164 'XS::APItest' => '0.02', #./lib/XS/APItest.pm
3165 'XS::Typemap' => '0.01', #./lib/XS/Typemap.pm
3166 'XSLoader' => '0.02', #./lib/XSLoader.pm
3169 5.008002 => {
3170 'AnyDBM_File' => '1.00', #AnyDBM_File.pm
3171 'Attribute::Handlers' => 0.78, #Attribute\Handlers.pm
3172 'attributes' => 0.06, #attributes.pm
3173 'attrs' => 1.01, #attrs.pm
3174 'AutoLoader' => '5.60', #AutoLoader.pm
3175 'AutoSplit' => 1.04, #AutoSplit.pm
3176 'autouse' => 1.03, #autouse.pm
3177 'B' => 1.02, #B.pm
3178 'B::Asmdata' => 1.01, #B\Asmdata.pm
3179 'B::Assembler' => 0.06, #B\Assembler.pm
3180 'B::Bblock' => 1.02, #B\Bblock.pm
3181 'B::Bytecode' => 1.01, #B\Bytecode.pm
3182 'B::C' => 1.02, #B\C.pm
3183 'B::CC' => '1.00', #B\CC.pm
3184 'B::Concise' => 0.56, #B\Concise.pm
3185 'B::Debug' => 1.01, #B\Debug.pm
3186 'B::Deparse' => 0.64, #B\Deparse.pm
3187 'B::Disassembler' => 1.03, #B\Disassembler.pm
3188 'B::Lint' => 1.02, #B\Lint.pm
3189 'B::Showlex' => '1.00', #B\Showlex.pm
3190 'B::Stackobj' => '1.00', #B\Stackobj.pm
3191 'B::Stash' => '1.00', #B\Stash.pm
3192 'B::Terse' => 1.02, #B\Terse.pm
3193 'B::Xref' => 1.01, #B\Xref.pm
3194 'base' => 2.03, #base.pm
3195 'Benchmark' => 1.051, #Benchmark.pm
3196 'bigint' => 0.04, #bigint.pm
3197 'bignum' => 0.14, #bignum.pm
3198 'bigrat' => 0.06, #bigrat.pm
3199 'blib' => 1.02, #blib.pm
3200 'ByteLoader' => 0.05, #ByteLoader.pm
3201 'bytes' => 1.01, #bytes.pm
3202 'Carp' => 1.01, #Carp.pm
3203 'Carp::Heavy' => 1.01, #Carp\Heavy.pm
3204 'CGI' => '3.00', #CGI.pm
3205 'CGI::Apache' => '1.00', #CGI\Apache.pm
3206 'CGI::Carp' => 1.26, #CGI\Carp.pm
3207 'CGI::Cookie' => 1.24, #CGI\Cookie.pm
3208 'CGI::Fast' => 1.041, #CGI\Fast.pm
3209 'CGI::Pretty' => '1.07_00', #CGI\Pretty.pm
3210 'CGI::Push' => 1.04, #CGI\Push.pm
3211 'CGI::Switch' => '1.00', #CGI\Switch.pm
3212 'CGI::Util' => 1.31, #CGI\Util.pm
3213 'charnames' => 1.02, #charnames.pm
3214 'Class::ISA' => 0.32, #Class\ISA.pm
3215 'Class::Struct' => 0.63, #Class\Struct.pm
3216 'Config' => undef, #Config.pm
3217 'constant' => 1.04, #constant.pm
3218 'CPAN' => '1.76_01', #CPAN.pm
3219 'CPAN::FirstTime' => '1.60 ', #CPAN\FirstTime.pm
3220 'CPAN::Nox' => 1.03, #CPAN\Nox.pm
3221 'Cwd' => 2.08, #Cwd.pm
3222 'Data::Dumper' => 2.121, #Data\Dumper.pm
3223 'DB' => '1.0', #DB.pm
3224 'Devel::DProf' => '20030813.00', #Devel\DProf.pm
3225 'Devel::Peek' => 1.01, #Devel\Peek.pm
3226 'Devel::PPPort' => 2.009, #Devel\PPPort.pm
3227 'Devel::SelfStubber' => 1.03, #Devel\SelfStubber.pm
3228 'diagnostics' => 1.11, #diagnostics.pm
3229 'Digest' => 1.02, #Digest.pm
3230 'Digest::MD5' => '2.30', #Digest\MD5.pm
3231 'DirHandle' => '1.00', #DirHandle.pm
3232 'Dumpvalue' => 1.11, #Dumpvalue.pm
3233 'DynaLoader' => 1.04, #DynaLoader.pm
3234 'Encode' => 1.9801, #Encode.pm
3235 'Encode::Alias' => 1.38, #Encode\Alias.pm
3236 'Encode::Byte' => 1.23, #Encode\Byte.pm
3237 'Encode::CJKConstants' => 1.02, #Encode\CJKConstants.pm
3238 'Encode::CN' => 1.24, #Encode\CN.pm
3239 'Encode::CN::HZ' => 1.05, #Encode\CN\HZ.pm
3240 'Encode::Config' => 1.07, #Encode\Config.pm
3241 'Encode::EBCDIC' => 1.21, #Encode\EBCDIC.pm
3242 'Encode::Encoder' => 0.07, #Encode\Encoder.pm
3243 'Encode::Encoding' => 1.33, #Encode\Encoding.pm
3244 'Encode::Guess' => 1.09, #Encode\Guess.pm
3245 'Encode::JP' => 1.25, #Encode\JP.pm
3246 'Encode::JP::H2Z' => 1.02, #Encode\JP\H2Z.pm
3247 'Encode::JP::JIS7' => 1.12, #Encode\JP\JIS7.pm
3248 'Encode::KR' => 1.23, #Encode\KR.pm
3249 'Encode::KR::2022_KR' => 1.06, #Encode\KR\2022_KR.pm
3250 'Encode::MIME::Header' => 1.09, #Encode\MIME\Header.pm
3251 'Encode::Symbol' => 1.22, #Encode\Symbol.pm
3252 'Encode::TW' => 1.26, #Encode\TW.pm
3253 'Encode::Unicode' => '1.40', #Encode\Unicode.pm
3254 'Encode::Unicode::UTF7' => 0.02, #Encode\Unicode\UTF7.pm
3255 'encoding' => 1.47, #encoding.pm
3256 'English' => 1.01, #English.pm
3257 'Env' => '1.00', #Env.pm
3258 'Errno' => '1.09_00', #Errno.pm
3259 'Exporter' => 5.567, #Exporter.pm
3260 'Exporter::Heavy' => 5.567, #Exporter\Heavy.pm
3261 'ExtUtils::Command' => 1.05, #ExtUtils\Command.pm
3262 'ExtUtils::Command::MM' => 0.03, #ExtUtils\Command\MM.pm
3263 'ExtUtils::Constant' => 0.14, #ExtUtils\Constant.pm
3264 'ExtUtils::Embed' => 1.250601, #ExtUtils\Embed.pm
3265 'ExtUtils::Install' => 1.32, #ExtUtils\Install.pm
3266 'ExtUtils::Installed' => 0.08, #ExtUtils\Installed.pm
3267 'ExtUtils::Liblist' => 1.01, #ExtUtils\Liblist.pm
3268 'ExtUtils::Liblist::Kid' => 1.3, #ExtUtils\Liblist\Kid.pm
3269 'ExtUtils::MakeMaker' => 6.17, #ExtUtils\MakeMaker.pm
3270 'ExtUtils::MakeMaker::bytes' => 0.01, #ExtUtils\MakeMaker\bytes.pm
3271 'ExtUtils::MakeMaker::vmsish' => 0.01, #ExtUtils\MakeMaker\vmsish.pm
3272 'ExtUtils::Manifest' => 1.42, #ExtUtils\Manifest.pm
3273 'ExtUtils::Miniperl' => undef, #ExtUtils\Miniperl.pm
3274 'ExtUtils::Mkbootstrap' => 1.15, #ExtUtils\Mkbootstrap.pm
3275 'ExtUtils::Mksymlists' => 1.19, #ExtUtils\Mksymlists.pm
3276 'ExtUtils::MM' => 0.04, #ExtUtils\MM.pm
3277 'ExtUtils::MM_Any' => 0.07, #ExtUtils\MM_Any.pm
3278 'ExtUtils::MM_BeOS' => 1.04, #ExtUtils\MM_BeOS.pm
3279 'ExtUtils::MM_Cygwin' => 1.06, #ExtUtils\MM_Cygwin.pm
3280 'ExtUtils::MM_DOS' => 0.02, #ExtUtils\MM_DOS.pm
3281 'ExtUtils::MM_MacOS' => 1.07, #ExtUtils\MM_MacOS.pm
3282 'ExtUtils::MM_NW5' => 2.06, #ExtUtils\MM_NW5.pm
3283 'ExtUtils::MM_OS2' => 1.04, #ExtUtils\MM_OS2.pm
3284 'ExtUtils::MM_Unix' => 1.42, #ExtUtils\MM_Unix.pm
3285 'ExtUtils::MM_UWIN' => 0.02, #ExtUtils\MM_UWIN.pm
3286 'ExtUtils::MM_VMS' => '5.70', #ExtUtils\MM_VMS.pm
3287 'ExtUtils::MM_Win32' => 1.09, #ExtUtils\MM_Win32.pm
3288 'ExtUtils::MM_Win95' => 0.03, #ExtUtils\MM_Win95.pm
3289 'ExtUtils::MY' => 0.01, #ExtUtils\MY.pm
3290 'ExtUtils::Packlist' => 0.04, #ExtUtils\Packlist.pm
3291 'ExtUtils::testlib' => 1.15, #ExtUtils\testlib.pm
3292 'ExtUtils::XSSymSet' => '1.0', #vms\ext\XSSymSet.pm
3293 'Fatal' => 1.03, #Fatal.pm
3294 'Fcntl' => 1.05, #Fcntl.pm
3295 'fields' => 2.03, #fields.pm
3296 'File::Basename' => 2.72, #File\Basename.pm
3297 'File::CheckTree' => 4.2, #File\CheckTree.pm
3298 'File::Compare' => 1.1003, #File\Compare.pm
3299 'File::Copy' => 2.06, #File\Copy.pm
3300 'File::DosGlob' => '1.00', #File\DosGlob.pm
3301 'File::Find' => 1.05, #File\Find.pm
3302 'File::Glob' => 1.02, #File\Glob.pm
3303 'File::Path' => 1.06, #File\Path.pm
3304 'File::Spec' => 0.86, #File\Spec.pm
3305 'File::Spec::Cygwin' => 1.1, #File\Spec\Cygwin.pm
3306 'File::Spec::Epoc' => 1.1, #File\Spec\Epoc.pm
3307 'File::Spec::Functions' => 1.3, #File\Spec\Functions.pm
3308 'File::Spec::Mac' => 1.4, #File\Spec\Mac.pm
3309 'File::Spec::OS2' => 1.2, #File\Spec\OS2.pm
3310 'File::Spec::Unix' => 1.5, #File\Spec\Unix.pm
3311 'File::Spec::VMS' => 1.4, #File\Spec\VMS.pm
3312 'File::Spec::Win32' => 1.4, #File\Spec\Win32.pm
3313 'File::stat' => '1.00', #File\stat.pm
3314 'File::Temp' => 0.14, #File\Temp.pm
3315 'FileCache' => 1.03, #FileCache.pm
3316 'FileHandle' => 2.01, #FileHandle.pm
3317 'filetest' => 1.01, #filetest.pm
3318 'Filter::Simple' => 0.78, #Filter\Simple.pm
3319 'Filter::Util::Call' => 1.0601, #Filter\Util\Call.pm
3320 'FindBin' => 1.43, #FindBin.pm
3321 'GDBM_File' => '1.07', #ext\GDBM_File\GDBM_File.pm
3322 'Getopt::Long' => 2.34, #Getopt\Long.pm
3323 'Getopt::Std' => 1.04, #Getopt\Std.pm
3324 'Hash::Util' => 0.05, #Hash\Util.pm
3325 'I18N::Collate' => '1.00', #I18N\Collate.pm
3326 'I18N::Langinfo' => '0.02', #I18N\Langinfo.pm
3327 'I18N::LangTags' => 0.29, #I18N\LangTags.pm
3328 'I18N::LangTags::List' => 0.29, #I18N\LangTags\List.pm
3329 'if' => 0.03, #if.pm
3330 'integer' => '1.00', #integer.pm
3331 'IO' => 1.21, #IO.pm
3332 'IO::Dir' => 1.04, #IO\Dir.pm
3333 'IO::File' => '1.10', #IO\File.pm
3334 'IO::Handle' => 1.23, #IO\Handle.pm
3335 'IO::Pipe' => 1.122, #IO\Pipe.pm
3336 'IO::Poll' => 0.06, #IO\Poll.pm
3337 'IO::Seekable' => 1.09, #IO\Seekable.pm
3338 'IO::Select' => 1.16, #IO\Select.pm
3339 'IO::Socket' => 1.28, #IO\Socket.pm
3340 'IO::Socket::INET' => 1.27, #IO\Socket\INET.pm
3341 'IO::Socket::UNIX' => 1.21, #IO\Socket\UNIX.pm
3342 'IPC::Msg' => 1.02, #IPC\Msg.pm
3343 'IPC::Open2' => 1.01, #IPC\Open2.pm
3344 'IPC::Open3' => 1.0105, #IPC\Open3.pm
3345 'IPC::Semaphore' => 1.02, #IPC\Semaphore.pm
3346 'IPC::SysV' => 1.04, #IPC\SysV.pm
3347 'JNI' => '0.2', #jpl\JNI\JNI.pm
3348 'JPL::AutoLoader' => undef, #jpl\JPL\AutoLoader.pm
3349 'JPL::Class' => undef, #jpl\JPL\Class.pm
3350 'JPL::Compile' => undef, #jpl\JPL\Compile.pm
3351 'less' => 0.01, #less.pm
3352 'lib' => 0.5565, #lib.pm
3353 'List::Util' => 1.13, #List\Util.pm
3354 'locale' => '1.00', #locale.pm
3355 'Locale::Constants' => 2.01, #Locale\Constants.pm
3356 'Locale::Country' => 2.61, #Locale\Country.pm
3357 'Locale::Currency' => 2.21, #Locale\Currency.pm
3358 'Locale::Language' => 2.21, #Locale\Language.pm
3359 'Locale::Maketext' => 1.06, #Locale\Maketext.pm
3360 'Locale::Maketext::Guts' => undef, #Locale\Maketext\Guts.pm
3361 'Locale::Maketext::GutsLoader' => undef, #Locale\Maketext\GutsLoader.pm
3362 'Locale::Script' => 2.21, #Locale\Script.pm
3363 'Math::BigFloat' => '1.40', #Math\BigFloat.pm
3364 'Math::BigFloat::Trace' => 0.01, #Math\BigFloat\Trace.pm
3365 'Math::BigInt' => 1.66, #Math\BigInt.pm
3366 'Math::BigInt::Calc' => 0.36, #Math\BigInt\Calc.pm
3367 'Math::BigInt::Scalar' => 0.11, #Math\BigInt\Scalar.pm
3368 'Math::BigInt::Trace' => 0.01, #Math\BigInt\Trace.pm
3369 'Math::BigRat' => '0.10', #Math\BigRat.pm
3370 'Math::Complex' => 1.34, #Math\Complex.pm
3371 'Math::Trig' => 1.02, #Math\Trig.pm
3372 'Memoize' => 1.01, #Memoize.pm
3373 'Memoize::AnyDBM_File' => 0.65, #Memoize\AnyDBM_File.pm
3374 'Memoize::Expire' => '1.00', #Memoize\Expire.pm
3375 'Memoize::ExpireFile' => 1.01, #Memoize\ExpireFile.pm
3376 'Memoize::ExpireTest' => 0.65, #Memoize\ExpireTest.pm
3377 'Memoize::NDBM_File' => 0.65, #Memoize\NDBM_File.pm
3378 'Memoize::SDBM_File' => 0.65, #Memoize\SDBM_File.pm
3379 'Memoize::Storable' => 0.65, #Memoize\Storable.pm
3380 'MIME::Base64' => 2.21, #MIME\Base64.pm
3381 'MIME::QuotedPrint' => 2.21, #MIME\QuotedPrint.pm
3382 'NDBM_File' => '1.05', #ext\NDBM_File\NDBM_File.pm
3383 'Net::Cmd' => 2.24, #Net\Cmd.pm
3384 'Net::Config' => '1.10', #Net\Config.pm
3385 'Net::Domain' => 2.19, #Net\Domain.pm
3386 'Net::FTP' => 2.72, #Net\FTP.pm
3387 'Net::FTP::A' => 1.16, #Net\FTP\A.pm
3388 'Net::FTP::dataconn' => 0.11, #Net\FTP\dataconn.pm
3389 'Net::FTP::E' => 0.01, #Net\FTP\E.pm
3390 'Net::FTP::I' => 1.12, #Net\FTP\I.pm
3391 'Net::FTP::L' => 0.01, #Net\FTP\L.pm
3392 'Net::hostent' => 1.01, #Net\hostent.pm
3393 'Net::netent' => '1.00', #Net\netent.pm
3394 'Net::Netrc' => 2.12, #Net\Netrc.pm
3395 'Net::NNTP' => 2.22, #Net\NNTP.pm
3396 'Net::Ping' => 2.31, #Net\Ping.pm
3397 'Net::POP3' => 2.24, #Net\POP3.pm
3398 'Net::protoent' => '1.00', #Net\protoent.pm
3399 'Net::servent' => 1.01, #Net\servent.pm
3400 'Net::SMTP' => 2.26, #Net\SMTP.pm
3401 'Net::Time' => 2.09, #Net\Time.pm
3402 'NEXT' => '0.60', #NEXT.pm
3403 'O' => '1.00', #O.pm
3404 'ODBM_File' => '1.04', #ext\ODBM_File\ODBM_File.pm
3405 'Opcode' => 1.05, #Opcode.pm
3406 'open' => 1.02, #open.pm
3407 'ops' => '1.00', #ops.pm
3408 'OS2::DLL' => '1.01', #os2\OS2\REXX\DLL\DLL.pm
3409 'OS2::ExtAttr' => '0.02', #os2\OS2\ExtAttr\ExtAttr.pm
3410 'OS2::PrfDB' => '0.03', #os2\OS2\PrfDB\PrfDB.pm
3411 'OS2::Process' => '1.01', #os2\OS2\Process\Process.pm
3412 'OS2::REXX' => '1.02', #os2\OS2\REXX\REXX.pm
3413 'overload' => 1.01, #overload.pm
3414 'PerlIO' => 1.02, #PerlIO.pm
3415 'PerlIO::encoding' => 0.07, #PerlIO\encoding.pm
3416 'PerlIO::scalar' => 0.02, #PerlIO\scalar.pm
3417 'PerlIO::via' => 0.02, #PerlIO\via.pm
3418 'PerlIO::via::QuotedPrint' => 0.05, #PerlIO\via\QuotedPrint.pm
3419 'Pod::Checker' => 1.41, #Pod\Checker.pm
3420 'Pod::Find' => 0.24, #Pod\Find.pm
3421 'Pod::Functions' => 1.02, #Pod\Functions.pm
3422 'Pod::Html' => 1.0501, #Pod\Html.pm
3423 'Pod::InputObjects' => 1.14, #Pod\InputObjects.pm
3424 'Pod::LaTeX' => 0.55, #Pod\LaTeX.pm
3425 'Pod::Man' => 1.37, #Pod\Man.pm
3426 'Pod::ParseLink' => 1.06, #Pod\ParseLink.pm
3427 'Pod::Parser' => 1.13, #Pod\Parser.pm
3428 'Pod::ParseUtils' => 0.3, #Pod\ParseUtils.pm
3429 'Pod::Perldoc' => 3.11, #Pod\Perldoc.pm
3430 'Pod::Perldoc::BaseTo' => undef, #Pod\Perldoc\BaseTo.pm
3431 'Pod::Perldoc::GetOptsOO' => undef, #Pod\Perldoc\GetOptsOO.pm
3432 'Pod::Perldoc::ToChecker' => undef, #Pod\Perldoc\ToChecker.pm
3433 'Pod::Perldoc::ToMan' => undef, #Pod\Perldoc\ToMan.pm
3434 'Pod::Perldoc::ToNroff' => undef, #Pod\Perldoc\ToNroff.pm
3435 'Pod::Perldoc::ToPod' => undef, #Pod\Perldoc\ToPod.pm
3436 'Pod::Perldoc::ToRtf' => undef, #Pod\Perldoc\ToRtf.pm
3437 'Pod::Perldoc::ToText' => undef, #Pod\Perldoc\ToText.pm
3438 'Pod::Perldoc::ToTk' => undef, #Pod\Perldoc\ToTk.pm
3439 'Pod::Perldoc::ToXml' => undef, #Pod\Perldoc\ToXml.pm
3440 'Pod::Plainer' => 0.01, #Pod\Plainer.pm
3441 'Pod::PlainText' => 2.01, #Pod\PlainText.pm
3442 'Pod::Select' => 1.13, #Pod\Select.pm
3443 'Pod::Text' => 2.21, #Pod\Text.pm
3444 'Pod::Text::Color' => 1.04, #Pod\Text\Color.pm
3445 'Pod::Text::Overstrike' => 1.1, #Pod\Text\Overstrike.pm
3446 'Pod::Text::Termcap' => 1.11, #Pod\Text\Termcap.pm
3447 'Pod::Usage' => 1.16, #Pod\Usage.pm
3448 'POSIX' => 1.06, #POSIX.pm
3449 're' => 0.04, #re.pm
3450 'Safe' => '2.10', #Safe.pm
3451 'Scalar::Util' => 1.13, #Scalar\Util.pm
3452 'SDBM_File' => 1.04, #SDBM_File.pm
3453 'Search::Dict' => 1.02, #Search\Dict.pm
3454 'SelectSaver' => '1.00', #SelectSaver.pm
3455 'SelfLoader' => 1.0904, #SelfLoader.pm
3456 'Shell' => 0.5, #Shell.pm
3457 'sigtrap' => 1.02, #sigtrap.pm
3458 'Socket' => 1.76, #Socket.pm
3459 'sort' => 1.02, #sort.pm
3460 'Storable' => 2.08, #Storable.pm
3461 'strict' => 1.03, #strict.pm
3462 'subs' => '1.00', #subs.pm
3463 'Switch' => '2.10', #Switch.pm
3464 'Symbol' => 1.05, #Symbol.pm
3465 'Sys::Hostname' => 1.11, #Sys\Hostname.pm
3466 'Sys::Syslog' => '0.04', #ext\Sys\Syslog\Syslog.pm
3467 'Term::ANSIColor' => 1.07, #Term\ANSIColor.pm
3468 'Term::Cap' => 1.08, #Term\Cap.pm
3469 'Term::Complete' => 1.401, #Term\Complete.pm
3470 'Term::ReadLine' => 1.01, #Term\ReadLine.pm
3471 'Test' => 1.24, #Test.pm
3472 'Test::Builder' => 0.17, #Test\Builder.pm
3473 'Test::Harness' => '2.30', #Test\Harness.pm
3474 'Test::Harness::Assert' => 0.01, #Test\Harness\Assert.pm
3475 'Test::Harness::Iterator' => 0.01, #Test\Harness\Iterator.pm
3476 'Test::Harness::Straps' => 0.15, #Test\Harness\Straps.pm
3477 'Test::More' => 0.47, #Test\More.pm
3478 'Test::Simple' => 0.47, #Test\Simple.pm
3479 'Text::Abbrev' => 1.01, #Text\Abbrev.pm
3480 'Text::Balanced' => 1.95, #Text\Balanced.pm
3481 'Text::ParseWords' => 3.21, #Text\ParseWords.pm
3482 'Text::Soundex' => 1.01, #Text\Soundex.pm
3483 'Text::Tabs' => 98.112801, #Text\Tabs.pm
3484 'Text::Wrap' => 2001.09291, #Text\Wrap.pm
3485 'Thread' => '2.00', #Thread.pm
3486 'Thread::Queue' => '2.00', #Thread\Queue.pm
3487 'Thread::Semaphore' => 2.01, #Thread\Semaphore.pm
3488 'Thread::Signal' => '1.00', #Thread\Signal.pm
3489 'Thread::Specific' => '1.00', #Thread\Specific.pm
3490 'threads' => '1.00', #threads.pm
3491 'threads::shared' => 0.91, #threads\shared.pm
3492 'Tie::Array' => 1.03, #Tie\Array.pm
3493 'Tie::File' => 0.97, #Tie\File.pm
3494 'Tie::Handle' => 4.1, #Tie\Handle.pm
3495 'Tie::Hash' => '1.00', #Tie\Hash.pm
3496 'Tie::Memoize' => '1.0', #Tie\Memoize.pm
3497 'Tie::RefHash' => 1.31, #Tie\RefHash.pm
3498 'Tie::Scalar' => '1.00', #Tie\Scalar.pm
3499 'Tie::SubstrHash' => '1.00', #Tie\SubstrHash.pm
3500 'Time::gmtime' => 1.02, #Time\gmtime.pm
3501 'Time::HiRes' => 1.52, #Time\HiRes.pm
3502 'Time::Local' => 1.07, #Time\Local.pm
3503 'Time::localtime' => 1.02, #Time\localtime.pm
3504 'Time::tm' => '1.00', #Time\tm.pm
3505 'Unicode' => '4.0.0', # lib/unicore/version
3506 'Unicode::Collate' => '0.30', #Unicode\Collate.pm
3507 'Unicode::Normalize' => 0.25, #Unicode\Normalize.pm
3508 'Unicode::UCD' => 0.21, #Unicode\UCD.pm
3509 'UNIVERSAL' => 1.01, #UNIVERSAL.pm
3510 'User::grent' => '1.00', #User\grent.pm
3511 'User::pwent' => '1.00', #User\pwent.pm
3512 'utf8' => 1.02, #utf8.pm
3513 'vars' => 1.01, #vars.pm
3514 'VMS::DCLsym' => '1.02', #vms\ext\DCLsym\DCLsym.pm
3515 'VMS::Filespec' => '1.11', #vms\ext\Filespec.pm
3516 'VMS::Stdio' => '2.3', #vms\ext\Stdio\Stdio.pm
3517 'vmsish' => 1.01, #vmsish.pm
3518 'warnings' => 1.03, #warnings.pm
3519 'warnings::register' => '1.00', #warnings\register.pm
3520 'XS::APItest' => 0.02, #XS\APItest.pm
3521 'XS::Typemap' => 0.01, #XS\Typemap.pm
3522 'XSLoader' => 0.02, #XSLoader.pm
3525 5.008003 => {
3526 'AnyDBM_File' => '1.00', #lib/AnyDBM_File.pm
3527 'Attribute::Handlers' => '0.78', #lib/Attribute/Handlers.pm
3528 'attributes' => '0.06', #lib/attributes.pm
3529 'attrs' => '1.01', #lib/attrs.pm
3530 'AutoLoader' => '5.60', #lib/AutoLoader.pm
3531 'AutoSplit' => '1.04', #lib/AutoSplit.pm
3532 'autouse' => '1.03', #lib/autouse.pm
3533 'B' => '1.02', #lib/B.pm
3534 'base' => '2.04', #lib/base.pm
3535 'B::Asmdata' => '1.01', #lib/B/Asmdata.pm
3536 'B::Assembler' => '0.06', #lib/B/Assembler.pm
3537 'B::Bblock' => '1.02', #lib/B/Bblock.pm
3538 'B::Bytecode' => '1.01', #lib/B/Bytecode.pm
3539 'B::C' => '1.02', #lib/B/C.pm
3540 'B::CC' => '1.00', #lib/B/CC.pm
3541 'B::Concise' => '0.56', #lib/B/Concise.pm
3542 'B::Debug' => '1.01', #lib/B/Debug.pm
3543 'B::Deparse' => '0.64', #lib/B/Deparse.pm
3544 'B::Disassembler' => '1.03', #lib/B/Disassembler.pm
3545 'Benchmark' => '1.052', #lib/Benchmark.pm
3546 'bigint' => '0.04', #lib/bigint.pm
3547 'bignum' => '0.14', #lib/bignum.pm
3548 'bigrat' => '0.06', #lib/bigrat.pm
3549 'blib' => '1.02', #lib/blib.pm
3550 'B::Lint' => '1.02', #lib/B/Lint.pm
3551 'B::Showlex' => '1.00', #lib/B/Showlex.pm
3552 'B::Stackobj' => '1.00', #lib/B/Stackobj.pm
3553 'B::Stash' => '1.00', #lib/B/Stash.pm
3554 'B::Terse' => '1.02', #lib/B/Terse.pm
3555 'B::Xref' => '1.01', #lib/B/Xref.pm
3556 'ByteLoader' => '0.05', #lib/ByteLoader.pm
3557 'bytes' => '1.01', #lib/bytes.pm
3558 'Carp' => '1.01', #lib/Carp.pm
3559 'Carp::Heavy' => '1.01', #lib/Carp/Heavy.pm
3560 'CGI' => '3.01', #lib/CGI.pm
3561 'CGI::Apache' => '1.00', #lib/CGI/Apache.pm
3562 'CGI::Carp' => '1.27', #lib/CGI/Carp.pm
3563 'CGI::Cookie' => '1.24', #lib/CGI/Cookie.pm
3564 'CGI::Fast' => '1.05', #lib/CGI/Fast.pm
3565 'CGI::Pretty' => '1.08', #lib/CGI/Pretty.pm
3566 'CGI::Push' => '1.04', #lib/CGI/Push.pm
3567 'CGI::Switch' => '1.00', #lib/CGI/Switch.pm
3568 'CGI::Util' => '1.4', #lib/CGI/Util.pm
3569 'charnames' => '1.02', #lib/charnames.pm
3570 'Class::ISA' => '0.32', #lib/Class/ISA.pm
3571 'Class::Struct' => '0.63', #lib/Class/Struct.pm
3572 'Config' => undef, #lib/Config.pm
3573 'constant' => '1.04', #lib/constant.pm
3574 'CPAN' => '1.76_01', #lib/CPAN.pm
3575 'CPAN::FirstTime' => '1.60 ', #lib/CPAN/FirstTime.pm
3576 'CPAN::Nox' => '1.03', #lib/CPAN/Nox.pm
3577 'Cwd' => '2.12', #lib/Cwd.pm
3578 'Data::Dumper' => '2.121', #lib/Data/Dumper.pm
3579 'DB' => '1.0', #lib/DB.pm
3580 'DB_File' => '1.808', #lib/DB_File.pm
3581 'Devel::DProf' => '20030813.00', #lib/Devel/DProf.pm
3582 'Devel::Peek' => '1.01', #lib/Devel/Peek.pm
3583 'Devel::PPPort' => '2.011', #lib/Devel/PPPort.pm
3584 'Devel::SelfStubber' => '1.03', #lib/Devel/SelfStubber.pm
3585 'diagnostics' => '1.12', #lib/diagnostics.pm
3586 'Digest' => '1.05', #lib/Digest.pm
3587 'Digest::base' => '1.00', #lib/Digest/base.pm
3588 'Digest::MD5' => '2.33', #lib/Digest/MD5.pm
3589 'DirHandle' => '1.00', #lib/DirHandle.pm
3590 'Dumpvalue' => '1.11', #lib/Dumpvalue.pm
3591 'DynaLoader' => '1.04', #lib/DynaLoader.pm
3592 'Encode' => '1.99', #lib/Encode.pm
3593 'Encode::Alias' => '1.38', #lib/Encode/Alias.pm
3594 'Encode::Byte' => '1.23', #lib/Encode/Byte.pm
3595 'Encode::CJKConstants' => '1.02', #lib/Encode/CJKConstants.pm
3596 'Encode::CN' => '1.24', #lib/Encode/CN.pm
3597 'Encode::CN::HZ' => '1.05', #lib/Encode/CN/HZ.pm
3598 'Encode::Config' => '1.07', #lib/Encode/Config.pm
3599 'Encode::EBCDIC' => '1.21', #lib/Encode/EBCDIC.pm
3600 'Encode::Encoder' => '0.07', #lib/Encode/Encoder.pm
3601 'Encode::Encoding' => '1.33', #lib/Encode/Encoding.pm
3602 'Encode::Guess' => '1.09', #lib/Encode/Guess.pm
3603 'Encode::JP' => '1.25', #lib/Encode/JP.pm
3604 'Encode::JP::H2Z' => '1.02', #lib/Encode/JP/H2Z.pm
3605 'Encode::JP::JIS7' => '1.12', #lib/Encode/JP/JIS7.pm
3606 'Encode::KR' => '1.23', #lib/Encode/KR.pm
3607 'Encode::KR::2022_KR' => '1.06', #lib/Encode/KR/2022_KR.pm
3608 'Encode::MIME::Header' => '1.09', #lib/Encode/MIME/Header.pm
3609 'Encode::Symbol' => '1.22', #lib/Encode/Symbol.pm
3610 'Encode::TW' => '1.26', #lib/Encode/TW.pm
3611 'Encode::Unicode' => '1.40', #lib/Encode/Unicode.pm
3612 'Encode::Unicode::UTF7' => '0.02', #lib/Encode/Unicode/UTF7.pm
3613 'encoding' => '1.48', #lib/encoding.pm
3614 'English' => '1.01', #lib/English.pm
3615 'Env' => '1.00', #lib/Env.pm
3616 'Errno' => '1.09_00', #lib/Errno.pm
3617 'Exporter' => '5.57', #lib/Exporter.pm
3618 'Exporter::Heavy' => '5.567', #lib/Exporter/Heavy.pm
3619 'ExtUtils::Command' => '1.05', #lib/ExtUtils/Command.pm
3620 'ExtUtils::Command::MM' => '0.03', #lib/ExtUtils/Command/MM.pm
3621 'ExtUtils::Constant' => '0.14', #lib/ExtUtils/Constant.pm
3622 'ExtUtils::Embed' => '1.250601', #lib/ExtUtils/Embed.pm
3623 'ExtUtils::Install' => '1.32', #lib/ExtUtils/Install.pm
3624 'ExtUtils::Installed' => '0.08', #lib/ExtUtils/Installed.pm
3625 'ExtUtils::Liblist' => '1.01', #lib/ExtUtils/Liblist.pm
3626 'ExtUtils::Liblist::Kid'=> '1.3', #lib/ExtUtils/Liblist/Kid.pm
3627 'ExtUtils::MakeMaker' => '6.17', #lib/ExtUtils/MakeMaker.pm
3628 'ExtUtils::MakeMaker::bytes'=> '0.01', #lib/ExtUtils/MakeMaker/bytes.pm
3629 'ExtUtils::MakeMaker::vmsish'=> '0.01', #lib/ExtUtils/MakeMaker/vmsish.pm
3630 'ExtUtils::Manifest' => '1.42', #lib/ExtUtils/Manifest.pm
3631 'ExtUtils::Miniperl' => undef, #lib/ExtUtils/Miniperl.pm
3632 'ExtUtils::Mkbootstrap' => '1.15', #lib/ExtUtils/Mkbootstrap.pm
3633 'ExtUtils::Mksymlists' => '1.19', #lib/ExtUtils/Mksymlists.pm
3634 'ExtUtils::MM' => '0.04', #lib/ExtUtils/MM.pm
3635 'ExtUtils::MM_Any' => '0.07', #lib/ExtUtils/MM_Any.pm
3636 'ExtUtils::MM_BeOS' => '1.04', #lib/ExtUtils/MM_BeOS.pm
3637 'ExtUtils::MM_Cygwin' => '1.06', #lib/ExtUtils/MM_Cygwin.pm
3638 'ExtUtils::MM_DOS' => '0.02', #lib/ExtUtils/MM_DOS.pm
3639 'ExtUtils::MM_MacOS' => '1.07', #lib/ExtUtils/MM_MacOS.pm
3640 'ExtUtils::MM_NW5' => '2.06', #lib/ExtUtils/MM_NW5.pm
3641 'ExtUtils::MM_OS2' => '1.04', #lib/ExtUtils/MM_OS2.pm
3642 'ExtUtils::MM_Unix' => '1.42', #lib/ExtUtils/MM_Unix.pm
3643 'ExtUtils::MM_UWIN' => '0.02', #lib/ExtUtils/MM_UWIN.pm
3644 'ExtUtils::MM_VMS' => '5.70', #lib/ExtUtils/MM_VMS.pm
3645 'ExtUtils::MM_Win32' => '1.09', #lib/ExtUtils/MM_Win32.pm
3646 'ExtUtils::MM_Win95' => '0.03', #lib/ExtUtils/MM_Win95.pm
3647 'ExtUtils::MY' => '0.01', #lib/ExtUtils/MY.pm
3648 'ExtUtils::Packlist' => '0.04', #lib/ExtUtils/Packlist.pm
3649 'ExtUtils::testlib' => '1.15', #lib/ExtUtils/testlib.pm
3650 'ExtUtils::XSSymSet' => '1.0', #vms/ext/XSSymSet.pm
3651 'Fatal' => '1.03', #lib/Fatal.pm
3652 'Fcntl' => '1.05', #lib/Fcntl.pm
3653 'fields' => '2.03', #lib/fields.pm
3654 'File::Basename' => '2.72', #lib/File/Basename.pm
3655 'FileCache' => '1.03', #lib/FileCache.pm
3656 'File::CheckTree' => '4.3', #lib/File/CheckTree.pm
3657 'File::Compare' => '1.1003', #lib/File/Compare.pm
3658 'File::Copy' => '2.07', #lib/File/Copy.pm
3659 'File::DosGlob' => '1.00', #lib/File/DosGlob.pm
3660 'File::Find' => '1.06', #lib/File/Find.pm
3661 'File::Glob' => '1.02', #lib/File/Glob.pm
3662 'FileHandle' => '2.01', #lib/FileHandle.pm
3663 'File::Path' => '1.06', #lib/File/Path.pm
3664 'File::Spec' => '0.87', #lib/File/Spec.pm
3665 'File::Spec::Cygwin' => '1.1', #lib/File/Spec/Cygwin.pm
3666 'File::Spec::Epoc' => '1.1', #lib/File/Spec/Epoc.pm
3667 'File::Spec::Functions' => '1.3', #lib/File/Spec/Functions.pm
3668 'File::Spec::Mac' => '1.4', #lib/File/Spec/Mac.pm
3669 'File::Spec::OS2' => '1.2', #lib/File/Spec/OS2.pm
3670 'File::Spec::Unix' => '1.5', #lib/File/Spec/Unix.pm
3671 'File::Spec::VMS' => '1.4', #lib/File/Spec/VMS.pm
3672 'File::Spec::Win32' => '1.4', #lib/File/Spec/Win32.pm
3673 'File::stat' => '1.00', #lib/File/stat.pm
3674 'File::Temp' => '0.14', #lib/File/Temp.pm
3675 'filetest' => '1.01', #lib/filetest.pm
3676 'Filter::Simple' => '0.78', #lib/Filter/Simple.pm
3677 'Filter::Util::Call' => '1.0601', #lib/Filter/Util/Call.pm
3678 'FindBin' => '1.44', #lib/FindBin.pm
3679 'GDBM_File' => '1.07', #lib/GDBM_File.pm
3680 'Getopt::Long' => '2.34', #lib/Getopt/Long.pm
3681 'Getopt::Std' => '1.05', #lib/Getopt/Std.pm
3682 'Hash::Util' => '0.05', #lib/Hash/Util.pm
3683 'I18N::Collate' => '1.00', #lib/I18N/Collate.pm
3684 'I18N::Langinfo' => '0.02', #lib/I18N/Langinfo.pm
3685 'I18N::LangTags' => '0.29', #lib/I18N/LangTags.pm
3686 'I18N::LangTags::List' => '0.29', #lib/I18N/LangTags/List.pm
3687 'if' => '0.03', #lib/if.pm
3688 'integer' => '1.00', #lib/integer.pm
3689 'IO' => '1.21', #lib/IO.pm
3690 'IO::Dir' => '1.04', #lib/IO/Dir.pm
3691 'IO::File' => '1.10', #lib/IO/File.pm
3692 'IO::Handle' => '1.23', #lib/IO/Handle.pm
3693 'IO::Pipe' => '1.122', #lib/IO/Pipe.pm
3694 'IO::Poll' => '0.06', #lib/IO/Poll.pm
3695 'IO::Seekable' => '1.09', #lib/IO/Seekable.pm
3696 'IO::Select' => '1.16', #lib/IO/Select.pm
3697 'IO::Socket' => '1.28', #lib/IO/Socket.pm
3698 'IO::Socket::INET' => '1.27', #lib/IO/Socket/INET.pm
3699 'IO::Socket::UNIX' => '1.21', #lib/IO/Socket/UNIX.pm
3700 'IPC::Msg' => '1.02', #lib/IPC/Msg.pm
3701 'IPC::Open2' => '1.01', #lib/IPC/Open2.pm
3702 'IPC::Open3' => '1.0105', #lib/IPC/Open3.pm
3703 'IPC::Semaphore' => '1.02', #lib/IPC/Semaphore.pm
3704 'IPC::SysV' => '1.04', #lib/IPC/SysV.pm
3705 'JNI' => '0.2', #jpl/JNI/JNI.pm
3706 'JPL::AutoLoader' => undef, #jpl/JPL/AutoLoader.pm
3707 'JPL::Class' => undef, #jpl/JPL/Class.pm
3708 'JPL::Compile' => undef, #jpl/JPL/Compile.pm
3709 'less' => '0.01', #lib/less.pm
3710 'lib' => '0.5565', #lib/lib.pm
3711 'List::Util' => '1.13', #lib/List/Util.pm
3712 'locale' => '1.00', #lib/locale.pm
3713 'Locale::Constants' => '2.01', #lib/Locale/Constants.pm
3714 'Locale::Country' => '2.61', #lib/Locale/Country.pm
3715 'Locale::Currency' => '2.21', #lib/Locale/Currency.pm
3716 'Locale::Language' => '2.21', #lib/Locale/Language.pm
3717 'Locale::Maketext' => '1.06', #lib/Locale/Maketext.pm
3718 'Locale::Maketext::GutsLoader'=> undef, #lib/Locale/Maketext/GutsLoader.pm
3719 'Locale::Maketext::Guts'=> undef, #lib/Locale/Maketext/Guts.pm
3720 'Locale::Script' => '2.21', #lib/Locale/Script.pm
3721 'Math::BigFloat' => '1.42', #lib/Math/BigFloat.pm
3722 'Math::BigFloat::Trace' => '0.01', #lib/Math/BigFloat/Trace.pm
3723 'Math::BigInt' => '1.68', #lib/Math/BigInt.pm
3724 'Math::BigInt::Calc' => '0.38', #lib/Math/BigInt/Calc.pm
3725 'Math::BigInt::CalcEmu' => '0.02', #lib/Math/BigInt/CalcEmu.pm
3726 'Math::BigInt::Trace' => '0.01', #lib/Math/BigInt/Trace.pm
3727 'Math::BigRat' => '0.10', #lib/Math/BigRat.pm
3728 'Math::Complex' => '1.34', #lib/Math/Complex.pm
3729 'Math::Trig' => '1.02', #lib/Math/Trig.pm
3730 'Memoize' => '1.01', #lib/Memoize.pm
3731 'Memoize::AnyDBM_File' => '0.65', #lib/Memoize/AnyDBM_File.pm
3732 'Memoize::Expire' => '1.00', #lib/Memoize/Expire.pm
3733 'Memoize::ExpireFile' => '1.01', #lib/Memoize/ExpireFile.pm
3734 'Memoize::ExpireTest' => '0.65', #lib/Memoize/ExpireTest.pm
3735 'Memoize::NDBM_File' => '0.65', #lib/Memoize/NDBM_File.pm
3736 'Memoize::SDBM_File' => '0.65', #lib/Memoize/SDBM_File.pm
3737 'Memoize::Storable' => '0.65', #lib/Memoize/Storable.pm
3738 'MIME::Base64' => '2.21', #lib/MIME/Base64.pm
3739 'MIME::QuotedPrint' => '2.21', #lib/MIME/QuotedPrint.pm
3740 'NDBM_File' => '1.05', #lib/NDBM_File.pm
3741 'Net::Cmd' => '2.24', #lib/Net/Cmd.pm
3742 'Net::Config' => '1.10', #lib/Net/Config.pm
3743 'Net::Domain' => '2.19', #lib/Net/Domain.pm
3744 'Net::FTP' => '2.72', #lib/Net/FTP.pm
3745 'Net::FTP::A' => '1.16', #lib/Net/FTP/A.pm
3746 'Net::FTP::dataconn' => '0.11', #lib/Net/FTP/dataconn.pm
3747 'Net::FTP::E' => '0.01', #lib/Net/FTP/E.pm
3748 'Net::FTP::I' => '1.12', #lib/Net/FTP/I.pm
3749 'Net::FTP::L' => '0.01', #lib/Net/FTP/L.pm
3750 'Net::hostent' => '1.01', #lib/Net/hostent.pm
3751 'Net::netent' => '1.00', #lib/Net/netent.pm
3752 'Net::Netrc' => '2.12', #lib/Net/Netrc.pm
3753 'Net::NNTP' => '2.22', #lib/Net/NNTP.pm
3754 'Net::Ping' => '2.31', #lib/Net/Ping.pm
3755 'Net::POP3' => '2.24', #lib/Net/POP3.pm
3756 'Net::protoent' => '1.00', #lib/Net/protoent.pm
3757 'Net::servent' => '1.01', #lib/Net/servent.pm
3758 'Net::SMTP' => '2.26', #lib/Net/SMTP.pm
3759 'Net::Time' => '2.09', #lib/Net/Time.pm
3760 'NEXT' => '0.60', #lib/NEXT.pm
3761 'O' => '1.00', #lib/O.pm
3762 'ODBM_File' => '1.04', #ext/ODBM_File/ODBM_File.pm
3763 'Opcode' => '1.05', #lib/Opcode.pm
3764 'open' => '1.02', #lib/open.pm
3765 'ops' => '1.00', #lib/ops.pm
3766 'OS2::DLL' => '1.02', #os2/OS2/REXX/DLL/DLL.pm
3767 'OS2::ExtAttr' => '0.02', #os2/OS2/ExtAttr/ExtAttr.pm
3768 'OS2::PrfDB' => '0.03', #os2/OS2/PrfDB/PrfDB.pm
3769 'OS2::Process' => '1.01', #os2/OS2/Process/Process.pm
3770 'OS2::REXX' => '1.02', #os2/OS2/REXX/REXX.pm
3771 'overload' => '1.01', #lib/overload.pm
3772 'PerlIO' => '1.03', #lib/PerlIO.pm
3773 'PerlIO::encoding' => '0.07', #lib/PerlIO/encoding.pm
3774 'PerlIO::scalar' => '0.02', #lib/PerlIO/scalar.pm
3775 'PerlIO::via' => '0.02', #lib/PerlIO/via.pm
3776 'PerlIO::via::QuotedPrint'=> '0.06', #lib/PerlIO/via/QuotedPrint.pm
3777 'Pod::Checker' => '1.41', #lib/Pod/Checker.pm
3778 'Pod::Find' => '0.24', #lib/Pod/Find.pm
3779 'Pod::Functions' => '1.02', #lib/Pod/Functions.pm
3780 'Pod::Html' => '1.0502', #lib/Pod/Html.pm
3781 'Pod::InputObjects' => '1.14', #lib/Pod/InputObjects.pm
3782 'Pod::LaTeX' => '0.55', #lib/Pod/LaTeX.pm
3783 'Pod::Man' => '1.37', #lib/Pod/Man.pm
3784 'Pod::ParseLink' => '1.06', #lib/Pod/ParseLink.pm
3785 'Pod::Parser' => '1.14', #lib/Pod/Parser.pm
3786 'Pod::ParseUtils' => '0.3', #lib/Pod/ParseUtils.pm
3787 'Pod::Perldoc' => '3.12', #lib/Pod/Perldoc.pm
3788 'Pod::Perldoc::BaseTo' => undef, #lib/Pod/Perldoc/BaseTo.pm
3789 'Pod::Perldoc::GetOptsOO'=> undef, #lib/Pod/Perldoc/GetOptsOO.pm
3790 'Pod::Perldoc::ToChecker'=> undef, #lib/Pod/Perldoc/ToChecker.pm
3791 'Pod::Perldoc::ToMan' => undef, #lib/Pod/Perldoc/ToMan.pm
3792 'Pod::Perldoc::ToNroff' => undef, #lib/Pod/Perldoc/ToNroff.pm
3793 'Pod::Perldoc::ToPod' => undef, #lib/Pod/Perldoc/ToPod.pm
3794 'Pod::Perldoc::ToRtf' => undef, #lib/Pod/Perldoc/ToRtf.pm
3795 'Pod::Perldoc::ToText' => undef, #lib/Pod/Perldoc/ToText.pm
3796 'Pod::Perldoc::ToTk' => 'undef', #lib/Pod/Perldoc/ToTk.pm
3797 'Pod::Perldoc::ToXml' => undef, #lib/Pod/Perldoc/ToXml.pm
3798 'Pod::Plainer' => '0.01', #lib/Pod/Plainer.pm
3799 'Pod::PlainText' => '2.02', #lib/Pod/PlainText.pm
3800 'Pod::Select' => '1.13', #lib/Pod/Select.pm
3801 'Pod::Text' => '2.21', #lib/Pod/Text.pm
3802 'Pod::Text::Color' => '1.04', #lib/Pod/Text/Color.pm
3803 'Pod::Text::Overstrike' => '1.1', #lib/Pod/Text/Overstrike.pm
3804 'Pod::Text::Termcap' => '1.11', #lib/Pod/Text/Termcap.pm
3805 'Pod::Usage' => '1.16', #lib/Pod/Usage.pm
3806 'POSIX' => '1.07', #lib/POSIX.pm
3807 're' => '0.04', #lib/re.pm
3808 'Safe' => '2.10', #lib/Safe.pm
3809 'Scalar::Util' => '1.13', #lib/Scalar/Util.pm
3810 'SDBM_File' => '1.04', #lib/SDBM_File.pm
3811 'Search::Dict' => '1.02', #lib/Search/Dict.pm
3812 'SelectSaver' => '1.00', #lib/SelectSaver.pm
3813 'SelfLoader' => '1.0904', #lib/SelfLoader.pm
3814 'Shell' => '0.5', #lib/Shell.pm
3815 'sigtrap' => '1.02', #lib/sigtrap.pm
3816 'Socket' => '1.76', #lib/Socket.pm
3817 'sort' => '1.02', #lib/sort.pm
3818 'Storable' => '2.09', #lib/Storable.pm
3819 'strict' => '1.03', #lib/strict.pm
3820 'subs' => '1.00', #lib/subs.pm
3821 'Switch' => '2.10', #lib/Switch.pm
3822 'Symbol' => '1.05', #lib/Symbol.pm
3823 'Sys::Hostname' => '1.11', #lib/Sys/Hostname.pm
3824 'Sys::Syslog' => '0.04', #lib/Sys/Syslog.pm
3825 'Term::ANSIColor' => '1.07', #lib/Term/ANSIColor.pm
3826 'Term::Cap' => '1.08', #lib/Term/Cap.pm
3827 'Term::Complete' => '1.401', #lib/Term/Complete.pm
3828 'Term::ReadLine' => '1.01', #lib/Term/ReadLine.pm
3829 'Test' => '1.24', #lib/Test.pm
3830 'Test::Builder' => '0.17', #lib/Test/Builder.pm
3831 'Test::Harness' => '2.40', #lib/Test/Harness.pm
3832 'Test::Harness::Assert' => '0.02', #lib/Test/Harness/Assert.pm
3833 'Test::Harness::Iterator'=> '0.02', #lib/Test/Harness/Iterator.pm
3834 'Test::Harness::Straps' => '0.19', #lib/Test/Harness/Straps.pm
3835 'Test::More' => '0.47', #lib/Test/More.pm
3836 'Test::Simple' => '0.47', #lib/Test/Simple.pm
3837 'Text::Abbrev' => '1.01', #lib/Text/Abbrev.pm
3838 'Text::Balanced' => '1.95', #lib/Text/Balanced.pm
3839 'Text::ParseWords' => '3.21', #lib/Text/ParseWords.pm
3840 'Text::Soundex' => '1.01', #lib/Text/Soundex.pm
3841 'Text::Tabs' => '98.112801', #lib/Text/Tabs.pm
3842 'Text::Wrap' => '2001.09291', #lib/Text/Wrap.pm
3843 'Thread' => '2.00', #lib/Thread.pm
3844 'Thread::Queue' => '2.00', #lib/Thread/Queue.pm
3845 'threads' => '1.01', #lib/threads.pm
3846 'Thread::Semaphore' => '2.01', #lib/Thread/Semaphore.pm
3847 'Thread::Signal' => '1.00', #./ext/Thread/Thread/Signal.pm
3848 'Thread::Specific' => '1.00', #./ext/Thread/Thread/Specific.pm
3849 'threads::shared' => '0.92', #lib/threads/shared.pm
3850 'Tie::Array' => '1.03', #lib/Tie/Array.pm
3851 'Tie::File' => '0.97', #lib/Tie/File.pm
3852 'Tie::Handle' => '4.1', #lib/Tie/Handle.pm
3853 'Tie::Hash' => '1.01', #lib/Tie/Hash.pm
3854 'Tie::Memoize' => '1.0', #lib/Tie/Memoize.pm
3855 'Tie::RefHash' => '1.31', #lib/Tie/RefHash.pm
3856 'Tie::Scalar' => '1.00', #lib/Tie/Scalar.pm
3857 'Tie::SubstrHash' => '1.00', #lib/Tie/SubstrHash.pm
3858 'Time::gmtime' => '1.02', #lib/Time/gmtime.pm
3859 'Time::HiRes' => '1.52', #lib/Time/HiRes.pm
3860 'Time::Local' => '1.07', #lib/Time/Local.pm
3861 'Time::localtime' => '1.02', #lib/Time/localtime.pm
3862 'Time::tm' => '1.00', #lib/Time/tm.pm
3863 'Unicode' => '4.0.0', # lib/unicore/version
3864 'Unicode::Collate' => '0.33', #lib/Unicode/Collate.pm
3865 'Unicode::Normalize' => '0.28', #lib/Unicode/Normalize.pm
3866 'Unicode::UCD' => '0.21', #lib/Unicode/UCD.pm
3867 'UNIVERSAL' => '1.01', #lib/UNIVERSAL.pm
3868 'User::grent' => '1.00', #lib/User/grent.pm
3869 'User::pwent' => '1.00', #lib/User/pwent.pm
3870 'utf8' => '1.02', #lib/utf8.pm
3871 'vars' => '1.01', #lib/vars.pm
3872 'VMS::DCLsym' => '1.02', #vms/ext/DCLsym/DCLsym.pm
3873 'VMS::Filespec' => '1.11', #vms/ext/Filespec.pm
3874 'VMS::Stdio' => '2.3', #vms/ext/Stdio/Stdio.pm
3875 'vmsish' => '1.01', #lib/vmsish.pm
3876 'warnings' => '1.03', #lib/warnings.pm
3877 'warnings::register' => '1.00', #lib/warnings/register.pm
3878 'XS::APItest' => '0.03', #lib/XS/APItest.pm
3879 'XSLoader' => '0.02', #lib/XSLoader.pm
3880 'XS::Typemap' => '0.01', #lib/XS/Typemap.pm
3883 5.009 => {
3884 'AnyDBM_File' => '1.00', #lib/AnyDBM_File.pm
3885 'assertions' => '0.01', #lib/assertions.pm
3886 'assertions::activate' => '0.01', #lib/assertions/activate.pm
3887 'Attribute::Handlers' => '0.78', #lib/Attribute/Handlers.pm
3888 'attributes' => '0.06', #lib/attributes.pm
3889 'attrs' => '1.01', #lib/attrs.pm
3890 'AutoLoader' => '5.60', #lib/AutoLoader.pm
3891 'AutoSplit' => '1.04', #lib/AutoSplit.pm
3892 'autouse' => '1.03', #lib/autouse.pm
3893 'B' => '1.03', #lib/B.pm
3894 'B::Asmdata' => '1.01', #lib/B/Asmdata.pm
3895 'B::Assembler' => '0.06', #lib/B/Assembler.pm
3896 'B::Bblock' => '1.02', #lib/B/Bblock.pm
3897 'B::Bytecode' => '1.01', #lib/B/Bytecode.pm
3898 'B::C' => '1.03', #lib/B/C.pm
3899 'B::CC' => '1.00', #lib/B/CC.pm
3900 'B::Concise' => '0.57', #lib/B/Concise.pm
3901 'B::Debug' => '1.01', #lib/B/Debug.pm
3902 'B::Deparse' => '0.65', #lib/B/Deparse.pm
3903 'B::Disassembler' => '1.03', #lib/B/Disassembler.pm
3904 'B::Lint' => '1.02', #lib/B/Lint.pm
3905 'B::Showlex' => '1.00', #lib/B/Showlex.pm
3906 'B::Stackobj' => '1.00', #lib/B/Stackobj.pm
3907 'B::Stash' => '1.00', #lib/B/Stash.pm
3908 'B::Terse' => '1.02', #lib/B/Terse.pm
3909 'B::Xref' => '1.01', #lib/B/Xref.pm
3910 'base' => '2.03', #lib/base.pm
3911 'Benchmark' => '1.051', #lib/Benchmark.pm
3912 'bigint' => '0.04', #lib/bigint.pm
3913 'bignum' => '0.14', #lib/bignum.pm
3914 'bigrat' => '0.06', #lib/bigrat.pm
3915 'blib' => '1.02', #lib/blib.pm
3916 'ByteLoader' => '0.05', #lib/ByteLoader.pm
3917 'bytes' => '1.01', #lib/bytes.pm
3918 'Carp' => '1.01', #lib/Carp.pm
3919 'Carp::Heavy' => '1.01', #lib/Carp/Heavy.pm
3920 'CGI' => '3.00', #lib/CGI.pm
3921 'CGI::Apache' => '1.00', #lib/CGI/Apache.pm
3922 'CGI::Carp' => '1.26', #lib/CGI/Carp.pm
3923 'CGI::Cookie' => '1.24', #lib/CGI/Cookie.pm
3924 'CGI::Fast' => '1.041', #lib/CGI/Fast.pm
3925 'CGI::Pretty' => '1.07_00', #lib/CGI/Pretty.pm
3926 'CGI::Push' => '1.04', #lib/CGI/Push.pm
3927 'CGI::Switch' => '1.00', #lib/CGI/Switch.pm
3928 'CGI::Util' => '1.31', #lib/CGI/Util.pm
3929 'charnames' => '1.02', #lib/charnames.pm
3930 'Class::ISA' => '0.32', #lib/Class/ISA.pm
3931 'Class::Struct' => '0.63', #lib/Class/Struct.pm
3932 'Config' => undef, #lib/Config.pm
3933 'constant' => '1.04', #lib/constant.pm
3934 'CPAN' => '1.76_01', #lib/CPAN.pm
3935 'CPAN::FirstTime' => '1.60 ', #lib/CPAN/FirstTime.pm
3936 'CPAN::Nox' => '1.03', #lib/CPAN/Nox.pm
3937 'Cwd' => '2.08', #lib/Cwd.pm
3938 'Data::Dumper' => '2.121', #lib/Data/Dumper.pm
3939 'DB' => '1.0', #lib/DB.pm
3940 'DB_File' => '1.806', #lib/DB_File.pm
3941 'Devel::DProf' => '20030813.00', #lib/Devel/DProf.pm
3942 'Devel::Peek' => '1.01', #lib/Devel/Peek.pm
3943 'Devel::PPPort' => '2.008', #lib/Devel/PPPort.pm
3944 'Devel::SelfStubber' => '1.03', #lib/Devel/SelfStubber.pm
3945 'diagnostics' => '1.11', #lib/diagnostics.pm
3946 'Digest' => '1.02', #lib/Digest.pm
3947 'Digest::MD5' => '2.30', #lib/Digest/MD5.pm
3948 'DirHandle' => '1.00', #lib/DirHandle.pm
3949 'Dumpvalue' => '1.11', #lib/Dumpvalue.pm
3950 'DynaLoader' => '1.04', #lib/DynaLoader.pm
3951 'Encode' => '1.9801', #lib/Encode.pm
3952 'Encode::Alias' => '1.38', #lib/Encode/Alias.pm
3953 'Encode::Byte' => '1.23', #lib/Encode/Byte.pm
3954 'Encode::CJKConstants' => '1.02', #lib/Encode/CJKConstants.pm
3955 'Encode::CN' => '1.24', #lib/Encode/CN.pm
3956 'Encode::CN::HZ' => '1.05', #lib/Encode/CN/HZ.pm
3957 'Encode::Config' => '1.07', #lib/Encode/Config.pm
3958 'Encode::EBCDIC' => '1.21', #lib/Encode/EBCDIC.pm
3959 'Encode::Encoder' => '0.07', #lib/Encode/Encoder.pm
3960 'Encode::Encoding' => '1.33', #lib/Encode/Encoding.pm
3961 'Encode::Guess' => '1.09', #lib/Encode/Guess.pm
3962 'Encode::JP' => '1.25', #lib/Encode/JP.pm
3963 'Encode::JP::H2Z' => '1.02', #lib/Encode/JP/H2Z.pm
3964 'Encode::JP::JIS7' => '1.12', #lib/Encode/JP/JIS7.pm
3965 'Encode::KR' => '1.23', #lib/Encode/KR.pm
3966 'Encode::KR::2022_KR' => '1.06', #lib/Encode/KR/2022_KR.pm
3967 'Encode::MIME::Header' => '1.09', #lib/Encode/MIME/Header.pm
3968 'Encode::Symbol' => '1.22', #lib/Encode/Symbol.pm
3969 'Encode::TW' => '1.26', #lib/Encode/TW.pm
3970 'Encode::Unicode' => '1.40', #lib/Encode/Unicode.pm
3971 'Encode::Unicode::UTF7' => '0.02', #lib/Encode/Unicode/UTF7.pm
3972 'encoding' => '1.47', #lib/encoding.pm
3973 'English' => '1.02', #lib/English.pm
3974 'Env' => '1.00', #lib/Env.pm
3975 'Errno' => '1.09_00', #lib/Errno.pm
3976 'Exporter' => '5.567', #lib/Exporter.pm
3977 'Exporter::Heavy' => '5.567', #lib/Exporter/Heavy.pm
3978 'ExtUtils::Command' => '1.05', #lib/ExtUtils/Command.pm
3979 'ExtUtils::Command::MM' => '0.03', #lib/ExtUtils/Command/MM.pm
3980 'ExtUtils::Constant' => '0.14', #lib/ExtUtils/Constant.pm
3981 'ExtUtils::Embed' => '1.250601', #lib/ExtUtils/Embed.pm
3982 'ExtUtils::Install' => '1.32', #lib/ExtUtils/Install.pm
3983 'ExtUtils::Installed' => '0.08', #lib/ExtUtils/Installed.pm
3984 'ExtUtils::Liblist' => '1.01', #lib/ExtUtils/Liblist.pm
3985 'ExtUtils::Liblist::Kid'=> '1.3', #lib/ExtUtils/Liblist/Kid.pm
3986 'ExtUtils::MakeMaker' => '6.17', #lib/ExtUtils/MakeMaker.pm
3987 'ExtUtils::MakeMaker::bytes'=> '0.01', #lib/ExtUtils/MakeMaker/bytes.pm
3988 'ExtUtils::MakeMaker::vmsish'=> '0.01', #lib/ExtUtils/MakeMaker/vmsish.pm
3989 'ExtUtils::Manifest' => '1.42', #lib/ExtUtils/Manifest.pm
3990 'ExtUtils::Miniperl' => undef, #lib/ExtUtils/Miniperl.pm
3991 'ExtUtils::Mkbootstrap' => '1.15', #lib/ExtUtils/Mkbootstrap.pm
3992 'ExtUtils::Mksymlists' => '1.19', #lib/ExtUtils/Mksymlists.pm
3993 'ExtUtils::MM' => '0.04', #lib/ExtUtils/MM.pm
3994 'ExtUtils::MM_Any' => '0.07', #lib/ExtUtils/MM_Any.pm
3995 'ExtUtils::MM_BeOS' => '1.04', #lib/ExtUtils/MM_BeOS.pm
3996 'ExtUtils::MM_Cygwin' => '1.06', #lib/ExtUtils/MM_Cygwin.pm
3997 'ExtUtils::MM_DOS' => '0.02', #lib/ExtUtils/MM_DOS.pm
3998 'ExtUtils::MM_MacOS' => '1.07', #lib/ExtUtils/MM_MacOS.pm
3999 'ExtUtils::MM_NW5' => '2.06', #lib/ExtUtils/MM_NW5.pm
4000 'ExtUtils::MM_OS2' => '1.04', #lib/ExtUtils/MM_OS2.pm
4001 'ExtUtils::MM_Unix' => '1.42', #lib/ExtUtils/MM_Unix.pm
4002 'ExtUtils::MM_UWIN' => '0.02', #lib/ExtUtils/MM_UWIN.pm
4003 'ExtUtils::MM_VMS' => '5.70', #lib/ExtUtils/MM_VMS.pm
4004 'ExtUtils::MM_Win32' => '1.09', #lib/ExtUtils/MM_Win32.pm
4005 'ExtUtils::MM_Win95' => '0.03', #lib/ExtUtils/MM_Win95.pm
4006 'ExtUtils::MY' => '0.01', #lib/ExtUtils/MY.pm
4007 'ExtUtils::Packlist' => '0.04', #lib/ExtUtils/Packlist.pm
4008 'ExtUtils::testlib' => '1.15', #lib/ExtUtils/testlib.pm
4009 'ExtUtils::XSSymSet' => '1.0', #vms/ext/XSSymSet.pm
4010 'Fatal' => '1.04', #lib/Fatal.pm
4011 'Fcntl' => '1.05', #lib/Fcntl.pm
4012 'fields' => '2.03', #lib/fields.pm
4013 'File::Basename' => '2.72', #lib/File/Basename.pm
4014 'File::CheckTree' => '4.2', #lib/File/CheckTree.pm
4015 'File::Compare' => '1.1003', #lib/File/Compare.pm
4016 'File::Copy' => '2.06', #lib/File/Copy.pm
4017 'File::DosGlob' => '1.00', #lib/File/DosGlob.pm
4018 'File::Find' => '1.05', #lib/File/Find.pm
4019 'File::Glob' => '1.02', #lib/File/Glob.pm
4020 'File::Path' => '1.06', #lib/File/Path.pm
4021 'File::Spec' => '0.86', #lib/File/Spec.pm
4022 'File::Spec::Cygwin' => '1.1', #lib/File/Spec/Cygwin.pm
4023 'File::Spec::Epoc' => '1.1', #lib/File/Spec/Epoc.pm
4024 'File::Spec::Functions' => '1.3', #lib/File/Spec/Functions.pm
4025 'File::Spec::Mac' => '1.4', #lib/File/Spec/Mac.pm
4026 'File::Spec::OS2' => '1.2', #lib/File/Spec/OS2.pm
4027 'File::Spec::Unix' => '1.5', #lib/File/Spec/Unix.pm
4028 'File::Spec::VMS' => '1.4', #lib/File/Spec/VMS.pm
4029 'File::Spec::Win32' => '1.4', #lib/File/Spec/Win32.pm
4030 'File::stat' => '1.00', #lib/File/stat.pm
4031 'File::Temp' => '0.14', #lib/File/Temp.pm
4032 'FileCache' => '1.03', #lib/FileCache.pm
4033 'FileHandle' => '2.01', #lib/FileHandle.pm
4034 'filetest' => '1.01', #lib/filetest.pm
4035 'Filter::Simple' => '0.78', #lib/Filter/Simple.pm
4036 'Filter::Util::Call' => '1.0601', #lib/Filter/Util/Call.pm
4037 'FindBin' => '1.43', #lib/FindBin.pm
4038 'GDBM_File' => '1.07', #ext/GDBM_File/GDBM_File.pm
4039 'Getopt::Long' => '2.34', #lib/Getopt/Long.pm
4040 'Getopt::Std' => '1.04', #lib/Getopt/Std.pm
4041 'Hash::Util' => '0.05', #lib/Hash/Util.pm
4042 'I18N::Collate' => '1.00', #lib/I18N/Collate.pm
4043 'I18N::Langinfo' => '0.02', #lib/I18N/Langinfo.pm
4044 'I18N::LangTags' => '0.29', #lib/I18N/LangTags.pm
4045 'I18N::LangTags::List' => '0.29', #lib/I18N/LangTags/List.pm
4046 'if' => '0.03', #lib/if.pm
4047 'integer' => '1.00', #lib/integer.pm
4048 'IO' => '1.21', #lib/IO.pm
4049 'IO::Dir' => '1.04', #lib/IO/Dir.pm
4050 'IO::File' => '1.10', #lib/IO/File.pm
4051 'IO::Handle' => '1.23', #lib/IO/Handle.pm
4052 'IO::Pipe' => '1.122', #lib/IO/Pipe.pm
4053 'IO::Poll' => '0.06', #lib/IO/Poll.pm
4054 'IO::Seekable' => '1.09', #lib/IO/Seekable.pm
4055 'IO::Select' => '1.16', #lib/IO/Select.pm
4056 'IO::Socket' => '1.28', #lib/IO/Socket.pm
4057 'IO::Socket::INET' => '1.27', #lib/IO/Socket/INET.pm
4058 'IO::Socket::UNIX' => '1.21', #lib/IO/Socket/UNIX.pm
4059 'IPC::Msg' => '1.02', #lib/IPC/Msg.pm
4060 'IPC::Open2' => '1.01', #lib/IPC/Open2.pm
4061 'IPC::Open3' => '1.0105', #lib/IPC/Open3.pm
4062 'IPC::Semaphore' => '1.02', #lib/IPC/Semaphore.pm
4063 'IPC::SysV' => '1.04', #lib/IPC/SysV.pm
4064 'JNI' => '0.2', #jpl/JNI/JNI.pm
4065 'JPL::AutoLoader' => undef, #jpl/JPL/AutoLoader.pm
4066 'JPL::Class' => undef, #jpl/JPL/Class.pm
4067 'JPL::Compile' => undef, #jpl/JPL/Compile.pm
4068 'less' => '0.01', #lib/less.pm
4069 'lib' => '0.5565', #lib/lib.pm
4070 'List::Util' => '1.13', #lib/List/Util.pm
4071 'locale' => '1.00', #lib/locale.pm
4072 'Locale::Constants' => '2.01', #lib/Locale/Constants.pm
4073 'Locale::Country' => '2.61', #lib/Locale/Country.pm
4074 'Locale::Currency' => '2.21', #lib/Locale/Currency.pm
4075 'Locale::Language' => '2.21', #lib/Locale/Language.pm
4076 'Locale::Maketext' => '1.06', #lib/Locale/Maketext.pm
4077 'Locale::Maketext::Guts'=> undef, #lib/Locale/Maketext/Guts.pm
4078 'Locale::Maketext::GutsLoader'=> undef, #lib/Locale/Maketext/GutsLoader.pm
4079 'Locale::Script' => '2.21', #lib/Locale/Script.pm
4080 'Math::BigFloat' => '1.40', #lib/Math/BigFloat.pm
4081 'Math::BigFloat::Trace' => '0.01', #lib/Math/BigFloat/Trace.pm
4082 'Math::BigInt' => '1.66', #lib/Math/BigInt.pm
4083 'Math::BigInt::Calc' => '0.36', #lib/Math/BigInt/Calc.pm
4084 'Math::BigInt::Scalar' => '0.11', #lib/Math/BigInt/Scalar.pm
4085 'Math::BigInt::Trace' => '0.01', #lib/Math/BigInt/Trace.pm
4086 'Math::BigRat' => '0.10', #lib/Math/BigRat.pm
4087 'Math::Complex' => '1.34', #lib/Math/Complex.pm
4088 'Math::Trig' => '1.02', #lib/Math/Trig.pm
4089 'Memoize' => '1.01', #lib/Memoize.pm
4090 'Memoize::AnyDBM_File' => '0.65', #lib/Memoize/AnyDBM_File.pm
4091 'Memoize::Expire' => '1.00', #lib/Memoize/Expire.pm
4092 'Memoize::ExpireFile' => '1.01', #lib/Memoize/ExpireFile.pm
4093 'Memoize::ExpireTest' => '0.65', #lib/Memoize/ExpireTest.pm
4094 'Memoize::NDBM_File' => '0.65', #lib/Memoize/NDBM_File.pm
4095 'Memoize::SDBM_File' => '0.65', #lib/Memoize/SDBM_File.pm
4096 'Memoize::Storable' => '0.65', #lib/Memoize/Storable.pm
4097 'MIME::Base64' => '2.21', #lib/MIME/Base64.pm
4098 'MIME::QuotedPrint' => '2.21', #lib/MIME/QuotedPrint.pm
4099 'NDBM_File' => '1.05', #ext/NDBM_File/NDBM_File.pm
4100 'Net::Cmd' => '2.24', #lib/Net/Cmd.pm
4101 'Net::Config' => '1.10', #lib/Net/Config.pm
4102 'Net::Domain' => '2.19', #lib/Net/Domain.pm
4103 'Net::FTP' => '2.72', #lib/Net/FTP.pm
4104 'Net::FTP::A' => '1.16', #lib/Net/FTP/A.pm
4105 'Net::FTP::dataconn' => '0.11', #lib/Net/FTP/dataconn.pm
4106 'Net::FTP::E' => '0.01', #lib/Net/FTP/E.pm
4107 'Net::FTP::I' => '1.12', #lib/Net/FTP/I.pm
4108 'Net::FTP::L' => '0.01', #lib/Net/FTP/L.pm
4109 'Net::hostent' => '1.01', #lib/Net/hostent.pm
4110 'Net::netent' => '1.00', #lib/Net/netent.pm
4111 'Net::Netrc' => '2.12', #lib/Net/Netrc.pm
4112 'Net::NNTP' => '2.22', #lib/Net/NNTP.pm
4113 'Net::Ping' => '2.31', #lib/Net/Ping.pm
4114 'Net::POP3' => '2.24', #lib/Net/POP3.pm
4115 'Net::protoent' => '1.00', #lib/Net/protoent.pm
4116 'Net::servent' => '1.01', #lib/Net/servent.pm
4117 'Net::SMTP' => '2.26', #lib/Net/SMTP.pm
4118 'Net::Time' => '2.09', #lib/Net/Time.pm
4119 'NEXT' => '0.60', #lib/NEXT.pm
4120 'O' => '1.00', #lib/O.pm
4121 'ODBM_File' => '1.04', #ext/ODBM_File/ODBM_File.pm
4122 'Opcode' => '1.06', #lib/Opcode.pm
4123 'open' => '1.02', #lib/open.pm
4124 'ops' => '1.00', #lib/ops.pm
4125 'OS2::DLL' => '1.02', #os2/OS2/REXX/DLL/DLL.pm
4126 'OS2::ExtAttr' => '0.02', #os2/OS2/ExtAttr/ExtAttr.pm
4127 'OS2::PrfDB' => '0.03', #os2/OS2/PrfDB/PrfDB.pm
4128 'OS2::Process' => '1.01', #os2/OS2/Process/Process.pm
4129 'OS2::REXX' => '1.02', #os2/OS2/REXX/REXX.pm
4130 'overload' => '1.02', #lib/overload.pm
4131 'PerlIO' => '1.02', #lib/PerlIO.pm
4132 'PerlIO::encoding' => '0.07', #lib/PerlIO/encoding.pm
4133 'PerlIO::scalar' => '0.02', #lib/PerlIO/scalar.pm
4134 'PerlIO::via' => '0.02', #lib/PerlIO/via.pm
4135 'PerlIO::via::QuotedPrint'=> '0.05', #lib/PerlIO/via/QuotedPrint.pm
4136 'Pod::Checker' => '1.41', #lib/Pod/Checker.pm
4137 'Pod::Find' => '0.24', #lib/Pod/Find.pm
4138 'Pod::Functions' => '1.02', #lib/Pod/Functions.pm
4139 'Pod::Html' => '1.0501', #lib/Pod/Html.pm
4140 'Pod::InputObjects' => '1.14', #lib/Pod/InputObjects.pm
4141 'Pod::LaTeX' => '0.55', #lib/Pod/LaTeX.pm
4142 'Pod::Man' => '1.37', #lib/Pod/Man.pm
4143 'Pod::ParseLink' => '1.06', #lib/Pod/ParseLink.pm
4144 'Pod::Parser' => '1.13', #lib/Pod/Parser.pm
4145 'Pod::ParseUtils' => '0.3', #lib/Pod/ParseUtils.pm
4146 'Pod::Perldoc' => '3.11', #lib/Pod/Perldoc.pm
4147 'Pod::Perldoc::BaseTo' => undef, #lib/Pod/Perldoc/BaseTo.pm
4148 'Pod::Perldoc::GetOptsOO'=> undef, #lib/Pod/Perldoc/GetOptsOO.pm
4149 'Pod::Perldoc::ToChecker'=> undef, #lib/Pod/Perldoc/ToChecker.pm
4150 'Pod::Perldoc::ToMan' => undef, #lib/Pod/Perldoc/ToMan.pm
4151 'Pod::Perldoc::ToNroff' => undef, #lib/Pod/Perldoc/ToNroff.pm
4152 'Pod::Perldoc::ToPod' => undef, #lib/Pod/Perldoc/ToPod.pm
4153 'Pod::Perldoc::ToRtf' => undef, #lib/Pod/Perldoc/ToRtf.pm
4154 'Pod::Perldoc::ToText' => undef, #lib/Pod/Perldoc/ToText.pm
4155 'Pod::Perldoc::ToTk' => 'undef', #lib/Pod/Perldoc/ToTk.pm
4156 'Pod::Perldoc::ToXml' => undef, #lib/Pod/Perldoc/ToXml.pm
4157 'Pod::Plainer' => '0.01', #lib/Pod/Plainer.pm
4158 'Pod::PlainText' => '2.01', #lib/Pod/PlainText.pm
4159 'Pod::Select' => '1.13', #lib/Pod/Select.pm
4160 'Pod::Text' => '2.21', #lib/Pod/Text.pm
4161 'Pod::Text::Color' => '1.04', #lib/Pod/Text/Color.pm
4162 'Pod::Text::Overstrike' => '1.1', #lib/Pod/Text/Overstrike.pm
4163 'Pod::Text::Termcap' => '1.11', #lib/Pod/Text/Termcap.pm
4164 'Pod::Usage' => '1.16', #lib/Pod/Usage.pm
4165 'POSIX' => '1.06', #lib/POSIX.pm
4166 're' => '0.04', #lib/re.pm
4167 'Safe' => '2.10', #lib/Safe.pm
4168 'Scalar::Util' => '1.13', #lib/Scalar/Util.pm
4169 'SDBM_File' => '1.04', #lib/SDBM_File.pm
4170 'Search::Dict' => '1.02', #lib/Search/Dict.pm
4171 'SelectSaver' => '1.00', #lib/SelectSaver.pm
4172 'SelfLoader' => '1.0904', #lib/SelfLoader.pm
4173 'Shell' => '0.5', #lib/Shell.pm
4174 'sigtrap' => '1.02', #lib/sigtrap.pm
4175 'Socket' => '1.76', #lib/Socket.pm
4176 'sort' => '1.02', #lib/sort.pm
4177 'Storable' => '2.08', #lib/Storable.pm
4178 'strict' => '1.03', #lib/strict.pm
4179 'subs' => '1.00', #lib/subs.pm
4180 'Switch' => '2.10', #lib/Switch.pm
4181 'Symbol' => '1.05', #lib/Symbol.pm
4182 'Sys::Hostname' => '1.11', #lib/Sys/Hostname.pm
4183 'Sys::Syslog' => '0.04', #lib/Sys/Syslog.pm
4184 'Term::ANSIColor' => '1.07', #lib/Term/ANSIColor.pm
4185 'Term::Cap' => '1.08', #lib/Term/Cap.pm
4186 'Term::Complete' => '1.401', #lib/Term/Complete.pm
4187 'Term::ReadLine' => '1.01', #lib/Term/ReadLine.pm
4188 'Test' => '1.24', #lib/Test.pm
4189 'Test::Builder' => '0.17', #lib/Test/Builder.pm
4190 'Test::Harness' => '2.30', #lib/Test/Harness.pm
4191 'Test::Harness::Assert' => '0.01', #lib/Test/Harness/Assert.pm
4192 'Test::Harness::Iterator'=> '0.01', #lib/Test/Harness/Iterator.pm
4193 'Test::Harness::Straps' => '0.15', #lib/Test/Harness/Straps.pm
4194 'Test::More' => '0.47', #lib/Test/More.pm
4195 'Test::Simple' => '0.47', #lib/Test/Simple.pm
4196 'Text::Abbrev' => '1.01', #lib/Text/Abbrev.pm
4197 'Text::Balanced' => '1.95', #lib/Text/Balanced.pm
4198 'Text::ParseWords' => '3.21', #lib/Text/ParseWords.pm
4199 'Text::Soundex' => '1.01', #lib/Text/Soundex.pm
4200 'Text::Tabs' => '98.112801', #lib/Text/Tabs.pm
4201 'Text::Wrap' => '2001.09291', #lib/Text/Wrap.pm
4202 'Thread' => '2.00', #lib/Thread.pm
4203 'Thread::Queue' => '2.00', #lib/Thread/Queue.pm
4204 'Thread::Semaphore' => '2.01', #lib/Thread/Semaphore.pm
4205 'Thread::Signal' => '1.00', #./ext/Thread/Thread/Signal.pm
4206 'Thread::Specific' => '1.00', #./ext/Thread/Thread/Specific.pm
4207 'threads' => '1.00', #lib/threads.pm
4208 'threads::shared' => '0.91', #lib/threads/shared.pm
4209 'Tie::Array' => '1.03', #lib/Tie/Array.pm
4210 'Tie::File' => '0.97', #lib/Tie/File.pm
4211 'Tie::Handle' => '4.1', #lib/Tie/Handle.pm
4212 'Tie::Hash' => '1.00', #lib/Tie/Hash.pm
4213 'Tie::Memoize' => '1.0', #lib/Tie/Memoize.pm
4214 'Tie::RefHash' => '1.31', #lib/Tie/RefHash.pm
4215 'Tie::Scalar' => '1.00', #lib/Tie/Scalar.pm
4216 'Tie::SubstrHash' => '1.00', #lib/Tie/SubstrHash.pm
4217 'Time::gmtime' => '1.02', #lib/Time/gmtime.pm
4218 'Time::HiRes' => '1.51', #lib/Time/HiRes.pm
4219 'Time::Local' => '1.07', #lib/Time/Local.pm
4220 'Time::localtime' => '1.02', #lib/Time/localtime.pm
4221 'Time::tm' => '1.00', #lib/Time/tm.pm
4222 'Unicode' => '4.0.0', #lib/unicore/version
4223 'Unicode::Collate' => '0.28', #lib/Unicode/Collate.pm
4224 'Unicode::Normalize' => '0.23', #lib/Unicode/Normalize.pm
4225 'Unicode::UCD' => '0.21', #lib/Unicode/UCD.pm
4226 'UNIVERSAL' => '1.01', #lib/UNIVERSAL.pm
4227 'User::grent' => '1.00', #lib/User/grent.pm
4228 'User::pwent' => '1.00', #lib/User/pwent.pm
4229 'utf8' => '1.02', #lib/utf8.pm
4230 'vars' => '1.01', #lib/vars.pm
4231 'version' => '0.29', #lib/version.pm
4232 'VMS::DCLsym' => '1.02', #vms/ext/DCLsym/DCLsym.pm
4233 'VMS::Filespec' => '1.11', #vms/ext/Filespec.pm
4234 'VMS::Stdio' => '2.3', #vms/ext/Stdio/Stdio.pm
4235 'vmsish' => '1.01', #lib/vmsish.pm
4236 'warnings' => '1.03', #lib/warnings.pm
4237 'warnings::register' => '1.00', #lib/warnings/register.pm
4238 'XS::APItest' => '0.02', #lib/XS/APItest.pm
4239 'XS::Typemap' => '0.01', #lib/XS/Typemap.pm
4240 'XSLoader' => '0.03', #lib/XSLoader.pm
4243 5.009001 => {
4244 'AnyDBM_File' => '1.00', #lib/AnyDBM_File.pm
4245 'assertions' => '0.01', #lib/assertions.pm
4246 'assertions::activate' => '0.01', #lib/assertions/activate.pm
4247 'Attribute::Handlers' => '0.78_01', #lib/Attribute/Handlers.pm
4248 'attributes' => '0.06', #lib/attributes.pm
4249 'attrs' => '1.01', #lib/attrs.pm
4250 'AutoLoader' => '5.60', #lib/AutoLoader.pm
4251 'AutoSplit' => '1.04', #lib/AutoSplit.pm
4252 'autouse' => '1.03', #lib/autouse.pm
4253 'B' => '1.05', #lib/B.pm
4254 'base' => '2.04', #lib/base.pm
4255 'B::Asmdata' => '1.01', #lib/B/Asmdata.pm
4256 'B::Assembler' => '0.06', #lib/B/Assembler.pm
4257 'B::Bblock' => '1.02', #lib/B/Bblock.pm
4258 'B::Bytecode' => '1.01', #lib/B/Bytecode.pm
4259 'B::C' => '1.04', #lib/B/C.pm
4260 'B::CC' => '1.00', #lib/B/CC.pm
4261 'B::Concise' => '0.59', #lib/B/Concise.pm
4262 'B::Debug' => '1.02', #lib/B/Debug.pm
4263 'B::Deparse' => '0.65', #lib/B/Deparse.pm
4264 'B::Disassembler' => '1.03', #lib/B/Disassembler.pm
4265 'Benchmark' => '1.06', #lib/Benchmark.pm
4266 'bigint' => '0.05', #lib/bigint.pm
4267 'bignum' => '0.15', #lib/bignum.pm
4268 'bigrat' => '0.06', #lib/bigrat.pm
4269 'blib' => '1.02', #lib/blib.pm
4270 'B::Lint' => '1.02', #lib/B/Lint.pm
4271 'B::Showlex' => '1.00', #lib/B/Showlex.pm
4272 'B::Stackobj' => '1.00', #lib/B/Stackobj.pm
4273 'B::Stash' => '1.00', #lib/B/Stash.pm
4274 'B::Terse' => '1.02', #lib/B/Terse.pm
4275 'B::Xref' => '1.01', #lib/B/Xref.pm
4276 'ByteLoader' => '0.05', #lib/ByteLoader.pm
4277 'bytes' => '1.01', #lib/bytes.pm
4278 'Carp' => '1.02', #lib/Carp.pm
4279 'Carp::Heavy' => '1.01', #lib/Carp/Heavy.pm
4280 'CGI' => '3.04', #lib/CGI.pm
4281 'CGI::Apache' => '1.00', #lib/CGI/Apache.pm
4282 'CGI::Carp' => '1.27', #lib/CGI/Carp.pm
4283 'CGI::Cookie' => '1.24', #lib/CGI/Cookie.pm
4284 'CGI::Fast' => '1.05', #lib/CGI/Fast.pm
4285 'CGI::Pretty' => '1.08', #lib/CGI/Pretty.pm
4286 'CGI::Push' => '1.04', #lib/CGI/Push.pm
4287 'CGI::Switch' => '1.00', #lib/CGI/Switch.pm
4288 'CGI::Util' => '1.4', #lib/CGI/Util.pm
4289 'charnames' => '1.03', #lib/charnames.pm
4290 'Class::ISA' => '0.32', #lib/Class/ISA.pm
4291 'Class::Struct' => '0.63', #lib/Class/Struct.pm
4292 'Config' => undef, #lib/Config.pm
4293 'constant' => '1.04', #lib/constant.pm
4294 'CPAN' => '1.76_01', #lib/CPAN.pm
4295 'CPAN::FirstTime' => '1.60 ', #lib/CPAN/FirstTime.pm
4296 'CPAN::Nox' => '1.03', #lib/CPAN/Nox.pm
4297 'Cwd' => '2.17', #lib/Cwd.pm
4298 'Data::Dumper' => '2.121', #lib/Data/Dumper.pm
4299 'DB' => '1.0', #lib/DB.pm
4300 'DB_File' => '1.808_01', #lib/DB_File.pm
4301 'DBM_Filter' => '0.01', #lib/DBM_Filter.pm
4302 'DBM_Filter::compress' => '0.01', #lib/DBM_Filter/compress.pm
4303 'DBM_Filter::encode' => '0.01', #lib/DBM_Filter/encode.pm
4304 'DBM_Filter::int32' => '0.01', #lib/DBM_Filter/int32.pm
4305 'DBM_Filter::null' => '0.01', #lib/DBM_Filter/null.pm
4306 'DBM_Filter::utf8' => '0.01', #lib/DBM_Filter/utf8.pm
4307 'Devel::DProf' => '20030813.00', #lib/Devel/DProf.pm
4308 'Devel::Peek' => '1.01', #lib/Devel/Peek.pm
4309 'Devel::PPPort' => '2.011_01', #lib/Devel/PPPort.pm
4310 'Devel::SelfStubber' => '1.03', #lib/Devel/SelfStubber.pm
4311 'diagnostics' => '1.12', #lib/diagnostics.pm
4312 'Digest' => '1.05', #lib/Digest.pm
4313 'Digest::base' => '1.00', #lib/Digest/base.pm
4314 'Digest::MD5' => '2.33', #lib/Digest/MD5.pm
4315 'DirHandle' => '1.00', #lib/DirHandle.pm
4316 'Dumpvalue' => '1.11', #lib/Dumpvalue.pm
4317 'DynaLoader' => '1.04', #lib/DynaLoader.pm
4318 'Encode' => '1.99_01', #lib/Encode.pm
4319 'Encode::Alias' => '1.38', #lib/Encode/Alias.pm
4320 'Encode::Byte' => '1.23', #lib/Encode/Byte.pm
4321 'Encode::CJKConstants' => '1.02', #lib/Encode/CJKConstants.pm
4322 'Encode::CN' => '1.24', #lib/Encode/CN.pm
4323 'Encode::CN::HZ' => '1.0501', #lib/Encode/CN/HZ.pm
4324 'Encode::Config' => '1.07', #lib/Encode/Config.pm
4325 'Encode::EBCDIC' => '1.21', #lib/Encode/EBCDIC.pm
4326 'Encode::Encoder' => '0.07', #lib/Encode/Encoder.pm
4327 'Encode::Encoding' => '1.33', #lib/Encode/Encoding.pm
4328 'Encode::Guess' => '1.09', #lib/Encode/Guess.pm
4329 'Encode::JP' => '1.25', #lib/Encode/JP.pm
4330 'Encode::JP::H2Z' => '1.02', #lib/Encode/JP/H2Z.pm
4331 'Encode::JP::JIS7' => '1.12', #lib/Encode/JP/JIS7.pm
4332 'Encode::KR' => '1.23', #lib/Encode/KR.pm
4333 'Encode::KR::2022_KR' => '1.06', #lib/Encode/KR/2022_KR.pm
4334 'Encode::MIME::Header' => '1.09', #lib/Encode/MIME/Header.pm
4335 'Encode::Symbol' => '1.22', #lib/Encode/Symbol.pm
4336 'Encode::TW' => '1.26', #lib/Encode/TW.pm
4337 'Encode::Unicode' => '1.40', #lib/Encode/Unicode.pm
4338 'Encode::Unicode::UTF7' => '0.02', #lib/Encode/Unicode/UTF7.pm
4339 'encoding' => '1.48', #lib/encoding.pm
4340 'English' => '1.02', #lib/English.pm
4341 'Env' => '1.00', #lib/Env.pm
4342 'Errno' => '1.09_00', #lib/Errno.pm
4343 'Exporter' => '5.58', #lib/Exporter.pm
4344 'Exporter::Heavy' => '5.567', #lib/Exporter/Heavy.pm
4345 'ExtUtils::Command' => '1.07', #lib/ExtUtils/Command.pm
4346 'ExtUtils::Command::MM' => '0.03', #lib/ExtUtils/Command/MM.pm
4347 'ExtUtils::Constant' => '0.14', #lib/ExtUtils/Constant.pm
4348 'ExtUtils::Embed' => '1.250601', #lib/ExtUtils/Embed.pm
4349 'ExtUtils::Install' => '1.32', #lib/ExtUtils/Install.pm
4350 'ExtUtils::Installed' => '0.08', #lib/ExtUtils/Installed.pm
4351 'ExtUtils::Liblist' => '1.01', #lib/ExtUtils/Liblist.pm
4352 'ExtUtils::Liblist::Kid'=> '1.3', #lib/ExtUtils/Liblist/Kid.pm
4353 'ExtUtils::MakeMaker' => '6.21_02', #lib/ExtUtils/MakeMaker.pm
4354 'ExtUtils::MakeMaker::bytes'=> '0.01', #lib/ExtUtils/MakeMaker/bytes.pm
4355 'ExtUtils::MakeMaker::vmsish'=> '0.01', #lib/ExtUtils/MakeMaker/vmsish.pm
4356 'ExtUtils::Manifest' => '1.43', #lib/ExtUtils/Manifest.pm
4357 'ExtUtils::Miniperl' => undef, #lib/ExtUtils/Miniperl.pm
4358 'ExtUtils::Mkbootstrap' => '1.15', #lib/ExtUtils/Mkbootstrap.pm
4359 'ExtUtils::Mksymlists' => '1.19', #lib/ExtUtils/Mksymlists.pm
4360 'ExtUtils::MM' => '0.04', #lib/ExtUtils/MM.pm
4361 'ExtUtils::MM_Any' => '0.0901', #lib/ExtUtils/MM_Any.pm
4362 'ExtUtils::MM_BeOS' => '1.04', #lib/ExtUtils/MM_BeOS.pm
4363 'ExtUtils::MM_Cygwin' => '1.07', #lib/ExtUtils/MM_Cygwin.pm
4364 'ExtUtils::MM_DOS' => '0.02', #lib/ExtUtils/MM_DOS.pm
4365 'ExtUtils::MM_MacOS' => '1.07', #lib/ExtUtils/MM_MacOS.pm
4366 'ExtUtils::MM_NW5' => '2.07_01', #lib/ExtUtils/MM_NW5.pm
4367 'ExtUtils::MM_OS2' => '1.04', #lib/ExtUtils/MM_OS2.pm
4368 'ExtUtils::MM_Unix' => '1.45_01', #lib/ExtUtils/MM_Unix.pm
4369 'ExtUtils::MM_UWIN' => '0.02', #lib/ExtUtils/MM_UWIN.pm
4370 'ExtUtils::MM_VMS' => '5.71_01', #lib/ExtUtils/MM_VMS.pm
4371 'ExtUtils::MM_Win32' => '1.10_01', #lib/ExtUtils/MM_Win32.pm
4372 'ExtUtils::MM_Win95' => '0.03', #lib/ExtUtils/MM_Win95.pm
4373 'ExtUtils::MY' => '0.01', #lib/ExtUtils/MY.pm
4374 'ExtUtils::Packlist' => '0.04', #lib/ExtUtils/Packlist.pm
4375 'ExtUtils::testlib' => '1.15', #lib/ExtUtils/testlib.pm
4376 'ExtUtils::XSSymSet' => '1.0', #vms/ext/XSSymSet.pm
4377 'Fatal' => '1.04', #lib/Fatal.pm
4378 'Fcntl' => '1.05', #lib/Fcntl.pm
4379 'fields' => '2.03', #lib/fields.pm
4380 'File::Basename' => '2.72', #lib/File/Basename.pm
4381 'FileCache' => '1.03', #lib/FileCache.pm
4382 'File::CheckTree' => '4.3', #lib/File/CheckTree.pm
4383 'File::Compare' => '1.1003', #lib/File/Compare.pm
4384 'File::Copy' => '2.07', #lib/File/Copy.pm
4385 'File::DosGlob' => '1.00', #lib/File/DosGlob.pm
4386 'File::Find' => '1.07', #lib/File/Find.pm
4387 'File::Glob' => '1.02', #lib/File/Glob.pm
4388 'FileHandle' => '2.01', #lib/FileHandle.pm
4389 'File::Path' => '1.06', #lib/File/Path.pm
4390 'File::Spec' => '0.87', #lib/File/Spec.pm
4391 'File::Spec::Cygwin' => '1.1', #lib/File/Spec/Cygwin.pm
4392 'File::Spec::Epoc' => '1.1', #lib/File/Spec/Epoc.pm
4393 'File::Spec::Functions' => '1.3', #lib/File/Spec/Functions.pm
4394 'File::Spec::Mac' => '1.4', #lib/File/Spec/Mac.pm
4395 'File::Spec::OS2' => '1.2', #lib/File/Spec/OS2.pm
4396 'File::Spec::Unix' => '1.5', #lib/File/Spec/Unix.pm
4397 'File::Spec::VMS' => '1.4', #lib/File/Spec/VMS.pm
4398 'File::Spec::Win32' => '1.4', #lib/File/Spec/Win32.pm
4399 'File::stat' => '1.00', #lib/File/stat.pm
4400 'File::Temp' => '0.14', #lib/File/Temp.pm
4401 'filetest' => '1.01', #lib/filetest.pm
4402 'Filter::Simple' => '0.78', #lib/Filter/Simple.pm
4403 'Filter::Util::Call' => '1.0601', #lib/Filter/Util/Call.pm
4404 'FindBin' => '1.44', #lib/FindBin.pm
4405 'GDBM_File' => '1.07', #lib/GDBM_File.pm
4406 'Getopt::Long' => '2.3401', #lib/Getopt/Long.pm
4407 'Getopt::Std' => '1.05', #lib/Getopt/Std.pm
4408 'Hash::Util' => '0.05', #lib/Hash/Util.pm
4409 'I18N::Collate' => '1.00', #lib/I18N/Collate.pm
4410 'I18N::Langinfo' => '0.02', #lib/I18N/Langinfo.pm
4411 'I18N::LangTags' => '0.29', #lib/I18N/LangTags.pm
4412 'I18N::LangTags::List' => '0.29', #lib/I18N/LangTags/List.pm
4413 'if' => '0.0401', #lib/if.pm
4414 'integer' => '1.00', #lib/integer.pm
4415 'IO' => '1.21', #lib/IO.pm
4416 'IO::Dir' => '1.04', #lib/IO/Dir.pm
4417 'IO::File' => '1.10', #lib/IO/File.pm
4418 'IO::Handle' => '1.23', #lib/IO/Handle.pm
4419 'IO::Pipe' => '1.122', #lib/IO/Pipe.pm
4420 'IO::Poll' => '0.06', #lib/IO/Poll.pm
4421 'IO::Seekable' => '1.09', #lib/IO/Seekable.pm
4422 'IO::Select' => '1.16', #lib/IO/Select.pm
4423 'IO::Socket' => '1.28', #lib/IO/Socket.pm
4424 'IO::Socket::INET' => '1.27', #lib/IO/Socket/INET.pm
4425 'IO::Socket::UNIX' => '1.21', #lib/IO/Socket/UNIX.pm
4426 'IPC::Msg' => '1.02', #lib/IPC/Msg.pm
4427 'IPC::Open2' => '1.01', #lib/IPC/Open2.pm
4428 'IPC::Open3' => '1.0105', #lib/IPC/Open3.pm
4429 'IPC::Semaphore' => '1.02', #lib/IPC/Semaphore.pm
4430 'IPC::SysV' => '1.04', #lib/IPC/SysV.pm
4431 'JNI' => '0.2', #jpl/JNI/JNI.pm
4432 'JPL::AutoLoader' => undef, #jpl/JPL/AutoLoader.pm
4433 'JPL::Class' => undef, #jpl/JPL/Class.pm
4434 'JPL::Compile' => undef, #jpl/JPL/Compile.pm
4435 'less' => '0.01', #lib/less.pm
4436 'lib' => '0.5565', #lib/lib.pm
4437 'List::Util' => '1.13', #lib/List/Util.pm
4438 'locale' => '1.00', #lib/locale.pm
4439 'Locale::Constants' => '2.01', #lib/Locale/Constants.pm
4440 'Locale::Country' => '2.61', #lib/Locale/Country.pm
4441 'Locale::Currency' => '2.21', #lib/Locale/Currency.pm
4442 'Locale::Language' => '2.21', #lib/Locale/Language.pm
4443 'Locale::Maketext' => '1.08', #lib/Locale/Maketext.pm
4444 'Locale::Maketext::GutsLoader'=> undef, #lib/Locale/Maketext/GutsLoader.pm
4445 'Locale::Maketext::Guts'=> undef, #lib/Locale/Maketext/Guts.pm
4446 'Locale::Script' => '2.21', #lib/Locale/Script.pm
4447 'Math::BigFloat' => '1.44', #lib/Math/BigFloat.pm
4448 'Math::BigFloat::Trace' => '0.01', #lib/Math/BigFloat/Trace.pm
4449 'Math::BigInt' => '1.70', #lib/Math/BigInt.pm
4450 'Math::BigInt::Calc' => '0.40', #lib/Math/BigInt/Calc.pm
4451 'Math::BigInt::CalcEmu' => '0.04', #lib/Math/BigInt/CalcEmu.pm
4452 'Math::BigInt::Trace' => '0.01', #lib/Math/BigInt/Trace.pm
4453 'Math::BigRat' => '0.12', #lib/Math/BigRat.pm
4454 'Math::Complex' => '1.34', #lib/Math/Complex.pm
4455 'Math::Trig' => '1.02', #lib/Math/Trig.pm
4456 'Memoize' => '1.01_01', #lib/Memoize.pm
4457 'Memoize::AnyDBM_File' => '0.65', #lib/Memoize/AnyDBM_File.pm
4458 'Memoize::Expire' => '1.00', #lib/Memoize/Expire.pm
4459 'Memoize::ExpireFile' => '1.01', #lib/Memoize/ExpireFile.pm
4460 'Memoize::ExpireTest' => '0.65', #lib/Memoize/ExpireTest.pm
4461 'Memoize::NDBM_File' => '0.65', #lib/Memoize/NDBM_File.pm
4462 'Memoize::SDBM_File' => '0.65', #lib/Memoize/SDBM_File.pm
4463 'Memoize::Storable' => '0.65', #lib/Memoize/Storable.pm
4464 'MIME::Base64' => '3.00_01', #lib/MIME/Base64.pm
4465 'MIME::QuotedPrint' => '3.00', #lib/MIME/QuotedPrint.pm
4466 'NDBM_File' => '1.05', #lib/NDBM_File.pm
4467 'Net::Cmd' => '2.24', #lib/Net/Cmd.pm
4468 'Net::Config' => '1.10', #lib/Net/Config.pm
4469 'Net::Domain' => '2.19', #lib/Net/Domain.pm
4470 'Net::FTP' => '2.72', #lib/Net/FTP.pm
4471 'Net::FTP::A' => '1.16', #lib/Net/FTP/A.pm
4472 'Net::FTP::dataconn' => '0.11', #lib/Net/FTP/dataconn.pm
4473 'Net::FTP::E' => '0.01', #lib/Net/FTP/E.pm
4474 'Net::FTP::I' => '1.12', #lib/Net/FTP/I.pm
4475 'Net::FTP::L' => '0.01', #lib/Net/FTP/L.pm
4476 'Net::hostent' => '1.01', #lib/Net/hostent.pm
4477 'Net::netent' => '1.00', #lib/Net/netent.pm
4478 'Net::Netrc' => '2.12', #lib/Net/Netrc.pm
4479 'Net::NNTP' => '2.22', #lib/Net/NNTP.pm
4480 'Net::Ping' => '2.31', #lib/Net/Ping.pm
4481 'Net::POP3' => '2.24', #lib/Net/POP3.pm
4482 'Net::protoent' => '1.00', #lib/Net/protoent.pm
4483 'Net::servent' => '1.01', #lib/Net/servent.pm
4484 'Net::SMTP' => '2.26', #lib/Net/SMTP.pm
4485 'Net::Time' => '2.09', #lib/Net/Time.pm
4486 'NEXT' => '0.60', #lib/NEXT.pm
4487 'O' => '1.00', #lib/O.pm
4488 'ODBM_File' => '1.04', #ext/ODBM_File/ODBM_File.pm
4489 'Opcode' => '1.06', #lib/Opcode.pm
4490 'open' => '1.02', #lib/open.pm
4491 'ops' => '1.00', #lib/ops.pm
4492 'OS2::DLL' => '1.02', #os2/OS2/REXX/DLL/DLL.pm
4493 'OS2::ExtAttr' => '0.02', #os2/OS2/ExtAttr/ExtAttr.pm
4494 'OS2::PrfDB' => '0.03', #os2/OS2/PrfDB/PrfDB.pm
4495 'OS2::Process' => '1.01', #os2/OS2/Process/Process.pm
4496 'OS2::REXX' => '1.02', #os2/OS2/REXX/REXX.pm
4497 'overload' => '1.02', #lib/overload.pm
4498 'PerlIO' => '1.03', #lib/PerlIO.pm
4499 'PerlIO::encoding' => '0.07', #lib/PerlIO/encoding.pm
4500 'PerlIO::scalar' => '0.02', #lib/PerlIO/scalar.pm
4501 'PerlIO::via' => '0.02', #lib/PerlIO/via.pm
4502 'PerlIO::via::QuotedPrint'=> '0.06', #lib/PerlIO/via/QuotedPrint.pm
4503 'Pod::Checker' => '1.41', #lib/Pod/Checker.pm
4504 'Pod::Find' => '0.24', #lib/Pod/Find.pm
4505 'Pod::Functions' => '1.02', #lib/Pod/Functions.pm
4506 'Pod::Html' => '1.0502', #lib/Pod/Html.pm
4507 'Pod::InputObjects' => '1.14', #lib/Pod/InputObjects.pm
4508 'Pod::LaTeX' => '0.55', #lib/Pod/LaTeX.pm
4509 'Pod::Man' => '1.37', #lib/Pod/Man.pm
4510 'Pod::ParseLink' => '1.06', #lib/Pod/ParseLink.pm
4511 'Pod::Parser' => '1.14', #lib/Pod/Parser.pm
4512 'Pod::ParseUtils' => '0.3', #lib/Pod/ParseUtils.pm
4513 'Pod::Perldoc' => '3.12', #lib/Pod/Perldoc.pm
4514 'Pod::Perldoc::BaseTo' => undef, #lib/Pod/Perldoc/BaseTo.pm
4515 'Pod::Perldoc::GetOptsOO'=> undef, #lib/Pod/Perldoc/GetOptsOO.pm
4516 'Pod::Perldoc::ToChecker'=> undef, #lib/Pod/Perldoc/ToChecker.pm
4517 'Pod::Perldoc::ToMan' => undef, #lib/Pod/Perldoc/ToMan.pm
4518 'Pod::Perldoc::ToNroff' => undef, #lib/Pod/Perldoc/ToNroff.pm
4519 'Pod::Perldoc::ToPod' => undef, #lib/Pod/Perldoc/ToPod.pm
4520 'Pod::Perldoc::ToRtf' => undef, #lib/Pod/Perldoc/ToRtf.pm
4521 'Pod::Perldoc::ToText' => undef, #lib/Pod/Perldoc/ToText.pm
4522 'Pod::Perldoc::ToTk' => 'undef', #lib/Pod/Perldoc/ToTk.pm
4523 'Pod::Perldoc::ToXml' => undef, #lib/Pod/Perldoc/ToXml.pm
4524 'Pod::Plainer' => '0.01', #lib/Pod/Plainer.pm
4525 'Pod::PlainText' => '2.02', #lib/Pod/PlainText.pm
4526 'Pod::Select' => '1.13', #lib/Pod/Select.pm
4527 'Pod::Text' => '2.21', #lib/Pod/Text.pm
4528 'Pod::Text::Color' => '1.04', #lib/Pod/Text/Color.pm
4529 'Pod::Text::Overstrike' => '1.1', #lib/Pod/Text/Overstrike.pm
4530 'Pod::Text::Termcap' => '1.11', #lib/Pod/Text/Termcap.pm
4531 'Pod::Usage' => '1.16', #lib/Pod/Usage.pm
4532 'POSIX' => '1.07', #lib/POSIX.pm
4533 're' => '0.04', #lib/re.pm
4534 'Safe' => '2.10', #lib/Safe.pm
4535 'Scalar::Util' => '1.13', #lib/Scalar/Util.pm
4536 'SDBM_File' => '1.04', #lib/SDBM_File.pm
4537 'Search::Dict' => '1.02', #lib/Search/Dict.pm
4538 'SelectSaver' => '1.00', #lib/SelectSaver.pm
4539 'SelfLoader' => '1.0904', #lib/SelfLoader.pm
4540 'Shell' => '0.5.2', #lib/Shell.pm
4541 'sigtrap' => '1.02', #lib/sigtrap.pm
4542 'Socket' => '1.77', #lib/Socket.pm
4543 'sort' => '1.02', #lib/sort.pm
4544 'Storable' => '2.11', #lib/Storable.pm
4545 'strict' => '1.03', #lib/strict.pm
4546 'subs' => '1.00', #lib/subs.pm
4547 'Switch' => '2.10', #lib/Switch.pm
4548 'Symbol' => '1.05', #lib/Symbol.pm
4549 'Sys::Hostname' => '1.11', #lib/Sys/Hostname.pm
4550 'Sys::Syslog' => '0.05', #lib/Sys/Syslog.pm
4551 'Term::ANSIColor' => '1.08', #lib/Term/ANSIColor.pm
4552 'Term::Cap' => '1.08', #lib/Term/Cap.pm
4553 'Term::Complete' => '1.401', #lib/Term/Complete.pm
4554 'Term::ReadLine' => '1.01', #lib/Term/ReadLine.pm
4555 'Test' => '1.24', #lib/Test.pm
4556 'Test::Builder' => '0.17', #lib/Test/Builder.pm
4557 'Test::Harness' => '2.40', #lib/Test/Harness.pm
4558 'Test::Harness::Assert' => '0.02', #lib/Test/Harness/Assert.pm
4559 'Test::Harness::Iterator'=> '0.02', #lib/Test/Harness/Iterator.pm
4560 'Test::Harness::Straps' => '0.19', #lib/Test/Harness/Straps.pm
4561 'Test::More' => '0.47', #lib/Test/More.pm
4562 'Test::Simple' => '0.47', #lib/Test/Simple.pm
4563 'Text::Abbrev' => '1.01', #lib/Text/Abbrev.pm
4564 'Text::Balanced' => '1.95', #lib/Text/Balanced.pm
4565 'Text::ParseWords' => '3.21', #lib/Text/ParseWords.pm
4566 'Text::Soundex' => '1.01', #lib/Text/Soundex.pm
4567 'Text::Tabs' => '98.112801', #lib/Text/Tabs.pm
4568 'Text::Wrap' => '2001.09291', #lib/Text/Wrap.pm
4569 'Thread' => '2.00', #lib/Thread.pm
4570 'Thread::Queue' => '2.00', #lib/Thread/Queue.pm
4571 'threads' => '1.02', #lib/threads.pm
4572 'Thread::Semaphore' => '2.01', #lib/Thread/Semaphore.pm
4573 'Thread::Signal' => '1.00', #./ext/Thread/Thread/Signal.pm
4574 'Thread::Specific' => '1.00', #./ext/Thread/Thread/Specific.pm
4575 'threads::shared' => '0.92', #lib/threads/shared.pm
4576 'Tie::Array' => '1.03', #lib/Tie/Array.pm
4577 'Tie::File' => '0.97', #lib/Tie/File.pm
4578 'Tie::Handle' => '4.1', #lib/Tie/Handle.pm
4579 'Tie::Hash' => '1.01', #lib/Tie/Hash.pm
4580 'Tie::Memoize' => '1.0', #lib/Tie/Memoize.pm
4581 'Tie::RefHash' => '1.31', #lib/Tie/RefHash.pm
4582 'Tie::Scalar' => '1.00', #lib/Tie/Scalar.pm
4583 'Tie::SubstrHash' => '1.00', #lib/Tie/SubstrHash.pm
4584 'Time::gmtime' => '1.02', #lib/Time/gmtime.pm
4585 'Time::HiRes' => '1.56', #lib/Time/HiRes.pm
4586 'Time::Local' => '1.07_94', #lib/Time/Local.pm
4587 'Time::localtime' => '1.02', #lib/Time/localtime.pm
4588 'Time::tm' => '1.00', #lib/Time/tm.pm
4589 'Unicode' => '4.0.0', #lib/unicore/version
4590 'Unicode::Collate' => '0.33', #lib/Unicode/Collate.pm
4591 'Unicode::Normalize' => '0.28', #lib/Unicode/Normalize.pm
4592 'Unicode::UCD' => '0.21', #lib/Unicode/UCD.pm
4593 'UNIVERSAL' => '1.02', #lib/UNIVERSAL.pm
4594 'User::grent' => '1.00', #lib/User/grent.pm
4595 'User::pwent' => '1.00', #lib/User/pwent.pm
4596 'utf8' => '1.02', #lib/utf8.pm
4597 'vars' => '1.01', #lib/vars.pm
4598 'version' => '0.36', #lib/version.pm
4599 'VMS::DCLsym' => '1.02', #vms/ext/DCLsym/DCLsym.pm
4600 'VMS::Filespec' => '1.11', #vms/ext/Filespec.pm
4601 'VMS::Stdio' => '2.3', #vms/ext/Stdio/Stdio.pm
4602 'vmsish' => '1.01', #lib/vmsish.pm
4603 'warnings' => '1.03', #lib/warnings.pm
4604 'warnings::register' => '1.00', #lib/warnings/register.pm
4605 'XS::APItest' => '0.03', #lib/XS/APItest.pm
4606 'XSLoader' => '0.03', #lib/XSLoader.pm
4607 'XS::Typemap' => '0.01', #lib/XS/Typemap.pm
4610 5.008004 => {
4611 'AnyDBM_File' => '1.00', #lib/AnyDBM_File.pm
4612 'attributes' => '0.06', #lib/attributes.pm
4613 'AutoLoader' => '5.60', #lib/AutoLoader.pm
4614 'AutoSplit' => '1.04', #lib/AutoSplit.pm
4615 'autouse' => '1.03', #lib/autouse.pm
4616 'base' => '2.05', #lib/base.pm
4617 'Benchmark' => '1.06', #lib/Benchmark.pm
4618 'bigint' => '0.05', #lib/bigint.pm
4619 'bignum' => '0.15', #lib/bignum.pm
4620 'bigrat' => '0.06', #lib/bigrat.pm
4621 'blib' => '1.02', #lib/blib.pm
4622 'bytes' => '1.01', #lib/bytes.pm
4623 'Carp' => '1.02', #lib/Carp.pm
4624 'CGI' => '3.04', #lib/CGI.pm
4625 'charnames' => '1.03', #lib/charnames.pm
4626 'constant' => '1.04', #lib/constant.pm
4627 'CPAN' => '1.76_01', #lib/CPAN.pm
4628 'Cwd' => '2.17', #lib/Cwd.pm
4629 'DBM_Filter' => '0.01', #lib/DBM_Filter.pm
4630 'DB' => '1.0', #lib/DB.pm
4631 'diagnostics' => '1.12', #lib/diagnostics.pm
4632 'Digest' => '1.06', #lib/Digest.pm
4633 'DirHandle' => '1.00', #lib/DirHandle.pm
4634 'Dumpvalue' => '1.11', #lib/Dumpvalue.pm
4635 'English' => '1.01', #lib/English.pm
4636 'Env' => '1.00', #lib/Env.pm
4637 'Exporter' => '5.58', #lib/Exporter.pm
4638 'Fatal' => '1.03', #lib/Fatal.pm
4639 'fields' => '2.03', #lib/fields.pm
4640 'FileCache' => '1.03', #lib/FileCache.pm
4641 'FileHandle' => '2.01', #lib/FileHandle.pm
4642 'filetest' => '1.01', #lib/filetest.pm
4643 'FindBin' => '1.44', #lib/FindBin.pm
4644 'if' => '0.03', #lib/if.pm
4645 'integer' => '1.00', #lib/integer.pm
4646 'less' => '0.01', #lib/less.pm
4647 'locale' => '1.00', #lib/locale.pm
4648 'Memoize' => '1.01', #lib/Memoize.pm
4649 'NEXT' => '0.60', #lib/NEXT.pm
4650 'open' => '1.03', #lib/open.pm
4651 'overload' => '1.01', #lib/overload.pm
4652 'PerlIO' => '1.03', #lib/PerlIO.pm
4653 'SelectSaver' => '1.00', #lib/SelectSaver.pm
4654 'SelfLoader' => '1.0904', #lib/SelfLoader.pm
4655 'Shell' => '0.5.2', #lib/Shell.pm
4656 'sigtrap' => '1.02', #lib/sigtrap.pm
4657 'sort' => '1.02', #lib/sort.pm
4658 'strict' => '1.03', #lib/strict.pm
4659 'subs' => '1.00', #lib/subs.pm
4660 'Switch' => '2.10', #lib/Switch.pm
4661 'Symbol' => '1.05', #lib/Symbol.pm
4662 'Test' => '1.24', #lib/Test.pm
4663 'Thread' => '2.00', #lib/Thread.pm
4664 'Unicode' => '4.0.1', # lib/unicore/version
4665 'UNIVERSAL' => '1.01', #lib/UNIVERSAL.pm
4666 'utf8' => '1.03', #lib/utf8.pm
4667 'vars' => '1.01', #lib/vars.pm
4668 'vmsish' => '1.01', #lib/vmsish.pm
4669 'warnings' => '1.03', #lib/warnings.pm
4670 'Config' => undef, #lib/Config.pm
4671 'lib' => '0.5565', #lib/lib.pm
4672 're' => '0.04', #lib/re.pm
4673 'XSLoader' => '0.02', #lib/XSLoader.pm
4674 'DynaLoader' => '1.05', #lib/DynaLoader.pm
4675 'attrs' => '1.01', #lib/attrs.pm
4676 'B' => '1.02', #lib/B.pm
4677 'O' => '1.00', #lib/O.pm
4678 'ByteLoader' => '0.05', #lib/ByteLoader.pm
4679 'DB_File' => '1.808', #lib/DB_File.pm
4680 'Encode' => '1.99_01', #lib/Encode.pm
4681 'encoding' => '1.48', #lib/encoding.pm
4682 'Fcntl' => '1.05', #lib/Fcntl.pm
4683 'GDBM_File' => '1.07', #lib/GDBM_File.pm
4684 'IO' => '1.21', #lib/IO.pm
4685 'NDBM_File' => '1.05', #lib/NDBM_File.pm
4686 'Safe' => '2.10', #lib/Safe.pm
4687 'Opcode' => '1.05', #lib/Opcode.pm
4688 'ops' => '1.00', #lib/ops.pm
4689 'POSIX' => '1.08', #lib/POSIX.pm
4690 'SDBM_File' => '1.04', #lib/SDBM_File.pm
4691 'Socket' => '1.77', #lib/Socket.pm
4692 'Storable' => '2.12', #lib/Storable.pm
4693 'threads' => '1.03', #lib/threads.pm
4694 'Errno' => '1.09_00', #lib/Errno.pm
4695 'Attribute::Handlers' => '0.78_01', #lib/Attribute/Handlers.pm
4696 'Carp::Heavy' => '1.01', #lib/Carp/Heavy.pm
4697 'CGI::Apache' => '1.00', #lib/CGI/Apache.pm
4698 'CGI::Carp' => '1.27', #lib/CGI/Carp.pm
4699 'CGI::Cookie' => '1.24', #lib/CGI/Cookie.pm
4700 'CGI::Fast' => '1.05', #lib/CGI/Fast.pm
4701 'CGI::Pretty' => '1.08', #lib/CGI/Pretty.pm
4702 'CGI::Push' => '1.04', #lib/CGI/Push.pm
4703 'CGI::Switch' => '1.00', #lib/CGI/Switch.pm
4704 'CGI::Util' => '1.4', #lib/CGI/Util.pm
4705 'Class::ISA' => '0.32', #lib/Class/ISA.pm
4706 'Class::Struct' => '0.63', #lib/Class/Struct.pm
4707 'CPAN::FirstTime' => '1.60 ', #lib/CPAN/FirstTime.pm
4708 'CPAN::Nox' => '1.03', #lib/CPAN/Nox.pm
4709 'DBM_Filter::compress' => '0.01', #lib/DBM_Filter/compress.pm
4710 'DBM_Filter::encode' => '0.01', #lib/DBM_Filter/encode.pm
4711 'DBM_Filter::int32' => '0.01', #lib/DBM_Filter/int32.pm
4712 'DBM_Filter::null' => '0.01', #lib/DBM_Filter/null.pm
4713 'DBM_Filter::utf8' => '0.01', #lib/DBM_Filter/utf8.pm
4714 'Devel::SelfStubber' => '1.03', #lib/Devel/SelfStubber.pm
4715 'Devel::DProf' => '20030813.00', #lib/Devel/DProf.pm
4716 'Devel::Peek' => '1.01', #lib/Devel/Peek.pm
4717 'Devel::PPPort' => '2.011', #lib/Devel/PPPort.pm
4718 'Digest::base' => '1.00', #lib/Digest/base.pm
4719 'Digest::MD5' => '2.33', #lib/Digest/MD5.pm
4720 'Exporter::Heavy' => '5.57', #lib/Exporter/Heavy.pm
4721 'ExtUtils::Command' => '1.05', #lib/ExtUtils/Command.pm
4722 'ExtUtils::Constant' => '0.14', #lib/ExtUtils/Constant.pm
4723 'ExtUtils::Embed' => '1.250601', #lib/ExtUtils/Embed.pm
4724 'ExtUtils::Installed' => '0.08', #lib/ExtUtils/Installed.pm
4725 'ExtUtils::Install' => '1.32', #lib/ExtUtils/Install.pm
4726 'ExtUtils::Liblist' => '1.01', #lib/ExtUtils/Liblist.pm
4727 'ExtUtils::MakeMaker' => '6.17', #lib/ExtUtils/MakeMaker.pm
4728 'ExtUtils::Manifest' => '1.42', #lib/ExtUtils/Manifest.pm
4729 'ExtUtils::Mkbootstrap' => '1.15', #lib/ExtUtils/Mkbootstrap.pm
4730 'ExtUtils::Mksymlists' => '1.19', #lib/ExtUtils/Mksymlists.pm
4731 'ExtUtils::MM_Any' => '0.07', #lib/ExtUtils/MM_Any.pm
4732 'ExtUtils::MM_BeOS' => '1.04', #lib/ExtUtils/MM_BeOS.pm
4733 'ExtUtils::MM_Cygwin' => '1.06', #lib/ExtUtils/MM_Cygwin.pm
4734 'ExtUtils::MM_DOS' => '0.02', #lib/ExtUtils/MM_DOS.pm
4735 'ExtUtils::MM_MacOS' => '1.07', #lib/ExtUtils/MM_MacOS.pm
4736 'ExtUtils::MM_NW5' => '2.07_02', #lib/ExtUtils/MM_NW5.pm
4737 'ExtUtils::MM' => '0.04', #lib/ExtUtils/MM.pm
4738 'ExtUtils::MM_OS2' => '1.04', #lib/ExtUtils/MM_OS2.pm
4739 'ExtUtils::MM_Unix' => '1.42', #lib/ExtUtils/MM_Unix.pm
4740 'ExtUtils::MM_UWIN' => '0.02', #lib/ExtUtils/MM_UWIN.pm
4741 'ExtUtils::MM_VMS' => '5.70', #lib/ExtUtils/MM_VMS.pm
4742 'ExtUtils::MM_Win32' => '1.09', #lib/ExtUtils/MM_Win32.pm
4743 'ExtUtils::MM_Win95' => '0.0301', #lib/ExtUtils/MM_Win95.pm
4744 'ExtUtils::MY' => '0.01', #lib/ExtUtils/MY.pm
4745 'ExtUtils::Packlist' => '0.04', #lib/ExtUtils/Packlist.pm
4746 'ExtUtils::testlib' => '1.15', #lib/ExtUtils/testlib.pm
4747 'ExtUtils::Miniperl' => undef, #lib/ExtUtils/Miniperl.pm
4748 'ExtUtils::Command::MM' => '0.03', #lib/ExtUtils/Command/MM.pm
4749 'ExtUtils::Liblist::Kid'=> '1.3001', #lib/ExtUtils/Liblist/Kid.pm
4750 'ExtUtils::MakeMaker::bytes'=> '0.01', #lib/ExtUtils/MakeMaker/bytes.pm
4751 'ExtUtils::MakeMaker::vmsish'=> '0.01', #lib/ExtUtils/MakeMaker/vmsish.pm
4752 'File::Basename' => '2.72', #lib/File/Basename.pm
4753 'File::CheckTree' => '4.3', #lib/File/CheckTree.pm
4754 'File::Compare' => '1.1003', #lib/File/Compare.pm
4755 'File::Copy' => '2.07', #lib/File/Copy.pm
4756 'File::DosGlob' => '1.00', #lib/File/DosGlob.pm
4757 'File::Find' => '1.07', #lib/File/Find.pm
4758 'File::Path' => '1.06', #lib/File/Path.pm
4759 'File::Spec' => '0.87', #lib/File/Spec.pm
4760 'File::stat' => '1.00', #lib/File/stat.pm
4761 'File::Temp' => '0.14', #lib/File/Temp.pm
4762 'File::Glob' => '1.02', #lib/File/Glob.pm
4763 'File::Spec::Cygwin' => '1.1', #lib/File/Spec/Cygwin.pm
4764 'File::Spec::Epoc' => '1.1', #lib/File/Spec/Epoc.pm
4765 'File::Spec::Functions' => '1.3', #lib/File/Spec/Functions.pm
4766 'File::Spec::Mac' => '1.4', #lib/File/Spec/Mac.pm
4767 'File::Spec::OS2' => '1.2', #lib/File/Spec/OS2.pm
4768 'File::Spec::Unix' => '1.5', #lib/File/Spec/Unix.pm
4769 'File::Spec::VMS' => '1.4', #lib/File/Spec/VMS.pm
4770 'File::Spec::Win32' => '1.4', #lib/File/Spec/Win32.pm
4771 'Filter::Simple' => '0.78', #lib/Filter/Simple.pm
4772 'Filter::Util::Call' => '1.0601', #lib/Filter/Util/Call.pm
4773 'Getopt::Long' => '2.34', #lib/Getopt/Long.pm
4774 'Getopt::Std' => '1.05', #lib/Getopt/Std.pm
4775 'Hash::Util' => '0.05', #lib/Hash/Util.pm
4776 'I18N::Collate' => '1.00', #lib/I18N/Collate.pm
4777 'I18N::LangTags' => '0.29', #lib/I18N/LangTags.pm
4778 'I18N::Langinfo' => '0.02', #lib/I18N/Langinfo.pm
4779 'I18N::LangTags::List' => '0.29', #lib/I18N/LangTags/List.pm
4780 'IPC::Open2' => '1.01', #lib/IPC/Open2.pm
4781 'IPC::Open3' => '1.0106', #lib/IPC/Open3.pm
4782 'IPC::Msg' => '1.02', #lib/IPC/Msg.pm
4783 'IPC::Semaphore' => '1.02', #lib/IPC/Semaphore.pm
4784 'IPC::SysV' => '1.04', #lib/IPC/SysV.pm
4785 'Locale::Constants' => '2.01', #lib/Locale/Constants.pm
4786 'Locale::Country' => '2.61', #lib/Locale/Country.pm
4787 'Locale::Currency' => '2.21', #lib/Locale/Currency.pm
4788 'Locale::Language' => '2.21', #lib/Locale/Language.pm
4789 'Locale::Maketext' => '1.08', #lib/Locale/Maketext.pm
4790 'Locale::Script' => '2.21', #lib/Locale/Script.pm
4791 'Locale::Maketext::GutsLoader'=> undef, #lib/Locale/Maketext/GutsLoader.pm
4792 'Locale::Maketext::Guts'=> undef, #lib/Locale/Maketext/Guts.pm
4793 'Math::BigFloat' => '1.44', #lib/Math/BigFloat.pm
4794 'Math::BigInt' => '1.70', #lib/Math/BigInt.pm
4795 'Math::BigRat' => '0.12', #lib/Math/BigRat.pm
4796 'Math::Complex' => '1.34', #lib/Math/Complex.pm
4797 'Math::Trig' => '1.02', #lib/Math/Trig.pm
4798 'Math::BigFloat::Trace' => '0.01', #lib/Math/BigFloat/Trace.pm
4799 'Math::BigInt::CalcEmu' => '0.04', #lib/Math/BigInt/CalcEmu.pm
4800 'Math::BigInt::Calc' => '0.40', #lib/Math/BigInt/Calc.pm
4801 'Math::BigInt::Trace' => '0.01', #lib/Math/BigInt/Trace.pm
4802 'Memoize::AnyDBM_File' => '0.65', #lib/Memoize/AnyDBM_File.pm
4803 'Memoize::ExpireFile' => '1.01', #lib/Memoize/ExpireFile.pm
4804 'Memoize::Expire' => '1.00', #lib/Memoize/Expire.pm
4805 'Memoize::ExpireTest' => '0.65', #lib/Memoize/ExpireTest.pm
4806 'Memoize::NDBM_File' => '0.65', #lib/Memoize/NDBM_File.pm
4807 'Memoize::SDBM_File' => '0.65', #lib/Memoize/SDBM_File.pm
4808 'Memoize::Storable' => '0.65', #lib/Memoize/Storable.pm
4809 'Net::Cmd' => '2.24', #lib/Net/Cmd.pm
4810 'Net::Config' => '1.10', #lib/Net/Config.pm
4811 'Net::Domain' => '2.19', #lib/Net/Domain.pm
4812 'Net::FTP' => '2.72', #lib/Net/FTP.pm
4813 'Net::hostent' => '1.01', #lib/Net/hostent.pm
4814 'Net::netent' => '1.00', #lib/Net/netent.pm
4815 'Net::Netrc' => '2.12', #lib/Net/Netrc.pm
4816 'Net::NNTP' => '2.22', #lib/Net/NNTP.pm
4817 'Net::Ping' => '2.31', #lib/Net/Ping.pm
4818 'Net::POP3' => '2.24', #lib/Net/POP3.pm
4819 'Net::protoent' => '1.00', #lib/Net/protoent.pm
4820 'Net::servent' => '1.01', #lib/Net/servent.pm
4821 'Net::SMTP' => '2.26', #lib/Net/SMTP.pm
4822 'Net::Time' => '2.09', #lib/Net/Time.pm
4823 'Net::FTP::A' => '1.16', #lib/Net/FTP/A.pm
4824 'Net::FTP::dataconn' => '0.11', #lib/Net/FTP/dataconn.pm
4825 'Net::FTP::E' => '0.01', #lib/Net/FTP/E.pm
4826 'Net::FTP::I' => '1.12', #lib/Net/FTP/I.pm
4827 'Net::FTP::L' => '0.01', #lib/Net/FTP/L.pm
4828 'PerlIO::encoding' => '0.07', #lib/PerlIO/encoding.pm
4829 'PerlIO::scalar' => '0.02', #lib/PerlIO/scalar.pm
4830 'PerlIO::via' => '0.02', #lib/PerlIO/via.pm
4831 'PerlIO::via::QuotedPrint'=> '0.06', #lib/PerlIO/via/QuotedPrint.pm
4832 'Pod::Checker' => '1.41', #lib/Pod/Checker.pm
4833 'Pod::Find' => '0.24', #lib/Pod/Find.pm
4834 'Pod::Functions' => '1.02', #lib/Pod/Functions.pm
4835 'Pod::Html' => '1.0502', #lib/Pod/Html.pm
4836 'Pod::InputObjects' => '1.14', #lib/Pod/InputObjects.pm
4837 'Pod::LaTeX' => '0.55', #lib/Pod/LaTeX.pm
4838 'Pod::Man' => '1.37', #lib/Pod/Man.pm
4839 'Pod::ParseLink' => '1.06', #lib/Pod/ParseLink.pm
4840 'Pod::Parser' => '1.14', #lib/Pod/Parser.pm
4841 'Pod::ParseUtils' => '0.3', #lib/Pod/ParseUtils.pm
4842 'Pod::Perldoc' => '3.12', #lib/Pod/Perldoc.pm
4843 'Pod::Plainer' => '0.01', #lib/Pod/Plainer.pm
4844 'Pod::PlainText' => '2.02', #lib/Pod/PlainText.pm
4845 'Pod::Select' => '1.13', #lib/Pod/Select.pm
4846 'Pod::Text' => '2.21', #lib/Pod/Text.pm
4847 'Pod::Usage' => '1.16', #lib/Pod/Usage.pm
4848 'Pod::Perldoc::BaseTo' => undef, #lib/Pod/Perldoc/BaseTo.pm
4849 'Pod::Perldoc::GetOptsOO'=> undef, #lib/Pod/Perldoc/GetOptsOO.pm
4850 'Pod::Perldoc::ToChecker'=> undef, #lib/Pod/Perldoc/ToChecker.pm
4851 'Pod::Perldoc::ToMan' => undef, #lib/Pod/Perldoc/ToMan.pm
4852 'Pod::Perldoc::ToNroff' => undef, #lib/Pod/Perldoc/ToNroff.pm
4853 'Pod::Perldoc::ToPod' => undef, #lib/Pod/Perldoc/ToPod.pm
4854 'Pod::Perldoc::ToRtf' => undef, #lib/Pod/Perldoc/ToRtf.pm
4855 'Pod::Perldoc::ToText' => undef, #lib/Pod/Perldoc/ToText.pm
4856 'Pod::Perldoc::ToTk' => 'undef', #lib/Pod/Perldoc/ToTk.pm
4857 'Pod::Perldoc::ToXml' => undef, #lib/Pod/Perldoc/ToXml.pm
4858 'Pod::Text::Color' => '1.04', #lib/Pod/Text/Color.pm
4859 'Pod::Text::Overstrike' => '1.1', #lib/Pod/Text/Overstrike.pm
4860 'Pod::Text::Termcap' => '1.11', #lib/Pod/Text/Termcap.pm
4861 'Search::Dict' => '1.02', #lib/Search/Dict.pm
4862 'Term::ANSIColor' => '1.08', #lib/Term/ANSIColor.pm
4863 'Term::Cap' => '1.08', #lib/Term/Cap.pm
4864 'Term::Complete' => '1.401', #lib/Term/Complete.pm
4865 'Term::ReadLine' => '1.01', #lib/Term/ReadLine.pm
4866 'Test::Builder' => '0.17', #lib/Test/Builder.pm
4867 'Test::Harness' => '2.40', #lib/Test/Harness.pm
4868 'Test::More' => '0.47', #lib/Test/More.pm
4869 'Test::Simple' => '0.47', #lib/Test/Simple.pm
4870 'Test::Harness::Assert' => '0.02', #lib/Test/Harness/Assert.pm
4871 'Test::Harness::Iterator'=> '0.02', #lib/Test/Harness/Iterator.pm
4872 'Test::Harness::Straps' => '0.19', #lib/Test/Harness/Straps.pm
4873 'Text::Abbrev' => '1.01', #lib/Text/Abbrev.pm
4874 'Text::Balanced' => '1.95', #lib/Text/Balanced.pm
4875 'Text::ParseWords' => '3.21', #lib/Text/ParseWords.pm
4876 'Text::Soundex' => '1.01', #lib/Text/Soundex.pm
4877 'Text::Tabs' => '98.112801', #lib/Text/Tabs.pm
4878 'Text::Wrap' => '2001.09291', #lib/Text/Wrap.pm
4879 'Thread::Queue' => '2.00', #lib/Thread/Queue.pm
4880 'Thread::Semaphore' => '2.01', #lib/Thread/Semaphore.pm
4881 'Tie::Array' => '1.03', #lib/Tie/Array.pm
4882 'Tie::File' => '0.97', #lib/Tie/File.pm
4883 'Tie::Handle' => '4.1', #lib/Tie/Handle.pm
4884 'Tie::Hash' => '1.01', #lib/Tie/Hash.pm
4885 'Tie::Memoize' => '1.0', #lib/Tie/Memoize.pm
4886 'Tie::RefHash' => '1.31', #lib/Tie/RefHash.pm
4887 'Tie::Scalar' => '1.00', #lib/Tie/Scalar.pm
4888 'Tie::SubstrHash' => '1.00', #lib/Tie/SubstrHash.pm
4889 'Time::gmtime' => '1.02', #lib/Time/gmtime.pm
4890 'Time::Local' => '1.07', #lib/Time/Local.pm
4891 'Time::localtime' => '1.02', #lib/Time/localtime.pm
4892 'Time::tm' => '1.00', #lib/Time/tm.pm
4893 'Time::HiRes' => '1.59', #lib/Time/HiRes.pm
4894 'Unicode::Collate' => '0.33', #lib/Unicode/Collate.pm
4895 'Unicode::UCD' => '0.22', #lib/Unicode/UCD.pm
4896 'Unicode::Normalize' => '0.28', #lib/Unicode/Normalize.pm
4897 'User::grent' => '1.00', #lib/User/grent.pm
4898 'User::pwent' => '1.00', #lib/User/pwent.pm
4899 'warnings::register' => '1.00', #lib/warnings/register.pm
4900 'B::Stash' => '1.00', #lib/B/Stash.pm
4901 'B::Asmdata' => '1.01', #lib/B/Asmdata.pm
4902 'B::C' => '1.02', #lib/B/C.pm
4903 'B::Deparse' => '0.66', #lib/B/Deparse.pm
4904 'B::Debug' => '1.01', #lib/B/Debug.pm
4905 'B::Bblock' => '1.02', #lib/B/Bblock.pm
4906 'B::Assembler' => '0.07', #lib/B/Assembler.pm
4907 'B::Terse' => '1.02', #lib/B/Terse.pm
4908 'B::CC' => '1.00', #lib/B/CC.pm
4909 'B::Concise' => '0.60', #lib/B/Concise.pm
4910 'B::Lint' => '1.02', #lib/B/Lint.pm
4911 'B::Showlex' => '1.00', #lib/B/Showlex.pm
4912 'B::Bytecode' => '1.01', #lib/B/Bytecode.pm
4913 'B::Disassembler' => '1.03', #lib/B/Disassembler.pm
4914 'B::Xref' => '1.01', #lib/B/Xref.pm
4915 'B::Stackobj' => '1.00', #lib/B/Stackobj.pm
4916 'Data::Dumper' => '2.121', #lib/Data/Dumper.pm
4917 'Encode::Alias' => '1.38', #lib/Encode/Alias.pm
4918 'Encode::Encoding' => '1.33', #lib/Encode/Encoding.pm
4919 'Encode::Guess' => '1.09', #lib/Encode/Guess.pm
4920 'Encode::Config' => '1.07', #lib/Encode/Config.pm
4921 'Encode::Encoder' => '0.07', #lib/Encode/Encoder.pm
4922 'Encode::CJKConstants' => '1.02', #lib/Encode/CJKConstants.pm
4923 'Encode::Byte' => '1.23', #lib/Encode/Byte.pm
4924 'Encode::CN' => '1.24', #lib/Encode/CN.pm
4925 'Encode::EBCDIC' => '1.21', #lib/Encode/EBCDIC.pm
4926 'Encode::JP' => '1.25', #lib/Encode/JP.pm
4927 'Encode::KR' => '1.23', #lib/Encode/KR.pm
4928 'Encode::Symbol' => '1.22', #lib/Encode/Symbol.pm
4929 'Encode::TW' => '1.26', #lib/Encode/TW.pm
4930 'Encode::Unicode' => '1.40', #lib/Encode/Unicode.pm
4931 'Encode::JP::H2Z' => '1.02', #lib/Encode/JP/H2Z.pm
4932 'Encode::JP::JIS7' => '1.12', #lib/Encode/JP/JIS7.pm
4933 'Encode::Unicode::UTF7' => '0.02', #lib/Encode/Unicode/UTF7.pm
4934 'Encode::KR::2022_KR' => '1.06', #lib/Encode/KR/2022_KR.pm
4935 'Encode::MIME::Header' => '1.09', #lib/Encode/MIME/Header.pm
4936 'Encode::CN::HZ' => '1.0501', #lib/Encode/CN/HZ.pm
4937 'IO::Pipe' => '1.123', #lib/IO/Pipe.pm
4938 'IO::File' => '1.10', #lib/IO/File.pm
4939 'IO::Select' => '1.16', #lib/IO/Select.pm
4940 'IO::Socket' => '1.28', #lib/IO/Socket.pm
4941 'IO::Poll' => '0.06', #lib/IO/Poll.pm
4942 'IO::Dir' => '1.04', #lib/IO/Dir.pm
4943 'IO::Handle' => '1.24', #lib/IO/Handle.pm
4944 'IO::Seekable' => '1.09', #lib/IO/Seekable.pm
4945 'IO::Socket::INET' => '1.27', #lib/IO/Socket/INET.pm
4946 'IO::Socket::UNIX' => '1.21', #lib/IO/Socket/UNIX.pm
4947 'List::Util' => '1.13', #lib/List/Util.pm
4948 'Scalar::Util' => '1.13', #lib/Scalar/Util.pm
4949 'MIME::QuotedPrint' => '3.01', #lib/MIME/QuotedPrint.pm
4950 'MIME::Base64' => '3.01', #lib/MIME/Base64.pm
4951 'Sys::Hostname' => '1.11', #lib/Sys/Hostname.pm
4952 'Sys::Syslog' => '0.05', #lib/Sys/Syslog.pm
4953 'XS::APItest' => '0.03', #lib/XS/APItest.pm
4954 'XS::Typemap' => '0.01', #lib/XS/Typemap.pm
4955 'threads::shared' => '0.92', #lib/threads/shared.pm
4956 'ExtUtils::XSSymSet' => '1.0', #vms/ext/XSSymSet.pm
4957 'JNI' => '0.2', #jpl/JNI/JNI.pm
4958 'JPL::AutoLoader' => undef, #jpl/JPL/AutoLoader.pm
4959 'JPL::Class' => undef, #jpl/JPL/Class.pm
4960 'JPL::Compile' => undef, #jpl/JPL/Compile.pm
4961 'ODBM_File' => '1.05', #ext/ODBM_File/ODBM_File.pm
4962 'OS2::DLL' => '1.02', #os2/OS2/REXX/DLL/DLL.pm
4963 'OS2::ExtAttr' => '0.02', #os2/OS2/ExtAttr/ExtAttr.pm
4964 'OS2::PrfDB' => '0.03', #os2/OS2/PrfDB/PrfDB.pm
4965 'OS2::Process' => '1.01', #os2/OS2/Process/Process.pm
4966 'OS2::REXX' => '1.02', #os2/OS2/REXX/REXX.pm
4967 'Thread::Signal' => '1.00', #./ext/Thread/Thread/Signal.pm
4968 'Thread::Specific' => '1.00', #./ext/Thread/Thread/Specific.pm
4969 'VMS::DCLsym' => '1.02', #vms/ext/DCLsym/DCLsym.pm
4970 'VMS::Filespec' => '1.11', #vms/ext/Filespec.pm
4971 'VMS::Stdio' => '2.3', #vms/ext/Stdio/Stdio.pm
4974 5.008005 => {
4975 'AnyDBM_File' => '1.00', #lib/AnyDBM_File.pm
4976 'attributes' => '0.06', #lib/attributes.pm
4977 'AutoLoader' => '5.60', #lib/AutoLoader.pm
4978 'AutoSplit' => '1.04', #lib/AutoSplit.pm
4979 'autouse' => '1.04', #lib/autouse.pm
4980 'base' => '2.06', #lib/base.pm
4981 'Benchmark' => '1.06', #lib/Benchmark.pm
4982 'bigint' => '0.05', #lib/bigint.pm
4983 'bignum' => '0.15', #lib/bignum.pm
4984 'bigrat' => '0.06', #lib/bigrat.pm
4985 'blib' => '1.02', #lib/blib.pm
4986 'bytes' => '1.01', #lib/bytes.pm
4987 'Carp' => '1.03', #lib/Carp.pm
4988 'CGI' => '3.05', #lib/CGI.pm
4989 'charnames' => '1.04', #lib/charnames.pm
4990 'constant' => '1.04', #lib/constant.pm
4991 'CPAN' => '1.76_01', #lib/CPAN.pm
4992 'Cwd' => '2.19', #lib/Cwd.pm
4993 'DBM_Filter' => '0.01', #lib/DBM_Filter.pm
4994 'DB' => '1.0', #lib/DB.pm
4995 'diagnostics' => '1.13', #lib/diagnostics.pm
4996 'Digest' => '1.08', #lib/Digest.pm
4997 'DirHandle' => '1.00', #lib/DirHandle.pm
4998 'Dumpvalue' => '1.11', #lib/Dumpvalue.pm
4999 'English' => '1.01', #lib/English.pm
5000 'Env' => '1.00', #lib/Env.pm
5001 'Exporter' => '5.58', #lib/Exporter.pm
5002 'Fatal' => '1.03', #lib/Fatal.pm
5003 'fields' => '2.03', #lib/fields.pm
5004 'FileCache' => '1.04_01', #lib/FileCache.pm
5005 'FileHandle' => '2.01', #lib/FileHandle.pm
5006 'filetest' => '1.01', #lib/filetest.pm
5007 'FindBin' => '1.44', #lib/FindBin.pm
5008 'if' => '0.03', #lib/if.pm
5009 'integer' => '1.00', #lib/integer.pm
5010 'less' => '0.01', #lib/less.pm
5011 'locale' => '1.00', #lib/locale.pm
5012 'Memoize' => '1.01', #lib/Memoize.pm
5013 'NEXT' => '0.60', #lib/NEXT.pm
5014 'open' => '1.03', #lib/open.pm
5015 'overload' => '1.01', #lib/overload.pm
5016 'PerlIO' => '1.03', #lib/PerlIO.pm
5017 'SelectSaver' => '1.00', #lib/SelectSaver.pm
5018 'SelfLoader' => '1.0904', #lib/SelfLoader.pm
5019 'Shell' => '0.6', #lib/Shell.pm
5020 'sigtrap' => '1.02', #lib/sigtrap.pm
5021 'sort' => '1.02', #lib/sort.pm
5022 'strict' => '1.03', #lib/strict.pm
5023 'subs' => '1.00', #lib/subs.pm
5024 'Switch' => '2.10', #lib/Switch.pm
5025 'Symbol' => '1.05', #lib/Symbol.pm
5026 'Test' => '1.25', #lib/Test.pm
5027 'Thread' => '2.00', #lib/Thread.pm
5028 'UNIVERSAL' => '1.01', #lib/UNIVERSAL.pm
5029 'utf8' => '1.04', #lib/utf8.pm
5030 'vars' => '1.01', #lib/vars.pm
5031 'vmsish' => '1.01', #lib/vmsish.pm
5032 'warnings' => '1.03', #lib/warnings.pm
5033 'Config' => undef, #lib/Config.pm
5034 'lib' => '0.5565', #lib/lib.pm
5035 're' => '0.04', #lib/re.pm
5036 'XSLoader' => '0.02', #lib/XSLoader.pm
5037 'DynaLoader' => '1.05', #lib/DynaLoader.pm
5038 'attrs' => '1.01', #lib/attrs.pm
5039 'B' => '1.02', #lib/B.pm
5040 'O' => '1.00', #lib/O.pm
5041 'ByteLoader' => '0.05', #lib/ByteLoader.pm
5042 'DB_File' => '1.809', #lib/DB_File.pm
5043 'Encode' => '2.01', #lib/Encode.pm
5044 'encoding' => '2.00', #lib/encoding.pm
5045 'Fcntl' => '1.05', #lib/Fcntl.pm
5046 'GDBM_File' => '1.07', #lib/GDBM_File.pm
5047 'IO' => '1.21', #lib/IO.pm
5048 'NDBM_File' => '1.05', #lib/NDBM_File.pm
5049 'Safe' => '2.11', #lib/Safe.pm
5050 'Opcode' => '1.05', #lib/Opcode.pm
5051 'ops' => '1.00', #lib/ops.pm
5052 'POSIX' => '1.08', #lib/POSIX.pm
5053 'SDBM_File' => '1.04', #lib/SDBM_File.pm
5054 'Socket' => '1.77', #lib/Socket.pm
5055 'Storable' => '2.13', #lib/Storable.pm
5056 'threads' => '1.05', #lib/threads.pm
5057 'Errno' => '1.09_00', #lib/Errno.pm
5058 'Attribute::Handlers' => '0.78_01', #lib/Attribute/Handlers.pm
5059 'Carp::Heavy' => '1.01', #lib/Carp/Heavy.pm
5060 'CGI::Apache' => '1.00', #lib/CGI/Apache.pm
5061 'CGI::Carp' => '1.28', #lib/CGI/Carp.pm
5062 'CGI::Cookie' => '1.24', #lib/CGI/Cookie.pm
5063 'CGI::Fast' => '1.05', #lib/CGI/Fast.pm
5064 'CGI::Pretty' => '1.08', #lib/CGI/Pretty.pm
5065 'CGI::Push' => '1.04', #lib/CGI/Push.pm
5066 'CGI::Switch' => '1.00', #lib/CGI/Switch.pm
5067 'CGI::Util' => '1.5', #lib/CGI/Util.pm
5068 'Class::ISA' => '0.32', #lib/Class/ISA.pm
5069 'Class::Struct' => '0.63', #lib/Class/Struct.pm
5070 'CPAN::FirstTime' => '1.60 ', #lib/CPAN/FirstTime.pm
5071 'CPAN::Nox' => '1.03', #lib/CPAN/Nox.pm
5072 'DBM_Filter::compress' => '0.01', #lib/DBM_Filter/compress.pm
5073 'DBM_Filter::encode' => '0.01', #lib/DBM_Filter/encode.pm
5074 'DBM_Filter::int32' => '0.01', #lib/DBM_Filter/int32.pm
5075 'DBM_Filter::null' => '0.01', #lib/DBM_Filter/null.pm
5076 'DBM_Filter::utf8' => '0.01', #lib/DBM_Filter/utf8.pm
5077 'Devel::SelfStubber' => '1.03', #lib/Devel/SelfStubber.pm
5078 'Devel::DProf' => '20030813.00', #lib/Devel/DProf.pm
5079 'Devel::Peek' => '1.01', #lib/Devel/Peek.pm
5080 'Devel::PPPort' => '2.011', #lib/Devel/PPPort.pm
5081 'Digest::base' => '1.00', #lib/Digest/base.pm
5082 'Digest::MD5' => '2.33', #lib/Digest/MD5.pm
5083 'Exporter::Heavy' => '5.57', #lib/Exporter/Heavy.pm
5084 'ExtUtils::Command' => '1.05', #lib/ExtUtils/Command.pm
5085 'ExtUtils::Constant' => '0.14', #lib/ExtUtils/Constant.pm
5086 'ExtUtils::Embed' => '1.250601', #lib/ExtUtils/Embed.pm
5087 'ExtUtils::Installed' => '0.08', #lib/ExtUtils/Installed.pm
5088 'ExtUtils::Install' => '1.32', #lib/ExtUtils/Install.pm
5089 'ExtUtils::Liblist' => '1.01', #lib/ExtUtils/Liblist.pm
5090 'ExtUtils::MakeMaker' => '6.17', #lib/ExtUtils/MakeMaker.pm
5091 'ExtUtils::Manifest' => '1.42', #lib/ExtUtils/Manifest.pm
5092 'ExtUtils::Mkbootstrap' => '1.15', #lib/ExtUtils/Mkbootstrap.pm
5093 'ExtUtils::Mksymlists' => '1.19', #lib/ExtUtils/Mksymlists.pm
5094 'ExtUtils::MM_Any' => '0.07', #lib/ExtUtils/MM_Any.pm
5095 'ExtUtils::MM_BeOS' => '1.04', #lib/ExtUtils/MM_BeOS.pm
5096 'ExtUtils::MM_Cygwin' => '1.06', #lib/ExtUtils/MM_Cygwin.pm
5097 'ExtUtils::MM_DOS' => '0.02', #lib/ExtUtils/MM_DOS.pm
5098 'ExtUtils::MM_MacOS' => '1.07', #lib/ExtUtils/MM_MacOS.pm
5099 'ExtUtils::MM_NW5' => '2.07_02', #lib/ExtUtils/MM_NW5.pm
5100 'ExtUtils::MM' => '0.04', #lib/ExtUtils/MM.pm
5101 'ExtUtils::MM_OS2' => '1.04', #lib/ExtUtils/MM_OS2.pm
5102 'ExtUtils::MM_Unix' => '1.42', #lib/ExtUtils/MM_Unix.pm
5103 'ExtUtils::MM_UWIN' => '0.02', #lib/ExtUtils/MM_UWIN.pm
5104 'ExtUtils::MM_VMS' => '5.70', #lib/ExtUtils/MM_VMS.pm
5105 'ExtUtils::MM_Win32' => '1.09', #lib/ExtUtils/MM_Win32.pm
5106 'ExtUtils::MM_Win95' => '0.0301', #lib/ExtUtils/MM_Win95.pm
5107 'ExtUtils::MY' => '0.01', #lib/ExtUtils/MY.pm
5108 'ExtUtils::Packlist' => '0.04', #lib/ExtUtils/Packlist.pm
5109 'ExtUtils::testlib' => '1.15', #lib/ExtUtils/testlib.pm
5110 'ExtUtils::Miniperl' => undef, #lib/ExtUtils/Miniperl.pm
5111 'ExtUtils::Command::MM' => '0.03', #lib/ExtUtils/Command/MM.pm
5112 'ExtUtils::Liblist::Kid'=> '1.3001', #lib/ExtUtils/Liblist/Kid.pm
5113 'ExtUtils::MakeMaker::bytes'=> '0.01', #lib/ExtUtils/MakeMaker/bytes.pm
5114 'ExtUtils::MakeMaker::vmsish'=> '0.01', #lib/ExtUtils/MakeMaker/vmsish.pm
5115 'File::Basename' => '2.73', #lib/File/Basename.pm
5116 'File::CheckTree' => '4.3', #lib/File/CheckTree.pm
5117 'File::Compare' => '1.1003', #lib/File/Compare.pm
5118 'File::Copy' => '2.08', #lib/File/Copy.pm
5119 'File::DosGlob' => '1.00', #lib/File/DosGlob.pm
5120 'File::Find' => '1.07', #lib/File/Find.pm
5121 'File::Path' => '1.06', #lib/File/Path.pm
5122 'File::Spec' => '0.87', #lib/File/Spec.pm
5123 'File::stat' => '1.00', #lib/File/stat.pm
5124 'File::Temp' => '0.14', #lib/File/Temp.pm
5125 'File::Glob' => '1.03', #lib/File/Glob.pm
5126 'File::Spec::Cygwin' => '1.1', #lib/File/Spec/Cygwin.pm
5127 'File::Spec::Epoc' => '1.1', #lib/File/Spec/Epoc.pm
5128 'File::Spec::Functions' => '1.3', #lib/File/Spec/Functions.pm
5129 'File::Spec::Mac' => '1.4', #lib/File/Spec/Mac.pm
5130 'File::Spec::OS2' => '1.2', #lib/File/Spec/OS2.pm
5131 'File::Spec::Unix' => '1.5', #lib/File/Spec/Unix.pm
5132 'File::Spec::VMS' => '1.4', #lib/File/Spec/VMS.pm
5133 'File::Spec::Win32' => '1.4', #lib/File/Spec/Win32.pm
5134 'Filter::Simple' => '0.78', #lib/Filter/Simple.pm
5135 'Filter::Util::Call' => '1.0601', #lib/Filter/Util/Call.pm
5136 'Getopt::Long' => '2.34', #lib/Getopt/Long.pm
5137 'Getopt::Std' => '1.05', #lib/Getopt/Std.pm
5138 'Hash::Util' => '0.05', #lib/Hash/Util.pm
5139 'I18N::Collate' => '1.00', #lib/I18N/Collate.pm
5140 'I18N::LangTags' => '0.33', #lib/I18N/LangTags.pm
5141 'I18N::Langinfo' => '0.02', #lib/I18N/Langinfo.pm
5142 'I18N::LangTags::Detect'=> '1.03', #lib/I18N/LangTags/Detect.pm
5143 'I18N::LangTags::List' => '0.29', #lib/I18N/LangTags/List.pm
5144 'IPC::Open2' => '1.01', #lib/IPC/Open2.pm
5145 'IPC::Open3' => '1.0106', #lib/IPC/Open3.pm
5146 'IPC::Msg' => '1.02', #lib/IPC/Msg.pm
5147 'IPC::Semaphore' => '1.02', #lib/IPC/Semaphore.pm
5148 'IPC::SysV' => '1.04', #lib/IPC/SysV.pm
5149 'Locale::Constants' => '2.07', #lib/Locale/Constants.pm
5150 'Locale::Country' => '2.07', #lib/Locale/Country.pm
5151 'Locale::Currency' => '2.07', #lib/Locale/Currency.pm
5152 'Locale::Language' => '2.07', #lib/Locale/Language.pm
5153 'Locale::Maketext' => '1.09', #lib/Locale/Maketext.pm
5154 'Locale::Script' => '2.07', #lib/Locale/Script.pm
5155 'Locale::Maketext::GutsLoader'=> undef, #lib/Locale/Maketext/GutsLoader.pm
5156 'Locale::Maketext::Guts'=> undef, #lib/Locale/Maketext/Guts.pm
5157 'Math::BigFloat' => '1.44', #lib/Math/BigFloat.pm
5158 'Math::BigInt' => '1.70', #lib/Math/BigInt.pm
5159 'Math::BigRat' => '0.12', #lib/Math/BigRat.pm
5160 'Math::Complex' => '1.34', #lib/Math/Complex.pm
5161 'Math::Trig' => '1.02', #lib/Math/Trig.pm
5162 'Math::BigFloat::Trace' => '0.01', #lib/Math/BigFloat/Trace.pm
5163 'Math::BigInt::CalcEmu' => '0.04', #lib/Math/BigInt/CalcEmu.pm
5164 'Math::BigInt::Calc' => '0.40', #lib/Math/BigInt/Calc.pm
5165 'Math::BigInt::Trace' => '0.01', #lib/Math/BigInt/Trace.pm
5166 'Memoize::AnyDBM_File' => '0.65', #lib/Memoize/AnyDBM_File.pm
5167 'Memoize::ExpireFile' => '1.01', #lib/Memoize/ExpireFile.pm
5168 'Memoize::Expire' => '1.00', #lib/Memoize/Expire.pm
5169 'Memoize::ExpireTest' => '0.65', #lib/Memoize/ExpireTest.pm
5170 'Memoize::NDBM_File' => '0.65', #lib/Memoize/NDBM_File.pm
5171 'Memoize::SDBM_File' => '0.65', #lib/Memoize/SDBM_File.pm
5172 'Memoize::Storable' => '0.65', #lib/Memoize/Storable.pm
5173 'Net::Cmd' => '2.26', #lib/Net/Cmd.pm
5174 'Net::Config' => '1.10', #lib/Net/Config.pm
5175 'Net::Domain' => '2.19', #lib/Net/Domain.pm
5176 'Net::FTP' => '2.75', #lib/Net/FTP.pm
5177 'Net::hostent' => '1.01', #lib/Net/hostent.pm
5178 'Net::netent' => '1.00', #lib/Net/netent.pm
5179 'Net::Netrc' => '2.12', #lib/Net/Netrc.pm
5180 'Net::NNTP' => '2.23', #lib/Net/NNTP.pm
5181 'Net::Ping' => '2.31', #lib/Net/Ping.pm
5182 'Net::POP3' => '2.28', #lib/Net/POP3.pm
5183 'Net::protoent' => '1.00', #lib/Net/protoent.pm
5184 'Net::servent' => '1.01', #lib/Net/servent.pm
5185 'Net::SMTP' => '2.29', #lib/Net/SMTP.pm
5186 'Net::Time' => '2.10', #lib/Net/Time.pm
5187 'Net::FTP::A' => '1.16', #lib/Net/FTP/A.pm
5188 'Net::FTP::dataconn' => '0.11', #lib/Net/FTP/dataconn.pm
5189 'Net::FTP::E' => '0.01', #lib/Net/FTP/E.pm
5190 'Net::FTP::I' => '1.12', #lib/Net/FTP/I.pm
5191 'Net::FTP::L' => '0.01', #lib/Net/FTP/L.pm
5192 'PerlIO::encoding' => '0.07', #lib/PerlIO/encoding.pm
5193 'PerlIO::scalar' => '0.02', #lib/PerlIO/scalar.pm
5194 'PerlIO::via' => '0.02', #lib/PerlIO/via.pm
5195 'PerlIO::via::QuotedPrint'=> '0.06', #lib/PerlIO/via/QuotedPrint.pm
5196 'Pod::Checker' => '1.42', #lib/Pod/Checker.pm
5197 'Pod::Find' => '0.2401', #lib/Pod/Find.pm
5198 'Pod::Functions' => '1.02', #lib/Pod/Functions.pm
5199 'Pod::Html' => '1.0502', #lib/Pod/Html.pm
5200 'Pod::InputObjects' => '1.14', #lib/Pod/InputObjects.pm
5201 'Pod::LaTeX' => '0.56', #lib/Pod/LaTeX.pm
5202 'Pod::Man' => '1.37', #lib/Pod/Man.pm
5203 'Pod::ParseLink' => '1.06', #lib/Pod/ParseLink.pm
5204 'Pod::Parser' => '1.14', #lib/Pod/Parser.pm
5205 'Pod::ParseUtils' => '1.2', #lib/Pod/ParseUtils.pm
5206 'Pod::Perldoc' => '3.13', #lib/Pod/Perldoc.pm
5207 'Pod::Plainer' => '0.01', #lib/Pod/Plainer.pm
5208 'Pod::PlainText' => '2.02', #lib/Pod/PlainText.pm
5209 'Pod::Select' => '1.13', #lib/Pod/Select.pm
5210 'Pod::Text' => '2.21', #lib/Pod/Text.pm
5211 'Pod::Usage' => '1.16', #lib/Pod/Usage.pm
5212 'Pod::Perldoc::BaseTo' => undef, #lib/Pod/Perldoc/BaseTo.pm
5213 'Pod::Perldoc::GetOptsOO'=> undef, #lib/Pod/Perldoc/GetOptsOO.pm
5214 'Pod::Perldoc::ToChecker'=> undef, #lib/Pod/Perldoc/ToChecker.pm
5215 'Pod::Perldoc::ToMan' => undef, #lib/Pod/Perldoc/ToMan.pm
5216 'Pod::Perldoc::ToNroff' => undef, #lib/Pod/Perldoc/ToNroff.pm
5217 'Pod::Perldoc::ToPod' => undef, #lib/Pod/Perldoc/ToPod.pm
5218 'Pod::Perldoc::ToRtf' => undef, #lib/Pod/Perldoc/ToRtf.pm
5219 'Pod::Perldoc::ToText' => undef, #lib/Pod/Perldoc/ToText.pm
5220 'Pod::Perldoc::ToTk' => 'undef', #lib/Pod/Perldoc/ToTk.pm
5221 'Pod::Perldoc::ToXml' => undef, #lib/Pod/Perldoc/ToXml.pm
5222 'Pod::Text::Color' => '1.04', #lib/Pod/Text/Color.pm
5223 'Pod::Text::Overstrike' => '1.1', #lib/Pod/Text/Overstrike.pm
5224 'Pod::Text::Termcap' => '1.11', #lib/Pod/Text/Termcap.pm
5225 'Search::Dict' => '1.02', #lib/Search/Dict.pm
5226 'Term::ANSIColor' => '1.08', #lib/Term/ANSIColor.pm
5227 'Term::Cap' => '1.09', #lib/Term/Cap.pm
5228 'Term::Complete' => '1.401', #lib/Term/Complete.pm
5229 'Term::ReadLine' => '1.01', #lib/Term/ReadLine.pm
5230 'Test::Builder' => '0.17', #lib/Test/Builder.pm
5231 'Test::Harness' => '2.42', #lib/Test/Harness.pm
5232 'Test::More' => '0.47', #lib/Test/More.pm
5233 'Test::Simple' => '0.47', #lib/Test/Simple.pm
5234 'Test::Harness::Assert' => '0.02', #lib/Test/Harness/Assert.pm
5235 'Test::Harness::Iterator'=> '0.02', #lib/Test/Harness/Iterator.pm
5236 'Test::Harness::Straps' => '0.19', #lib/Test/Harness/Straps.pm
5237 'Text::Abbrev' => '1.01', #lib/Text/Abbrev.pm
5238 'Text::Balanced' => '1.95', #lib/Text/Balanced.pm
5239 'Text::ParseWords' => '3.22', #lib/Text/ParseWords.pm
5240 'Text::Soundex' => '1.01', #lib/Text/Soundex.pm
5241 'Text::Tabs' => '98.112801', #lib/Text/Tabs.pm
5242 'Text::Wrap' => '2001.09292', #lib/Text/Wrap.pm
5243 'Thread::Queue' => '2.00', #lib/Thread/Queue.pm
5244 'Thread::Semaphore' => '2.01', #lib/Thread/Semaphore.pm
5245 'Tie::Array' => '1.03', #lib/Tie/Array.pm
5246 'Tie::File' => '0.97', #lib/Tie/File.pm
5247 'Tie::Handle' => '4.1', #lib/Tie/Handle.pm
5248 'Tie::Hash' => '1.01', #lib/Tie/Hash.pm
5249 'Tie::Memoize' => '1.0', #lib/Tie/Memoize.pm
5250 'Tie::RefHash' => '1.31', #lib/Tie/RefHash.pm
5251 'Tie::Scalar' => '1.00', #lib/Tie/Scalar.pm
5252 'Tie::SubstrHash' => '1.00', #lib/Tie/SubstrHash.pm
5253 'Time::gmtime' => '1.02', #lib/Time/gmtime.pm
5254 'Time::Local' => '1.10', #lib/Time/Local.pm
5255 'Time::localtime' => '1.02', #lib/Time/localtime.pm
5256 'Time::tm' => '1.00', #lib/Time/tm.pm
5257 'Time::HiRes' => '1.59', #lib/Time/HiRes.pm
5258 'Unicode' => '4.0.1', # lib/unicore/version
5259 'Unicode::Collate' => '0.40', #lib/Unicode/Collate.pm
5260 'Unicode::UCD' => '0.22', #lib/Unicode/UCD.pm
5261 'Unicode::Normalize' => '0.30', #lib/Unicode/Normalize.pm
5262 'User::grent' => '1.00', #lib/User/grent.pm
5263 'User::pwent' => '1.00', #lib/User/pwent.pm
5264 'warnings::register' => '1.00', #lib/warnings/register.pm
5265 'B::Stash' => '1.00', #lib/B/Stash.pm
5266 'B::Asmdata' => '1.01', #lib/B/Asmdata.pm
5267 'B::C' => '1.02', #lib/B/C.pm
5268 'B::Deparse' => '0.67', #lib/B/Deparse.pm
5269 'B::Debug' => '1.01', #lib/B/Debug.pm
5270 'B::Bblock' => '1.02', #lib/B/Bblock.pm
5271 'B::Assembler' => '0.07', #lib/B/Assembler.pm
5272 'B::Terse' => '1.02', #lib/B/Terse.pm
5273 'B::CC' => '1.00', #lib/B/CC.pm
5274 'B::Concise' => '0.61', #lib/B/Concise.pm
5275 'B::Lint' => '1.02', #lib/B/Lint.pm
5276 'B::Showlex' => '1.00', #lib/B/Showlex.pm
5277 'B::Bytecode' => '1.01', #lib/B/Bytecode.pm
5278 'B::Disassembler' => '1.03', #lib/B/Disassembler.pm
5279 'B::Xref' => '1.01', #lib/B/Xref.pm
5280 'B::Stackobj' => '1.00', #lib/B/Stackobj.pm
5281 'Data::Dumper' => '2.121', #lib/Data/Dumper.pm
5282 'Encode::Alias' => '2.00', #lib/Encode/Alias.pm
5283 'Encode::Encoding' => '2.00', #lib/Encode/Encoding.pm
5284 'Encode::Guess' => '2.00', #lib/Encode/Guess.pm
5285 'Encode::Config' => '2.00', #lib/Encode/Config.pm
5286 'Encode::Encoder' => '2.00', #lib/Encode/Encoder.pm
5287 'Encode::CJKConstants' => '2.00', #lib/Encode/CJKConstants.pm
5288 'Encode::Byte' => '2.00', #lib/Encode/Byte.pm
5289 'Encode::CN' => '2.00', #lib/Encode/CN.pm
5290 'Encode::EBCDIC' => '2.00', #lib/Encode/EBCDIC.pm
5291 'Encode::JP' => '2.00', #lib/Encode/JP.pm
5292 'Encode::KR' => '2.00', #lib/Encode/KR.pm
5293 'Encode::Symbol' => '2.00', #lib/Encode/Symbol.pm
5294 'Encode::TW' => '2.00', #lib/Encode/TW.pm
5295 'Encode::Unicode' => '2.00', #lib/Encode/Unicode.pm
5296 'Encode::JP::H2Z' => '2.00', #lib/Encode/JP/H2Z.pm
5297 'Encode::JP::JIS7' => '2.00', #lib/Encode/JP/JIS7.pm
5298 'Encode::Unicode::UTF7' => '2.01', #lib/Encode/Unicode/UTF7.pm
5299 'Encode::KR::2022_KR' => '2.00', #lib/Encode/KR/2022_KR.pm
5300 'Encode::MIME::Header' => '2.00', #lib/Encode/MIME/Header.pm
5301 'Encode::CN::HZ' => '2.01', #lib/Encode/CN/HZ.pm
5302 'IO::Pipe' => '1.123', #lib/IO/Pipe.pm
5303 'IO::File' => '1.10', #lib/IO/File.pm
5304 'IO::Select' => '1.16', #lib/IO/Select.pm
5305 'IO::Socket' => '1.28', #lib/IO/Socket.pm
5306 'IO::Poll' => '0.06', #lib/IO/Poll.pm
5307 'IO::Dir' => '1.04', #lib/IO/Dir.pm
5308 'IO::Handle' => '1.24', #lib/IO/Handle.pm
5309 'IO::Seekable' => '1.09', #lib/IO/Seekable.pm
5310 'IO::Socket::INET' => '1.27', #lib/IO/Socket/INET.pm
5311 'IO::Socket::UNIX' => '1.21', #lib/IO/Socket/UNIX.pm
5312 'List::Util' => '1.14', #lib/List/Util.pm
5313 'Scalar::Util' => '1.14', #lib/Scalar/Util.pm
5314 'MIME::QuotedPrint' => '3.01', #lib/MIME/QuotedPrint.pm
5315 'MIME::Base64' => '3.01', #lib/MIME/Base64.pm
5316 'Sys::Hostname' => '1.11', #lib/Sys/Hostname.pm
5317 'Sys::Syslog' => '0.05', #lib/Sys/Syslog.pm
5318 'XS::APItest' => '0.04', #lib/XS/APItest.pm
5319 'XS::Typemap' => '0.01', #lib/XS/Typemap.pm
5320 'threads::shared' => '0.92', #lib/threads/shared.pm
5321 'ExtUtils::XSSymSet' => '1.0', #vms/ext/XSSymSet.pm
5322 'JNI' => '0.2', #jpl/JNI/JNI.pm
5323 'JPL::AutoLoader' => undef, #jpl/JPL/AutoLoader.pm
5324 'JPL::Class' => undef, #jpl/JPL/Class.pm
5325 'JPL::Compile' => undef, #jpl/JPL/Compile.pm
5326 'ODBM_File' => '1.05', #ext/ODBM_File/ODBM_File.pm
5327 'OS2::DLL' => '1.02', #os2/OS2/REXX/DLL/DLL.pm
5328 'OS2::ExtAttr' => '0.02', #os2/OS2/ExtAttr/ExtAttr.pm
5329 'OS2::PrfDB' => '0.03', #os2/OS2/PrfDB/PrfDB.pm
5330 'OS2::Process' => '1.01', #os2/OS2/Process/Process.pm
5331 'OS2::REXX' => '1.02', #os2/OS2/REXX/REXX.pm
5332 'Thread::Signal' => '1.00', #./ext/Thread/Thread/Signal.pm
5333 'Thread::Specific' => '1.00', #./ext/Thread/Thread/Specific.pm
5334 'VMS::DCLsym' => '1.02', #vms/ext/DCLsym/DCLsym.pm
5335 'VMS::Filespec' => '1.11', #vms/ext/Filespec.pm
5336 'VMS::Stdio' => '2.3', #vms/ext/Stdio/Stdio.pm
5339 5.008006 => {
5340 'AnyDBM_File' => '1.00', #lib/AnyDBM_File.pm
5341 'Attribute::Handlers' => '0.78_01', #lib/Attribute/Handlers.pm
5342 'attributes' => '0.06', #lib/attributes.pm
5343 'attrs' => '1.01', #lib/attrs.pm
5344 'AutoLoader' => '5.60', #lib/AutoLoader.pm
5345 'AutoSplit' => '1.04', #lib/AutoSplit.pm
5346 'autouse' => '1.04', #lib/autouse.pm
5347 'B' => '1.07', #lib/B.pm
5348 'base' => '2.06', #lib/base.pm
5349 'B::Asmdata' => '1.01', #lib/B/Asmdata.pm
5350 'B::Assembler' => '0.07', #lib/B/Assembler.pm
5351 'B::Bblock' => '1.02', #lib/B/Bblock.pm
5352 'B::Bytecode' => '1.01', #lib/B/Bytecode.pm
5353 'B::C' => '1.04', #lib/B/C.pm
5354 'B::CC' => '1.00', #lib/B/CC.pm
5355 'B::Concise' => '0.64', #lib/B/Concise.pm
5356 'B::Debug' => '1.02', #lib/B/Debug.pm
5357 'B::Deparse' => '0.69', #lib/B/Deparse.pm
5358 'B::Disassembler' => '1.03', #lib/B/Disassembler.pm
5359 'Benchmark' => '1.06', #lib/Benchmark.pm
5360 'bigint' => '0.05', #lib/bigint.pm
5361 'bignum' => '0.15', #lib/bignum.pm
5362 'bigrat' => '0.06', #lib/bigrat.pm
5363 'blib' => '1.02', #lib/blib.pm
5364 'B::Lint' => '1.03', #lib/B/Lint.pm
5365 'B::Showlex' => '1.02', #lib/B/Showlex.pm
5366 'B::Stackobj' => '1.00', #lib/B/Stackobj.pm
5367 'B::Stash' => '1.00', #lib/B/Stash.pm
5368 'B::Terse' => '1.02', #lib/B/Terse.pm
5369 'B::Xref' => '1.01', #lib/B/Xref.pm
5370 'ByteLoader' => '0.05', #lib/ByteLoader.pm
5371 'bytes' => '1.01', #lib/bytes.pm
5372 'Carp' => '1.03', #lib/Carp.pm
5373 'Carp::Heavy' => '1.03', #lib/Carp/Heavy.pm
5374 'CGI' => '3.05', #lib/CGI.pm
5375 'CGI::Apache' => '1.00', #lib/CGI/Apache.pm
5376 'CGI::Carp' => '1.28', #lib/CGI/Carp.pm
5377 'CGI::Cookie' => '1.24', #lib/CGI/Cookie.pm
5378 'CGI::Fast' => '1.05', #lib/CGI/Fast.pm
5379 'CGI::Pretty' => '1.08', #lib/CGI/Pretty.pm
5380 'CGI::Push' => '1.04', #lib/CGI/Push.pm
5381 'CGI::Switch' => '1.00', #lib/CGI/Switch.pm
5382 'CGI::Util' => '1.5', #lib/CGI/Util.pm
5383 'charnames' => '1.04', #lib/charnames.pm
5384 'Class::ISA' => '0.32', #lib/Class/ISA.pm
5385 'Class::Struct' => '0.63', #lib/Class/Struct.pm
5386 'Config' => undef, #lib/Config.pm
5387 'constant' => '1.04', #lib/constant.pm
5388 'CPAN' => '1.76_01', #lib/CPAN.pm
5389 'CPAN::FirstTime' => '1.60 ', #lib/CPAN/FirstTime.pm
5390 'CPAN::Nox' => '1.03', #lib/CPAN/Nox.pm
5391 'Cwd' => '3.01', #lib/Cwd.pm
5392 'Data::Dumper' => '2.121_02', #lib/Data/Dumper.pm
5393 'DB' => '1.0', #lib/DB.pm
5394 'DB_File' => '1.810', #lib/DB_File.pm
5395 'DBM_Filter' => '0.01', #lib/DBM_Filter.pm
5396 'DBM_Filter::compress' => '0.01', #lib/DBM_Filter/compress.pm
5397 'DBM_Filter::encode' => '0.01', #lib/DBM_Filter/encode.pm
5398 'DBM_Filter::int32' => '0.01', #lib/DBM_Filter/int32.pm
5399 'DBM_Filter::null' => '0.01', #lib/DBM_Filter/null.pm
5400 'DBM_Filter::utf8' => '0.01', #lib/DBM_Filter/utf8.pm
5401 'Devel::DProf' => '20030813.00', #lib/Devel/DProf.pm
5402 'Devel::Peek' => '1.02', #lib/Devel/Peek.pm
5403 'Devel::PPPort' => '3.03', #lib/Devel/PPPort.pm
5404 'Devel::SelfStubber' => '1.03', #lib/Devel/SelfStubber.pm
5405 'diagnostics' => '1.14', #lib/diagnostics.pm
5406 'Digest' => '1.08', #lib/Digest.pm
5407 'Digest::base' => '1.00', #lib/Digest/base.pm
5408 'Digest::MD5' => '2.33', #lib/Digest/MD5.pm
5409 'DirHandle' => '1.00', #lib/DirHandle.pm
5410 'Dumpvalue' => '1.11', #lib/Dumpvalue.pm
5411 'DynaLoader' => '1.05', #lib/DynaLoader.pm
5412 'Encode' => '2.08', #lib/Encode.pm
5413 'Encode::Alias' => '2.02', #lib/Encode/Alias.pm
5414 'Encode::Byte' => '2.00', #lib/Encode/Byte.pm
5415 'Encode::CJKConstants' => '2.00', #lib/Encode/CJKConstants.pm
5416 'Encode::CN' => '2.00', #lib/Encode/CN.pm
5417 'Encode::CN::HZ' => '2.01', #lib/Encode/CN/HZ.pm
5418 'Encode::Config' => '2.00', #lib/Encode/Config.pm
5419 'Encode::EBCDIC' => '2.00', #lib/Encode/EBCDIC.pm
5420 'Encode::Encoder' => '2.00', #lib/Encode/Encoder.pm
5421 'Encode::Encoding' => '2.02', #lib/Encode/Encoding.pm
5422 'Encode::Guess' => '2.00', #lib/Encode/Guess.pm
5423 'Encode::JP' => '2.01', #lib/Encode/JP.pm
5424 'Encode::JP::H2Z' => '2.00', #lib/Encode/JP/H2Z.pm
5425 'Encode::JP::JIS7' => '2.00', #lib/Encode/JP/JIS7.pm
5426 'Encode::KR' => '2.00', #lib/Encode/KR.pm
5427 'Encode::KR::2022_KR' => '2.00', #lib/Encode/KR/2022_KR.pm
5428 'Encode::MIME::Header' => '2.00', #lib/Encode/MIME/Header.pm
5429 'Encode::Symbol' => '2.00', #lib/Encode/Symbol.pm
5430 'Encode::TW' => '2.00', #lib/Encode/TW.pm
5431 'Encode::Unicode' => '2.02', #lib/Encode/Unicode.pm
5432 'Encode::Unicode::UTF7' => '2.01', #lib/Encode/Unicode/UTF7.pm
5433 'encoding' => '2.01', #lib/encoding.pm
5434 'English' => '1.01', #lib/English.pm
5435 'Env' => '1.00', #lib/Env.pm
5436 'Errno' => '1.09_00', #lib/Errno.pm
5437 'Exporter' => '5.58', #lib/Exporter.pm
5438 'Exporter::Heavy' => '5.58', #lib/Exporter/Heavy.pm
5439 'ExtUtils::Command' => '1.05', #lib/ExtUtils/Command.pm
5440 'ExtUtils::Command::MM' => '0.03', #lib/ExtUtils/Command/MM.pm
5441 'ExtUtils::Constant' => '0.1401', #lib/ExtUtils/Constant.pm
5442 'ExtUtils::Embed' => '1.250601', #lib/ExtUtils/Embed.pm
5443 'ExtUtils::Install' => '1.32', #lib/ExtUtils/Install.pm
5444 'ExtUtils::Installed' => '0.08', #lib/ExtUtils/Installed.pm
5445 'ExtUtils::Liblist' => '1.01', #lib/ExtUtils/Liblist.pm
5446 'ExtUtils::Liblist::Kid'=> '1.3001', #lib/ExtUtils/Liblist/Kid.pm
5447 'ExtUtils::MakeMaker' => '6.17', #lib/ExtUtils/MakeMaker.pm
5448 'ExtUtils::MakeMaker::bytes'=> '0.01', #lib/ExtUtils/MakeMaker/bytes.pm
5449 'ExtUtils::MakeMaker::vmsish'=> '0.01', #lib/ExtUtils/MakeMaker/vmsish.pm
5450 'ExtUtils::Manifest' => '1.42', #lib/ExtUtils/Manifest.pm
5451 'ExtUtils::Miniperl' => undef, #lib/ExtUtils/Miniperl.pm
5452 'ExtUtils::Mkbootstrap' => '1.15', #lib/ExtUtils/Mkbootstrap.pm
5453 'ExtUtils::Mksymlists' => '1.19', #lib/ExtUtils/Mksymlists.pm
5454 'ExtUtils::MM' => '0.04', #lib/ExtUtils/MM.pm
5455 'ExtUtils::MM_Any' => '0.07', #lib/ExtUtils/MM_Any.pm
5456 'ExtUtils::MM_BeOS' => '1.04', #lib/ExtUtils/MM_BeOS.pm
5457 'ExtUtils::MM_Cygwin' => '1.06', #lib/ExtUtils/MM_Cygwin.pm
5458 'ExtUtils::MM_DOS' => '0.02', #lib/ExtUtils/MM_DOS.pm
5459 'ExtUtils::MM_MacOS' => '1.07', #lib/ExtUtils/MM_MacOS.pm
5460 'ExtUtils::MM_NW5' => '2.07_02', #lib/ExtUtils/MM_NW5.pm
5461 'ExtUtils::MM_OS2' => '1.04', #lib/ExtUtils/MM_OS2.pm
5462 'ExtUtils::MM_Unix' => '1.42', #lib/ExtUtils/MM_Unix.pm
5463 'ExtUtils::MM_UWIN' => '0.02', #lib/ExtUtils/MM_UWIN.pm
5464 'ExtUtils::MM_VMS' => '5.70', #lib/ExtUtils/MM_VMS.pm
5465 'ExtUtils::MM_Win32' => '1.09', #lib/ExtUtils/MM_Win32.pm
5466 'ExtUtils::MM_Win95' => '0.0301', #lib/ExtUtils/MM_Win95.pm
5467 'ExtUtils::MY' => '0.01', #lib/ExtUtils/MY.pm
5468 'ExtUtils::Packlist' => '0.04', #lib/ExtUtils/Packlist.pm
5469 'ExtUtils::testlib' => '1.15', #lib/ExtUtils/testlib.pm
5470 'ExtUtils::XSSymSet' => '1.0', #vms/ext/XSSymSet.pm
5471 'Fatal' => '1.03', #lib/Fatal.pm
5472 'Fcntl' => '1.05', #lib/Fcntl.pm
5473 'fields' => '2.03', #lib/fields.pm
5474 'File::Basename' => '2.73', #lib/File/Basename.pm
5475 'FileCache' => '1.04_01', #lib/FileCache.pm
5476 'File::CheckTree' => '4.3', #lib/File/CheckTree.pm
5477 'File::Compare' => '1.1003', #lib/File/Compare.pm
5478 'File::Copy' => '2.08', #lib/File/Copy.pm
5479 'File::DosGlob' => '1.00', #lib/File/DosGlob.pm
5480 'File::Find' => '1.07', #lib/File/Find.pm
5481 'File::Glob' => '1.03', #lib/File/Glob.pm
5482 'FileHandle' => '2.01', #lib/FileHandle.pm
5483 'File::Path' => '1.06', #lib/File/Path.pm
5484 'File::Spec' => '3.01', #lib/File/Spec.pm
5485 'File::Spec::Cygwin' => '1.1', #lib/File/Spec/Cygwin.pm
5486 'File::Spec::Epoc' => '1.1', #lib/File/Spec/Epoc.pm
5487 'File::Spec::Functions' => '1.3', #lib/File/Spec/Functions.pm
5488 'File::Spec::Mac' => '1.4', #lib/File/Spec/Mac.pm
5489 'File::Spec::OS2' => '1.2', #lib/File/Spec/OS2.pm
5490 'File::Spec::Unix' => '1.5', #lib/File/Spec/Unix.pm
5491 'File::Spec::VMS' => '1.4', #lib/File/Spec/VMS.pm
5492 'File::Spec::Win32' => '1.5', #lib/File/Spec/Win32.pm
5493 'File::stat' => '1.00', #lib/File/stat.pm
5494 'File::Temp' => '0.14', #lib/File/Temp.pm
5495 'filetest' => '1.01', #lib/filetest.pm
5496 'Filter::Simple' => '0.78', #lib/Filter/Simple.pm
5497 'Filter::Util::Call' => '1.0601', #lib/Filter/Util/Call.pm
5498 'FindBin' => '1.44', #lib/FindBin.pm
5499 'GDBM_File' => '1.07', #lib/GDBM_File.pm
5500 'Getopt::Long' => '2.34', #lib/Getopt/Long.pm
5501 'Getopt::Std' => '1.05', #lib/Getopt/Std.pm
5502 'Hash::Util' => '0.05', #lib/Hash/Util.pm
5503 'I18N::Collate' => '1.00', #lib/I18N/Collate.pm
5504 'I18N::Langinfo' => '0.02', #lib/I18N/Langinfo.pm
5505 'I18N::LangTags' => '0.35', #lib/I18N/LangTags.pm
5506 'I18N::LangTags::Detect'=> '1.03', #lib/I18N/LangTags/Detect.pm
5507 'I18N::LangTags::List' => '0.35', #lib/I18N/LangTags/List.pm
5508 'if' => '0.03', #lib/if.pm
5509 'integer' => '1.00', #lib/integer.pm
5510 'IO' => '1.21', #lib/IO.pm
5511 'IO::Dir' => '1.04', #lib/IO/Dir.pm
5512 'IO::File' => '1.10', #lib/IO/File.pm
5513 'IO::Handle' => '1.24', #lib/IO/Handle.pm
5514 'IO::Pipe' => '1.123', #lib/IO/Pipe.pm
5515 'IO::Poll' => '0.06', #lib/IO/Poll.pm
5516 'IO::Seekable' => '1.09', #lib/IO/Seekable.pm
5517 'IO::Select' => '1.16', #lib/IO/Select.pm
5518 'IO::Socket' => '1.28', #lib/IO/Socket.pm
5519 'IO::Socket::INET' => '1.27', #lib/IO/Socket/INET.pm
5520 'IO::Socket::UNIX' => '1.21', #lib/IO/Socket/UNIX.pm
5521 'IPC::Msg' => '1.02', #lib/IPC/Msg.pm
5522 'IPC::Open2' => '1.01', #lib/IPC/Open2.pm
5523 'IPC::Open3' => '1.0106', #lib/IPC/Open3.pm
5524 'IPC::Semaphore' => '1.02', #lib/IPC/Semaphore.pm
5525 'IPC::SysV' => '1.04', #lib/IPC/SysV.pm
5526 'JNI' => '0.2', #jpl/JNI/JNI.pm
5527 'JPL::AutoLoader' => undef, #jpl/JPL/AutoLoader.pm
5528 'JPL::Class' => undef, #jpl/JPL/Class.pm
5529 'JPL::Compile' => undef, #jpl/JPL/Compile.pm
5530 'less' => '0.01', #lib/less.pm
5531 'lib' => '0.5565', #lib/lib.pm
5532 'List::Util' => '1.14', #lib/List/Util.pm
5533 'locale' => '1.00', #lib/locale.pm
5534 'Locale::Constants' => '2.07', #lib/Locale/Constants.pm
5535 'Locale::Country' => '2.07', #lib/Locale/Country.pm
5536 'Locale::Currency' => '2.07', #lib/Locale/Currency.pm
5537 'Locale::Language' => '2.07', #lib/Locale/Language.pm
5538 'Locale::Maketext' => '1.09', #lib/Locale/Maketext.pm
5539 'Locale::Maketext::GutsLoader'=> undef, #lib/Locale/Maketext/GutsLoader.pm
5540 'Locale::Maketext::Guts'=> undef, #lib/Locale/Maketext/Guts.pm
5541 'Locale::Script' => '2.07', #lib/Locale/Script.pm
5542 'Math::BigFloat' => '1.47', #lib/Math/BigFloat.pm
5543 'Math::BigFloat::Trace' => '0.01', #lib/Math/BigFloat/Trace.pm
5544 'Math::BigInt' => '1.73', #lib/Math/BigInt.pm
5545 'Math::BigInt::Calc' => '0.43', #lib/Math/BigInt/Calc.pm
5546 'Math::BigInt::CalcEmu' => '0.04', #lib/Math/BigInt/CalcEmu.pm
5547 'Math::BigInt::Trace' => '0.01', #lib/Math/BigInt/Trace.pm
5548 'Math::BigRat' => '0.13', #lib/Math/BigRat.pm
5549 'Math::Complex' => '1.34', #lib/Math/Complex.pm
5550 'Math::Trig' => '1.02', #lib/Math/Trig.pm
5551 'Memoize' => '1.01', #lib/Memoize.pm
5552 'Memoize::AnyDBM_File' => '0.65', #lib/Memoize/AnyDBM_File.pm
5553 'Memoize::Expire' => '1.00', #lib/Memoize/Expire.pm
5554 'Memoize::ExpireFile' => '1.01', #lib/Memoize/ExpireFile.pm
5555 'Memoize::ExpireTest' => '0.65', #lib/Memoize/ExpireTest.pm
5556 'Memoize::NDBM_File' => '0.65', #lib/Memoize/NDBM_File.pm
5557 'Memoize::SDBM_File' => '0.65', #lib/Memoize/SDBM_File.pm
5558 'Memoize::Storable' => '0.65', #lib/Memoize/Storable.pm
5559 'MIME::Base64' => '3.05', #lib/MIME/Base64.pm
5560 'MIME::QuotedPrint' => '3.03', #lib/MIME/QuotedPrint.pm
5561 'NDBM_File' => '1.05', #lib/NDBM_File.pm
5562 'Net::Cmd' => '2.26', #lib/Net/Cmd.pm
5563 'Net::Config' => '1.10', #lib/Net/Config.pm
5564 'Net::Domain' => '2.19', #lib/Net/Domain.pm
5565 'Net::FTP' => '2.75', #lib/Net/FTP.pm
5566 'Net::FTP::A' => '1.16', #lib/Net/FTP/A.pm
5567 'Net::FTP::dataconn' => '0.11', #lib/Net/FTP/dataconn.pm
5568 'Net::FTP::E' => '0.01', #lib/Net/FTP/E.pm
5569 'Net::FTP::I' => '1.12', #lib/Net/FTP/I.pm
5570 'Net::FTP::L' => '0.01', #lib/Net/FTP/L.pm
5571 'Net::hostent' => '1.01', #lib/Net/hostent.pm
5572 'Net::netent' => '1.00', #lib/Net/netent.pm
5573 'Net::Netrc' => '2.12', #lib/Net/Netrc.pm
5574 'Net::NNTP' => '2.23', #lib/Net/NNTP.pm
5575 'Net::Ping' => '2.31', #lib/Net/Ping.pm
5576 'Net::POP3' => '2.28', #lib/Net/POP3.pm
5577 'Net::protoent' => '1.00', #lib/Net/protoent.pm
5578 'Net::servent' => '1.01', #lib/Net/servent.pm
5579 'Net::SMTP' => '2.29', #lib/Net/SMTP.pm
5580 'Net::Time' => '2.10', #lib/Net/Time.pm
5581 'NEXT' => '0.60', #lib/NEXT.pm
5582 'O' => '1.00', #lib/O.pm
5583 'ODBM_File' => '1.05', #ext/ODBM_File/ODBM_File.pm
5584 'Opcode' => '1.05', #lib/Opcode.pm
5585 'open' => '1.04', #lib/open.pm
5586 'ops' => '1.00', #lib/ops.pm
5587 'OS2::DLL' => '1.02', #os2/OS2/REXX/DLL/DLL.pm
5588 'OS2::ExtAttr' => '0.02', #os2/OS2/ExtAttr/ExtAttr.pm
5589 'OS2::PrfDB' => '0.03', #os2/OS2/PrfDB/PrfDB.pm
5590 'OS2::Process' => '1.01', #os2/OS2/Process/Process.pm
5591 'OS2::REXX' => '1.02', #os2/OS2/REXX/REXX.pm
5592 'overload' => '1.02', #lib/overload.pm
5593 'PerlIO' => '1.03', #lib/PerlIO.pm
5594 'PerlIO::encoding' => '0.07', #lib/PerlIO/encoding.pm
5595 'PerlIO::scalar' => '0.02', #lib/PerlIO/scalar.pm
5596 'PerlIO::via' => '0.02', #lib/PerlIO/via.pm
5597 'PerlIO::via::QuotedPrint'=> '0.06', #lib/PerlIO/via/QuotedPrint.pm
5598 'Pod::Checker' => '1.42', #lib/Pod/Checker.pm
5599 'Pod::Find' => '0.2401', #lib/Pod/Find.pm
5600 'Pod::Functions' => '1.02', #lib/Pod/Functions.pm
5601 'Pod::Html' => '1.0502', #lib/Pod/Html.pm
5602 'Pod::InputObjects' => '1.14', #lib/Pod/InputObjects.pm
5603 'Pod::LaTeX' => '0.56', #lib/Pod/LaTeX.pm
5604 'Pod::Man' => '1.37', #lib/Pod/Man.pm
5605 'Pod::ParseLink' => '1.06', #lib/Pod/ParseLink.pm
5606 'Pod::Parser' => '1.14', #lib/Pod/Parser.pm
5607 'Pod::ParseUtils' => '1.2', #lib/Pod/ParseUtils.pm
5608 'Pod::Perldoc' => '3.13', #lib/Pod/Perldoc.pm
5609 'Pod::Perldoc::BaseTo' => undef, #lib/Pod/Perldoc/BaseTo.pm
5610 'Pod::Perldoc::GetOptsOO'=> undef, #lib/Pod/Perldoc/GetOptsOO.pm
5611 'Pod::Perldoc::ToChecker'=> undef, #lib/Pod/Perldoc/ToChecker.pm
5612 'Pod::Perldoc::ToMan' => undef, #lib/Pod/Perldoc/ToMan.pm
5613 'Pod::Perldoc::ToNroff' => undef, #lib/Pod/Perldoc/ToNroff.pm
5614 'Pod::Perldoc::ToPod' => undef, #lib/Pod/Perldoc/ToPod.pm
5615 'Pod::Perldoc::ToRtf' => undef, #lib/Pod/Perldoc/ToRtf.pm
5616 'Pod::Perldoc::ToText' => undef, #lib/Pod/Perldoc/ToText.pm
5617 'Pod::Perldoc::ToTk' => 'undef', #lib/Pod/Perldoc/ToTk.pm
5618 'Pod::Perldoc::ToXml' => undef, #lib/Pod/Perldoc/ToXml.pm
5619 'Pod::Plainer' => '0.01', #lib/Pod/Plainer.pm
5620 'Pod::PlainText' => '2.02', #lib/Pod/PlainText.pm
5621 'Pod::Select' => '1.13', #lib/Pod/Select.pm
5622 'Pod::Text' => '2.21', #lib/Pod/Text.pm
5623 'Pod::Text::Color' => '1.04', #lib/Pod/Text/Color.pm
5624 'Pod::Text::Overstrike' => '1.1', #lib/Pod/Text/Overstrike.pm
5625 'Pod::Text::Termcap' => '1.11', #lib/Pod/Text/Termcap.pm
5626 'Pod::Usage' => '1.16', #lib/Pod/Usage.pm
5627 'POSIX' => '1.08', #lib/POSIX.pm
5628 're' => '0.04', #lib/re.pm
5629 'Safe' => '2.11', #lib/Safe.pm
5630 'Scalar::Util' => '1.14', #lib/Scalar/Util.pm
5631 'SDBM_File' => '1.04', #lib/SDBM_File.pm
5632 'Search::Dict' => '1.02', #lib/Search/Dict.pm
5633 'SelectSaver' => '1.00', #lib/SelectSaver.pm
5634 'SelfLoader' => '1.0904', #lib/SelfLoader.pm
5635 'Shell' => '0.6', #lib/Shell.pm
5636 'sigtrap' => '1.02', #lib/sigtrap.pm
5637 'Socket' => '1.77', #lib/Socket.pm
5638 'sort' => '1.02', #lib/sort.pm
5639 'Storable' => '2.13', #lib/Storable.pm
5640 'strict' => '1.03', #lib/strict.pm
5641 'subs' => '1.00', #lib/subs.pm
5642 'Switch' => '2.10', #lib/Switch.pm
5643 'Symbol' => '1.05', #lib/Symbol.pm
5644 'Sys::Hostname' => '1.11', #lib/Sys/Hostname.pm
5645 'Sys::Syslog' => '0.05', #lib/Sys/Syslog.pm
5646 'Term::ANSIColor' => '1.08', #lib/Term/ANSIColor.pm
5647 'Term::Cap' => '1.09', #lib/Term/Cap.pm
5648 'Term::Complete' => '1.401', #lib/Term/Complete.pm
5649 'Term::ReadLine' => '1.01', #lib/Term/ReadLine.pm
5650 'Test' => '1.25', #lib/Test.pm
5651 'Test::Builder' => '0.17', #lib/Test/Builder.pm
5652 'Test::Harness' => '2.42', #lib/Test/Harness.pm
5653 'Test::Harness::Assert' => '0.02', #lib/Test/Harness/Assert.pm
5654 'Test::Harness::Iterator'=> '0.02', #lib/Test/Harness/Iterator.pm
5655 'Test::Harness::Straps' => '0.19', #lib/Test/Harness/Straps.pm
5656 'Test::More' => '0.47', #lib/Test/More.pm
5657 'Test::Simple' => '0.47', #lib/Test/Simple.pm
5658 'Text::Abbrev' => '1.01', #lib/Text/Abbrev.pm
5659 'Text::Balanced' => '1.95', #lib/Text/Balanced.pm
5660 'Text::ParseWords' => '3.23', #lib/Text/ParseWords.pm
5661 'Text::Soundex' => '1.01', #lib/Text/Soundex.pm
5662 'Text::Tabs' => '98.112801', #lib/Text/Tabs.pm
5663 'Text::Wrap' => '2001.09292', #lib/Text/Wrap.pm
5664 'Thread' => '2.00', #lib/Thread.pm
5665 'Thread::Queue' => '2.00', #lib/Thread/Queue.pm
5666 'threads' => '1.05', #lib/threads.pm
5667 'Thread::Semaphore' => '2.01', #lib/Thread/Semaphore.pm
5668 'Thread::Signal' => '1.00', #ext/Thread/Thread/Signal.pm
5669 'Thread::Specific' => '1.00', #ext/Thread/Thread/Specific.pm
5670 'threads::shared' => '0.92', #lib/threads/shared.pm
5671 'Tie::Array' => '1.03', #lib/Tie/Array.pm
5672 'Tie::File' => '0.97', #lib/Tie/File.pm
5673 'Tie::Handle' => '4.1', #lib/Tie/Handle.pm
5674 'Tie::Hash' => '1.01', #lib/Tie/Hash.pm
5675 'Tie::Memoize' => '1.0', #lib/Tie/Memoize.pm
5676 'Tie::RefHash' => '1.31', #lib/Tie/RefHash.pm
5677 'Tie::Scalar' => '1.00', #lib/Tie/Scalar.pm
5678 'Tie::SubstrHash' => '1.00', #lib/Tie/SubstrHash.pm
5679 'Time::gmtime' => '1.02', #lib/Time/gmtime.pm
5680 'Time::HiRes' => '1.65', #lib/Time/HiRes.pm
5681 'Time::Local' => '1.10', #lib/Time/Local.pm
5682 'Time::localtime' => '1.02', #lib/Time/localtime.pm
5683 'Time::tm' => '1.00', #lib/Time/tm.pm
5684 'Unicode::Collate' => '0.40', #lib/Unicode/Collate.pm
5685 'Unicode::Normalize' => '0.30', #lib/Unicode/Normalize.pm
5686 'Unicode::UCD' => '0.22', #lib/Unicode/UCD.pm
5687 'UNIVERSAL' => '1.01', #lib/UNIVERSAL.pm
5688 'Unicode' => '4.0.1', # lib/unicore/version
5689 'User::grent' => '1.00', #lib/User/grent.pm
5690 'User::pwent' => '1.00', #lib/User/pwent.pm
5691 'utf8' => '1.04', #lib/utf8.pm
5692 'vars' => '1.01', #lib/vars.pm
5693 'VMS::DCLsym' => '1.02', #vms/ext/DCLsym/DCLsym.pm
5694 'VMS::Filespec' => '1.11', #vms/ext/Filespec.pm
5695 'vmsish' => '1.01', #lib/vmsish.pm
5696 'VMS::Stdio' => '2.3', #vms/ext/Stdio/Stdio.pm
5697 'warnings' => '1.03', #lib/warnings.pm
5698 'warnings::register' => '1.00', #lib/warnings/register.pm
5699 'XS::APItest' => '0.05', #lib/XS/APItest.pm
5700 'XSLoader' => '0.02', #lib/XSLoader.pm
5701 'XS::Typemap' => '0.01', #lib/XS/Typemap.pm
5704 5.009002 => {
5705 'AnyDBM_File' => '1.00',
5706 'Attribute::Handlers' => '0.78_01',
5707 'AutoLoader' => '5.60',
5708 'AutoSplit' => '1.04',
5709 'B' => '1.07',
5710 'B::Asmdata' => '1.01',
5711 'B::Assembler' => '0.07',
5712 'B::Bblock' => '1.02',
5713 'B::Bytecode' => '1.01',
5714 'B::C' => '1.04',
5715 'B::CC' => '1.00',
5716 'B::Concise' => '0.64',
5717 'B::Debug' => '1.02',
5718 'B::Deparse' => '0.69',
5719 'B::Disassembler' => '1.03',
5720 'B::Lint' => '1.03',
5721 'B::Showlex' => '1.02',
5722 'B::Stackobj' => '1.00',
5723 'B::Stash' => '1.00',
5724 'B::Terse' => '1.02',
5725 'B::Xref' => '1.01',
5726 'Benchmark' => '1.07',
5727 'ByteLoader' => '0.05',
5728 'CGI' => '3.07',
5729 'CGI::Apache' => '1.00',
5730 'CGI::Carp' => '1.29',
5731 'CGI::Cookie' => '1.25',
5732 'CGI::Fast' => '1.05',
5733 'CGI::Pretty' => '1.08',
5734 'CGI::Push' => '1.04',
5735 'CGI::Switch' => '1.00',
5736 'CGI::Util' => '1.5',
5737 'CPAN' => '1.76_01',
5738 'CPAN::FirstTime' => '1.60 ',
5739 'CPAN::Nox' => '1.03',
5740 'Carp' => '1.04',
5741 'Carp::Heavy' => '1.04',
5742 'Class::ISA' => '0.33',
5743 'Class::Struct' => '0.63',
5744 'Config' => undef,
5745 'Config::Extensions' => '0.01',
5746 'Cwd' => '3.05',
5747 'DB' => '1.0',
5748 'DBM_Filter' => '0.01',
5749 'DBM_Filter::compress' => '0.01',
5750 'DBM_Filter::encode' => '0.01',
5751 'DBM_Filter::int32' => '0.01',
5752 'DBM_Filter::null' => '0.01',
5753 'DBM_Filter::utf8' => '0.01',
5754 'DB_File' => '1.811',
5755 'DCLsym' => '1.02',
5756 'Data::Dumper' => '2.121_04',
5757 'Devel::DProf' => '20030813.00',
5758 'Devel::PPPort' => '3.06',
5759 'Devel::Peek' => '1.02',
5760 'Devel::SelfStubber' => '1.03',
5761 'Digest' => '1.10',
5762 'Digest::MD5' => '2.33',
5763 'Digest::base' => '1.00',
5764 'Digest::file' => '0.01',
5765 'DirHandle' => '1.00',
5766 'Dumpvalue' => '1.11',
5767 'DynaLoader' => '1.07',
5768 'Encode' => '2.09',
5769 'Encode::Alias' => '2.02',
5770 'Encode::Byte' => '2.00',
5771 'Encode::CJKConstants' => '2.00',
5772 'Encode::CN' => '2.00',
5773 'Encode::CN::HZ' => '2.01',
5774 'Encode::Config' => '2.00',
5775 'Encode::EBCDIC' => '2.00',
5776 'Encode::Encoder' => '2.00',
5777 'Encode::Encoding' => '2.02',
5778 'Encode::Guess' => '2.00',
5779 'Encode::JP' => '2.01',
5780 'Encode::JP::H2Z' => '2.00',
5781 'Encode::JP::JIS7' => '2.00',
5782 'Encode::KR' => '2.00',
5783 'Encode::KR::2022_KR' => '2.00',
5784 'Encode::MIME::Header' => '2.00',
5785 'Encode::Symbol' => '2.00',
5786 'Encode::TW' => '2.00',
5787 'Encode::Unicode' => '2.02',
5788 'Encode::Unicode::UTF7' => '2.01',
5789 'English' => '1.03',
5790 'Env' => '1.00',
5791 'Errno' => '1.09_01',
5792 'Exporter' => '5.59',
5793 'Exporter::Heavy' => '5.59',
5794 'ExtUtils::Command' => '1.07',
5795 'ExtUtils::Command::MM' => '0.03_01',
5796 'ExtUtils::Constant' => '0.16',
5797 'ExtUtils::Constant::Base'=> '0.01',
5798 'ExtUtils::Constant::Utils'=> '0.01',
5799 'ExtUtils::Constant::XS'=> '0.01',
5800 'ExtUtils::Embed' => '1.26',
5801 'ExtUtils::Install' => '1.32',
5802 'ExtUtils::Installed' => '0.08',
5803 'ExtUtils::Liblist' => '1.01',
5804 'ExtUtils::Liblist::Kid'=> '1.3',
5805 'ExtUtils::MM' => '0.04',
5806 'ExtUtils::MM_Any' => '0.10',
5807 'ExtUtils::MM_BeOS' => '1.04',
5808 'ExtUtils::MM_Cygwin' => '1.07',
5809 'ExtUtils::MM_DOS' => '0.02',
5810 'ExtUtils::MM_MacOS' => '1.08',
5811 'ExtUtils::MM_NW5' => '2.07',
5812 'ExtUtils::MM_OS2' => '1.04',
5813 'ExtUtils::MM_UWIN' => '0.02',
5814 'ExtUtils::MM_Unix' => '1.46_01',
5815 'ExtUtils::MM_VMS' => '5.71',
5816 'ExtUtils::MM_Win32' => '1.10',
5817 'ExtUtils::MM_Win95' => '0.03',
5818 'ExtUtils::MY' => '0.01',
5819 'ExtUtils::MakeMaker' => '6.25',
5820 'ExtUtils::MakeMaker::bytes'=> '0.01',
5821 'ExtUtils::MakeMaker::vmsish'=> '0.01',
5822 'ExtUtils::Manifest' => '1.44',
5823 'ExtUtils::Miniperl' => undef,
5824 'ExtUtils::Mkbootstrap' => '1.15',
5825 'ExtUtils::Mksymlists' => '1.19',
5826 'ExtUtils::Packlist' => '0.04',
5827 'ExtUtils::testlib' => '1.15',
5828 'Fatal' => '1.04',
5829 'Fcntl' => '1.05',
5830 'File::Basename' => '2.73',
5831 'File::CheckTree' => '4.3',
5832 'File::Compare' => '1.1003',
5833 'File::Copy' => '2.08',
5834 'File::DosGlob' => '1.00',
5835 'File::Find' => '1.09',
5836 'File::Glob' => '1.04',
5837 'File::Path' => '1.06',
5838 'File::Spec' => '3.05',
5839 'File::Spec::Cygwin' => '1.1',
5840 'File::Spec::Epoc' => '1.1',
5841 'File::Spec::Functions' => '1.3',
5842 'File::Spec::Mac' => '1.4',
5843 'File::Spec::OS2' => '1.2',
5844 'File::Spec::Unix' => '1.5',
5845 'File::Spec::VMS' => '1.4',
5846 'File::Spec::Win32' => '1.5',
5847 'File::Temp' => '0.16',
5848 'File::stat' => '1.00',
5849 'FileCache' => '1.04_01',
5850 'FileHandle' => '2.01',
5851 'VMS::Filespec' => '1.11',
5852 'Filter::Simple' => '0.78',
5853 'Filter::Util::Call' => '1.0601',
5854 'FindBin' => '1.44',
5855 'GDBM_File' => '1.07',
5856 'Getopt::Long' => '2.3401',
5857 'Getopt::Std' => '1.05',
5858 'Hash::Util' => '0.05',
5859 'I18N::Collate' => '1.00',
5860 'I18N::LangTags' => '0.35',
5861 'I18N::LangTags::Detect'=> '1.03',
5862 'I18N::LangTags::List' => '0.35',
5863 'I18N::Langinfo' => '0.02',
5864 'IO' => '1.21',
5865 'IO::Dir' => '1.04',
5866 'IO::File' => '1.10',
5867 'IO::Handle' => '1.24',
5868 'IO::Pipe' => '1.123',
5869 'IO::Poll' => '0.06',
5870 'IO::Seekable' => '1.09',
5871 'IO::Select' => '1.16',
5872 'IO::Socket' => '1.28',
5873 'IO::Socket::INET' => '1.27',
5874 'IO::Socket::UNIX' => '1.21',
5875 'IPC::Msg' => '1.02',
5876 'IPC::Open2' => '1.01',
5877 'IPC::Open3' => '1.0106',
5878 'IPC::Semaphore' => '1.02',
5879 'IPC::SysV' => '1.04',
5880 'List::Util' => '1.14',
5881 'Locale::Constants' => '2.07',
5882 'Locale::Country' => '2.07',
5883 'Locale::Currency' => '2.07',
5884 'Locale::Language' => '2.07',
5885 'Locale::Maketext' => '1.09',
5886 'Locale::Maketext::Guts'=> undef,
5887 'Locale::Maketext::GutsLoader'=> undef,
5888 'Locale::Script' => '2.07',
5889 'MIME::Base64' => '3.05',
5890 'MIME::QuotedPrint' => '3.03',
5891 'Math::BigFloat' => '1.49',
5892 'Math::BigFloat::Trace' => '0.01',
5893 'Math::BigInt' => '1.75',
5894 'Math::BigInt::Calc' => '0.45',
5895 'Math::BigInt::CalcEmu' => '0.05',
5896 'Math::BigInt::Trace' => '0.01',
5897 'Math::BigRat' => '0.14',
5898 'Math::Complex' => '1.34',
5899 'Math::Trig' => '1.02',
5900 'Memoize' => '1.01_01',
5901 'Memoize::AnyDBM_File' => '0.65',
5902 'Memoize::Expire' => '1.00',
5903 'Memoize::ExpireFile' => '1.01',
5904 'Memoize::ExpireTest' => '0.65',
5905 'Memoize::NDBM_File' => '0.65',
5906 'Memoize::SDBM_File' => '0.65',
5907 'Memoize::Storable' => '0.65',
5908 'Module::CoreList' => '1.99',
5909 'NDBM_File' => '1.05',
5910 'NEXT' => '0.60_01',
5911 'Net::Cmd' => '2.26',
5912 'Net::Config' => '1.10',
5913 'Net::Domain' => '2.19',
5914 'Net::FTP' => '2.75',
5915 'Net::FTP::A' => '1.16',
5916 'Net::FTP::E' => '0.01',
5917 'Net::FTP::I' => '1.12',
5918 'Net::FTP::L' => '0.01',
5919 'Net::FTP::dataconn' => '0.11',
5920 'Net::NNTP' => '2.23',
5921 'Net::Netrc' => '2.12',
5922 'Net::POP3' => '2.28',
5923 'Net::Ping' => '2.31',
5924 'Net::SMTP' => '2.29',
5925 'Net::Time' => '2.10',
5926 'Net::hostent' => '1.01',
5927 'Net::netent' => '1.00',
5928 'Net::protoent' => '1.00',
5929 'Net::servent' => '1.01',
5930 'O' => '1.00',
5931 'ODBM_File' => '1.05',
5932 'Opcode' => '1.06',
5933 'POSIX' => '1.08',
5934 'PerlIO' => '1.03',
5935 'PerlIO::encoding' => '0.07',
5936 'PerlIO::scalar' => '0.02',
5937 'PerlIO::via' => '0.02',
5938 'PerlIO::via::QuotedPrint'=> '0.06',
5939 'Pod::Checker' => '1.42',
5940 'Pod::Find' => '1.3',
5941 'Pod::Functions' => '1.02',
5942 'Pod::Html' => '1.0502',
5943 'Pod::InputObjects' => '1.3',
5944 'Pod::LaTeX' => '0.58',
5945 'Pod::Man' => '1.37',
5946 'Pod::ParseLink' => '1.06',
5947 'Pod::ParseUtils' => '1.3',
5948 'Pod::Parser' => '1.3',
5949 'Pod::Perldoc' => '3.14',
5950 'Pod::Perldoc::BaseTo' => undef,
5951 'Pod::Perldoc::GetOptsOO'=> undef,
5952 'Pod::Perldoc::ToChecker'=> undef,
5953 'Pod::Perldoc::ToMan' => undef,
5954 'Pod::Perldoc::ToNroff' => undef,
5955 'Pod::Perldoc::ToPod' => undef,
5956 'Pod::Perldoc::ToRtf' => undef,
5957 'Pod::Perldoc::ToText' => undef,
5958 'Pod::Perldoc::ToTk' => undef,
5959 'Pod::Perldoc::ToXml' => undef,
5960 'Pod::PlainText' => '2.02',
5961 'Pod::Plainer' => '0.01',
5962 'Pod::Select' => '1.3',
5963 'Pod::Text' => '2.21',
5964 'Pod::Text::Color' => '1.04',
5965 'Pod::Text::Overstrike' => '1.1',
5966 'Pod::Text::Termcap' => '1.11',
5967 'Pod::Usage' => '1.3',
5968 'SDBM_File' => '1.04',
5969 'Safe' => '2.11',
5970 'Scalar::Util' => '1.14_1',
5971 'Search::Dict' => '1.02',
5972 'SelectSaver' => '1.01',
5973 'SelfLoader' => '1.0904',
5974 'Shell' => '0.6',
5975 'Socket' => '1.77',
5976 'Stdio' => '2.3',
5977 'Storable' => '2.14',
5978 'Switch' => '2.10',
5979 'Symbol' => '1.05',
5980 'Sys::Hostname' => '1.11',
5981 'Sys::Syslog' => '0.06',
5982 'Term::ANSIColor' => '1.09',
5983 'Term::Cap' => '1.09',
5984 'Term::Complete' => '1.402',
5985 'Term::ReadLine' => '1.01',
5986 'Test' => '1.25',
5987 'Test::Builder' => '0.22',
5988 'Test::Harness' => '2.46',
5989 'Test::Harness::Assert' => '0.02',
5990 'Test::Harness::Iterator'=> '0.02',
5991 'Test::Harness::Straps' => '0.20_01',
5992 'Test::More' => '0.54',
5993 'Test::Simple' => '0.54',
5994 'Text::Abbrev' => '1.01',
5995 'Text::Balanced' => '1.95_01',
5996 'Text::ParseWords' => '3.24',
5997 'Text::Soundex' => '1.01',
5998 'Text::Tabs' => '98.112801',
5999 'Text::Wrap' => '2001.09292',
6000 'Thread' => '2.00',
6001 'Thread::Queue' => '2.00',
6002 'Thread::Semaphore' => '2.01',
6003 'Thread::Signal' => '1.00',
6004 'Thread::Specific' => '1.00',
6005 'Tie::Array' => '1.03',
6006 'Tie::File' => '0.97',
6007 'Tie::Handle' => '4.1',
6008 'Tie::Hash' => '1.01',
6009 'Tie::Memoize' => '1.0',
6010 'Tie::RefHash' => '1.32',
6011 'Tie::Scalar' => '1.00',
6012 'Tie::SubstrHash' => '1.00',
6013 'Time::HiRes' => '1.66',
6014 'Time::Local' => '1.11',
6015 'Time::gmtime' => '1.02',
6016 'Time::localtime' => '1.02',
6017 'Time::tm' => '1.00',
6018 'UNIVERSAL' => '1.02',
6019 'Unicode' => '4.0.1',
6020 'Unicode::Collate' => '0.40',
6021 'Unicode::Normalize' => '0.30',
6022 'Unicode::UCD' => '0.22',
6023 'User::grent' => '1.00',
6024 'User::pwent' => '1.00',
6025 'Win32' => '0.23',
6026 'XS::APItest' => '0.05',
6027 'XS::Typemap' => '0.01',
6028 'XSLoader' => '0.03',
6029 'XSSymSet' => '1.0',
6030 'assertions' => '0.01',
6031 'assertions::activate' => '0.01',
6032 'attributes' => '0.06',
6033 'attrs' => '1.01',
6034 'autouse' => '1.04',
6035 'base' => '2.06',
6036 'bigint' => '0.06',
6037 'bignum' => '0.16',
6038 'bigrat' => '0.07',
6039 'blib' => '1.02',
6040 'bytes' => '1.01',
6041 'charnames' => '1.04',
6042 'constant' => '1.05',
6043 'diagnostics' => '1.14',
6044 'encoding' => '2.01',
6045 'encoding::warnings' => '0.05',
6046 'fields' => '2.03',
6047 'filetest' => '1.01',
6048 'if' => '0.0401',
6049 'integer' => '1.00',
6050 'less' => '0.01',
6051 'lib' => '0.5565',
6052 'locale' => '1.00',
6053 'open' => '1.04',
6054 'ops' => '1.00',
6055 'overload' => '1.03',
6056 're' => '0.05',
6057 'sigtrap' => '1.02',
6058 'sort' => '1.02',
6059 'strict' => '1.03',
6060 'subs' => '1.00',
6061 'threads' => '1.05',
6062 'threads::shared' => '0.92',
6063 'utf8' => '1.04',
6064 'vars' => '1.01',
6065 'version' => '0.42',
6066 'vmsish' => '1.01',
6067 'warnings' => '1.04',
6068 'warnings::register' => '1.00',
6071 5.008007 => {
6072 'AnyDBM_File' => '1.00',
6073 'Attribute::Handlers' => '0.78_01',
6074 'AutoLoader' => '5.60',
6075 'AutoSplit' => '1.04',
6076 'B' => '1.09',
6077 'B::Asmdata' => '1.01',
6078 'B::Assembler' => '0.07',
6079 'B::Bblock' => '1.02',
6080 'B::Bytecode' => '1.01',
6081 'B::C' => '1.04',
6082 'B::CC' => '1.00',
6083 'B::Concise' => '0.65',
6084 'B::Debug' => '1.02',
6085 'B::Deparse' => '0.7',
6086 'B::Disassembler' => '1.04',
6087 'B::Lint' => '1.03',
6088 'B::Showlex' => '1.02',
6089 'B::Stackobj' => '1.00',
6090 'B::Stash' => '1.00',
6091 'B::Terse' => '1.03',
6092 'B::Xref' => '1.01',
6093 'Benchmark' => '1.07',
6094 'ByteLoader' => '0.05',
6095 'CGI' => '3.10',
6096 'CGI::Apache' => '1.00',
6097 'CGI::Carp' => '1.29',
6098 'CGI::Cookie' => '1.25',
6099 'CGI::Fast' => '1.05',
6100 'CGI::Pretty' => '1.08',
6101 'CGI::Push' => '1.04',
6102 'CGI::Switch' => '1.00',
6103 'CGI::Util' => '1.5',
6104 'CPAN' => '1.76_01',
6105 'CPAN::FirstTime' => '1.60 ',
6106 'CPAN::Nox' => '1.03',
6107 'Carp' => '1.04',
6108 'Carp::Heavy' => '1.04',
6109 'Class::ISA' => '0.33',
6110 'Class::Struct' => '0.63',
6111 'Config' => undef,
6112 'Cwd' => '3.05',
6113 'DB' => '1.0',
6114 'DBM_Filter' => '0.01',
6115 'DBM_Filter::compress' => '0.01',
6116 'DBM_Filter::encode' => '0.01',
6117 'DBM_Filter::int32' => '0.01',
6118 'DBM_Filter::null' => '0.01',
6119 'DBM_Filter::utf8' => '0.01',
6120 'DB_File' => '1.811',
6121 'DCLsym' => '1.02',
6122 'Data::Dumper' => '2.121_04',
6123 'Devel::DProf' => '20050310.00',
6124 'Devel::PPPort' => '3.06',
6125 'Devel::Peek' => '1.02',
6126 'Devel::SelfStubber' => '1.03',
6127 'Digest' => '1.10',
6128 'Digest::MD5' => '2.33',
6129 'Digest::base' => '1.00',
6130 'Digest::file' => '0.01',
6131 'DirHandle' => '1.00',
6132 'Dumpvalue' => '1.11',
6133 'DynaLoader' => '1.05',
6134 'Encode' => '2.10',
6135 'Encode::Alias' => '2.03',
6136 'Encode::Byte' => '2.00',
6137 'Encode::CJKConstants' => '2.00',
6138 'Encode::CN' => '2.00',
6139 'Encode::CN::HZ' => '2.01',
6140 'Encode::Config' => '2.00',
6141 'Encode::EBCDIC' => '2.00',
6142 'Encode::Encoder' => '2.00',
6143 'Encode::Encoding' => '2.02',
6144 'Encode::Guess' => '2.00',
6145 'Encode::JP' => '2.01',
6146 'Encode::JP::H2Z' => '2.00',
6147 'Encode::JP::JIS7' => '2.00',
6148 'Encode::KR' => '2.00',
6149 'Encode::KR::2022_KR' => '2.00',
6150 'Encode::MIME::Header' => '2.00',
6151 'Encode::Symbol' => '2.00',
6152 'Encode::TW' => '2.00',
6153 'Encode::Unicode' => '2.02',
6154 'Encode::Unicode::UTF7' => '2.01',
6155 'English' => '1.01',
6156 'Env' => '1.00',
6157 'Errno' => '1.09_01',
6158 'Exporter' => '5.58',
6159 'Exporter::Heavy' => '5.58',
6160 'ExtUtils::Command' => '1.05',
6161 'ExtUtils::Command::MM' => '0.03',
6162 'ExtUtils::Constant' => '0.16',
6163 'ExtUtils::Constant::Base'=> '0.01',
6164 'ExtUtils::Constant::Utils'=> '0.01',
6165 'ExtUtils::Constant::XS'=> '0.01',
6166 'ExtUtils::Embed' => '1.250601',
6167 'ExtUtils::Install' => '1.32',
6168 'ExtUtils::Installed' => '0.08',
6169 'ExtUtils::Liblist' => '1.01',
6170 'ExtUtils::Liblist::Kid'=> '1.3001',
6171 'ExtUtils::MM' => '0.04',
6172 'ExtUtils::MM_Any' => '0.07',
6173 'ExtUtils::MM_BeOS' => '1.04',
6174 'ExtUtils::MM_Cygwin' => '1.06',
6175 'ExtUtils::MM_DOS' => '0.02',
6176 'ExtUtils::MM_MacOS' => '1.07',
6177 'ExtUtils::MM_NW5' => '2.07_02',
6178 'ExtUtils::MM_OS2' => '1.04',
6179 'ExtUtils::MM_UWIN' => '0.02',
6180 'ExtUtils::MM_Unix' => '1.42',
6181 'ExtUtils::MM_VMS' => '5.70',
6182 'ExtUtils::MM_Win32' => '1.09',
6183 'ExtUtils::MM_Win95' => '0.0301',
6184 'ExtUtils::MY' => '0.01',
6185 'ExtUtils::MakeMaker' => '6.17',
6186 'ExtUtils::MakeMaker::bytes'=> '0.01',
6187 'ExtUtils::MakeMaker::vmsish'=> '0.01',
6188 'ExtUtils::Manifest' => '1.42',
6189 'ExtUtils::Miniperl' => undef,
6190 'ExtUtils::Mkbootstrap' => '1.15',
6191 'ExtUtils::Mksymlists' => '1.19',
6192 'ExtUtils::Packlist' => '0.04',
6193 'ExtUtils::testlib' => '1.15',
6194 'Fatal' => '1.03',
6195 'Fcntl' => '1.05',
6196 'File::Basename' => '2.73',
6197 'File::CheckTree' => '4.3',
6198 'File::Compare' => '1.1003',
6199 'File::Copy' => '2.08',
6200 'File::DosGlob' => '1.00',
6201 'File::Find' => '1.09',
6202 'File::Glob' => '1.04',
6203 'File::Path' => '1.07',
6204 'File::Spec' => '3.05',
6205 'File::Spec::Cygwin' => '1.1',
6206 'File::Spec::Epoc' => '1.1',
6207 'File::Spec::Functions' => '1.3',
6208 'File::Spec::Mac' => '1.4',
6209 'File::Spec::OS2' => '1.2',
6210 'File::Spec::Unix' => '1.5',
6211 'File::Spec::VMS' => '1.4',
6212 'File::Spec::Win32' => '1.5',
6213 'File::Temp' => '0.16',
6214 'File::stat' => '1.00',
6215 'FileCache' => '1.05',
6216 'FileHandle' => '2.01',
6217 'VMS::Filespec' => '1.11',
6218 'Filter::Simple' => '0.78',
6219 'Filter::Util::Call' => '1.0601',
6220 'FindBin' => '1.44',
6221 'GDBM_File' => '1.07',
6222 'Getopt::Long' => '2.34',
6223 'Getopt::Std' => '1.05',
6224 'Hash::Util' => '0.05',
6225 'I18N::Collate' => '1.00',
6226 'I18N::LangTags' => '0.35',
6227 'I18N::LangTags::Detect'=> '1.03',
6228 'I18N::LangTags::List' => '0.35',
6229 'I18N::Langinfo' => '0.02',
6230 'IO' => '1.21',
6231 'IO::Dir' => '1.04',
6232 'IO::File' => '1.11',
6233 'IO::Handle' => '1.24',
6234 'IO::Pipe' => '1.123',
6235 'IO::Poll' => '0.06',
6236 'IO::Seekable' => '1.09',
6237 'IO::Select' => '1.16',
6238 'IO::Socket' => '1.28',
6239 'IO::Socket::INET' => '1.28',
6240 'IO::Socket::UNIX' => '1.21',
6241 'IPC::Msg' => '1.02',
6242 'IPC::Open2' => '1.01',
6243 'IPC::Open3' => '1.0106',
6244 'IPC::Semaphore' => '1.02',
6245 'IPC::SysV' => '1.04',
6246 'List::Util' => '1.14',
6247 'Locale::Constants' => '2.07',
6248 'Locale::Country' => '2.07',
6249 'Locale::Currency' => '2.07',
6250 'Locale::Language' => '2.07',
6251 'Locale::Maketext' => '1.09',
6252 'Locale::Maketext::Guts'=> undef,
6253 'Locale::Maketext::GutsLoader'=> undef,
6254 'Locale::Script' => '2.07',
6255 'MIME::Base64' => '3.05',
6256 'MIME::QuotedPrint' => '3.03',
6257 'Math::BigFloat' => '1.51',
6258 'Math::BigFloat::Trace' => '0.01',
6259 'Math::BigInt' => '1.77',
6260 'Math::BigInt::Calc' => '0.47',
6261 'Math::BigInt::CalcEmu' => '0.05',
6262 'Math::BigInt::Trace' => '0.01',
6263 'Math::BigRat' => '0.15',
6264 'Math::Complex' => '1.34',
6265 'Math::Trig' => '1.02',
6266 'Memoize' => '1.01',
6267 'Memoize::AnyDBM_File' => '0.65',
6268 'Memoize::Expire' => '1.00',
6269 'Memoize::ExpireFile' => '1.01',
6270 'Memoize::ExpireTest' => '0.65',
6271 'Memoize::NDBM_File' => '0.65',
6272 'Memoize::SDBM_File' => '0.65',
6273 'Memoize::Storable' => '0.65',
6274 'NDBM_File' => '1.05',
6275 'NEXT' => '0.60',
6276 'Net::Cmd' => '2.26',
6277 'Net::Config' => '1.10',
6278 'Net::Domain' => '2.19',
6279 'Net::FTP' => '2.75',
6280 'Net::FTP::A' => '1.16',
6281 'Net::FTP::E' => '0.01',
6282 'Net::FTP::I' => '1.12',
6283 'Net::FTP::L' => '0.01',
6284 'Net::FTP::dataconn' => '0.11',
6285 'Net::NNTP' => '2.23',
6286 'Net::Netrc' => '2.12',
6287 'Net::POP3' => '2.28',
6288 'Net::Ping' => '2.31',
6289 'Net::SMTP' => '2.29',
6290 'Net::Time' => '2.10',
6291 'Net::hostent' => '1.01',
6292 'Net::netent' => '1.00',
6293 'Net::protoent' => '1.00',
6294 'Net::servent' => '1.01',
6295 'O' => '1.00',
6296 'ODBM_File' => '1.05',
6297 'Opcode' => '1.05',
6298 'POSIX' => '1.08',
6299 'PerlIO' => '1.03',
6300 'PerlIO::encoding' => '0.07',
6301 'PerlIO::scalar' => '0.02',
6302 'PerlIO::via' => '0.02',
6303 'PerlIO::via::QuotedPrint'=> '0.06',
6304 'Pod::Checker' => '1.42',
6305 'Pod::Find' => '1.3',
6306 'Pod::Functions' => '1.02',
6307 'Pod::Html' => '1.0503',
6308 'Pod::InputObjects' => '1.3',
6309 'Pod::LaTeX' => '0.58',
6310 'Pod::Man' => '1.37',
6311 'Pod::ParseLink' => '1.06',
6312 'Pod::ParseUtils' => '1.3',
6313 'Pod::Parser' => '1.3',
6314 'Pod::Perldoc' => '3.14',
6315 'Pod::Perldoc::BaseTo' => undef,
6316 'Pod::Perldoc::GetOptsOO'=> undef,
6317 'Pod::Perldoc::ToChecker'=> undef,
6318 'Pod::Perldoc::ToMan' => undef,
6319 'Pod::Perldoc::ToNroff' => undef,
6320 'Pod::Perldoc::ToPod' => undef,
6321 'Pod::Perldoc::ToRtf' => undef,
6322 'Pod::Perldoc::ToText' => undef,
6323 'Pod::Perldoc::ToTk' => undef,
6324 'Pod::Perldoc::ToXml' => undef,
6325 'Pod::PlainText' => '2.02',
6326 'Pod::Plainer' => '0.01',
6327 'Pod::Select' => '1.3',
6328 'Pod::Text' => '2.21',
6329 'Pod::Text::Color' => '1.04',
6330 'Pod::Text::Overstrike' => '1.1',
6331 'Pod::Text::Termcap' => '1.11',
6332 'Pod::Usage' => '1.3',
6333 'SDBM_File' => '1.04',
6334 'Safe' => '2.11',
6335 'Scalar::Util' => '1.14',
6336 'Search::Dict' => '1.02',
6337 'SelectSaver' => '1.01',
6338 'SelfLoader' => '1.0904',
6339 'Shell' => '0.6',
6340 'Socket' => '1.77',
6341 'Stdio' => '2.3',
6342 'Storable' => '2.13',
6343 'Switch' => '2.10',
6344 'Symbol' => '1.06',
6345 'Sys::Hostname' => '1.11',
6346 'Sys::Syslog' => '0.06',
6347 'Term::ANSIColor' => '1.09',
6348 'Term::Cap' => '1.09',
6349 'Term::Complete' => '1.402',
6350 'Term::ReadLine' => '1.01',
6351 'Test' => '1.25',
6352 'Test::Builder' => '0.22',
6353 'Test::Harness' => '2.48',
6354 'Test::Harness::Assert' => '0.02',
6355 'Test::Harness::Iterator'=> '0.02',
6356 'Test::Harness::Point' => '0.01',
6357 'Test::Harness::Straps' => '0.23',
6358 'Test::More' => '0.54',
6359 'Test::Simple' => '0.54',
6360 'Text::Abbrev' => '1.01',
6361 'Text::Balanced' => '1.95',
6362 'Text::ParseWords' => '3.24',
6363 'Text::Soundex' => '1.01',
6364 'Text::Tabs' => '98.112801',
6365 'Text::Wrap' => '2001.09293',
6366 'Thread' => '2.00',
6367 'Thread::Queue' => '2.00',
6368 'Thread::Semaphore' => '2.01',
6369 'Thread::Signal' => '1.00',
6370 'Thread::Specific' => '1.00',
6371 'Tie::Array' => '1.03',
6372 'Tie::File' => '0.97',
6373 'Tie::Handle' => '4.1',
6374 'Tie::Hash' => '1.01',
6375 'Tie::Memoize' => '1.0',
6376 'Tie::RefHash' => '1.32',
6377 'Tie::Scalar' => '1.00',
6378 'Tie::SubstrHash' => '1.00',
6379 'Time::HiRes' => '1.66',
6380 'Time::Local' => '1.11',
6381 'Time::gmtime' => '1.02',
6382 'Time::localtime' => '1.02',
6383 'Time::tm' => '1.00',
6384 'UNIVERSAL' => '1.01',
6385 'Unicode' => '4.1.0', # lib/unicore/version
6386 'Unicode::Collate' => '0.40',
6387 'Unicode::Normalize' => '0.32',
6388 'Unicode::UCD' => '0.23',
6389 'User::grent' => '1.00',
6390 'User::pwent' => '1.00',
6391 'Win32' => '0.24',
6392 'XS::APItest' => '0.06',
6393 'XS::Typemap' => '0.01',
6394 'XSLoader' => '0.02',
6395 'XSSymSet' => '1.0',
6396 'attributes' => '0.06',
6397 'attrs' => '1.01',
6398 'autouse' => '1.04',
6399 'base' => '2.07',
6400 'bigint' => '0.07',
6401 'bignum' => '0.17',
6402 'bigrat' => '0.08',
6403 'blib' => '1.02',
6404 'bytes' => '1.02',
6405 'charnames' => '1.04',
6406 'constant' => '1.05',
6407 'diagnostics' => '1.14',
6408 'encoding' => '2.01',
6409 'fields' => '2.03',
6410 'filetest' => '1.01',
6411 'if' => '0.03',
6412 'integer' => '1.00',
6413 'less' => '0.01',
6414 'lib' => '0.5565',
6415 'locale' => '1.00',
6416 'open' => '1.04',
6417 'ops' => '1.00',
6418 'overload' => '1.03',
6419 're' => '0.04',
6420 'sigtrap' => '1.02',
6421 'sort' => '1.02',
6422 'strict' => '1.03',
6423 'subs' => '1.00',
6424 'threads' => '1.05',
6425 'threads::shared' => '0.93',
6426 'utf8' => '1.05',
6427 'vars' => '1.01',
6428 'vmsish' => '1.01',
6429 'warnings' => '1.03',
6430 'warnings::register' => '1.00',
6433 5.009003 => {
6434 'AnyDBM_File' => '1.00',
6435 'Archive::Tar' => '1.26_01',
6436 'Archive::Tar::Constant'=> '0.02',
6437 'Archive::Tar::File' => '0.02',
6438 'Attribute::Handlers' => '0.78_02',
6439 'AutoLoader' => '5.60',
6440 'AutoSplit' => '1.04_01',
6441 'B' => '1.10',
6442 'B::Asmdata' => '1.01',
6443 'B::Assembler' => '0.07',
6444 'B::Bblock' => '1.02',
6445 'B::Bytecode' => '1.01',
6446 'B::C' => '1.04',
6447 'B::CC' => '1.00',
6448 'B::Concise' => '0.67',
6449 'B::Debug' => '1.02',
6450 'B::Deparse' => '0.73',
6451 'B::Disassembler' => '1.05',
6452 'B::Lint' => '1.04',
6453 'B::Showlex' => '1.02',
6454 'B::Stackobj' => '1.00',
6455 'B::Stash' => '1.00',
6456 'B::Terse' => '1.03',
6457 'B::Xref' => '1.01',
6458 'Benchmark' => '1.07',
6459 'ByteLoader' => '0.06',
6460 'CGI' => '3.15_01',
6461 'CGI::Apache' => '1.00',
6462 'CGI::Carp' => '1.29',
6463 'CGI::Cookie' => '1.26',
6464 'CGI::Fast' => '1.05',
6465 'CGI::Pretty' => '1.08',
6466 'CGI::Push' => '1.04',
6467 'CGI::Switch' => '1.00',
6468 'CGI::Util' => '1.5',
6469 'CPAN' => '1.83_58',
6470 'CPAN::Debug' => '4.44',
6471 'CPAN::FirstTime' => '4.50',
6472 'CPAN::HandleConfig' => '4.31',
6473 'CPAN::Nox' => '2.31',
6474 'CPAN::Tarzip' => '3.36',
6475 'CPAN::Version' => '2.55',
6476 'Carp' => '1.05',
6477 'Carp::Heavy' => '1.05',
6478 'Class::ISA' => '0.33',
6479 'Class::Struct' => '0.63',
6480 'Compress::Zlib' => '2.000_07',
6481 'Compress::Zlib::Common'=> '2.000_07',
6482 'Compress::Zlib::Compress::Gzip::Constants'=> '2.000_07',
6483 'Compress::Zlib::Compress::Zip::Constants'=> '1.00',
6484 'Compress::Zlib::CompressPlugin::Deflate'=> '2.000_05',
6485 'Compress::Zlib::CompressPlugin::Identity'=> '2.000_05',
6486 'Compress::Zlib::File::GlobMapper'=> '0.000_02',
6487 'Compress::Zlib::FileConstants'=> '2.000_07',
6488 'Compress::Zlib::IO::Compress::Base'=> '2.000_05',
6489 'Compress::Zlib::IO::Compress::Deflate'=> '2.000_07',
6490 'Compress::Zlib::IO::Compress::Gzip'=> '2.000_07',
6491 'Compress::Zlib::IO::Compress::RawDeflate'=> '2.000_07',
6492 'Compress::Zlib::IO::Compress::Zip'=> '2.000_04',
6493 'Compress::Zlib::IO::Uncompress::AnyInflate'=> '2.000_07',
6494 'Compress::Zlib::IO::Uncompress::AnyUncompress'=> '2.000_05',
6495 'Compress::Zlib::IO::Uncompress::Base'=> '2.000_05',
6496 'Compress::Zlib::IO::Uncompress::Gunzip'=> '2.000_07',
6497 'Compress::Zlib::IO::Uncompress::Inflate'=> '2.000_07',
6498 'Compress::Zlib::IO::Uncompress::RawInflate'=> '2.000_07',
6499 'Compress::Zlib::IO::Uncompress::Unzip'=> '2.000_05',
6500 'Compress::Zlib::ParseParameters'=> '2.000_07',
6501 'Compress::Zlib::UncompressPlugin::Identity'=> '2.000_05',
6502 'Compress::Zlib::UncompressPlugin::Inflate'=> '2.000_05',
6503 'Config' => undef,
6504 'Config::Extensions' => '0.01',
6505 'Cwd' => '3.15',
6506 'DB' => '1.01',
6507 'DBM_Filter' => '0.01',
6508 'DBM_Filter::compress' => '0.01',
6509 'DBM_Filter::encode' => '0.01',
6510 'DBM_Filter::int32' => '0.01',
6511 'DBM_Filter::null' => '0.01',
6512 'DBM_Filter::utf8' => '0.01',
6513 'DB_File' => '1.814',
6514 'DCLsym' => '1.02',
6515 'Data::Dumper' => '2.121_08',
6516 'Devel::DProf' => '20050603.00',
6517 'Devel::PPPort' => '3.08',
6518 'Devel::Peek' => '1.03',
6519 'Devel::SelfStubber' => '1.03',
6520 'Digest' => '1.14',
6521 'Digest::MD5' => '2.36',
6522 'Digest::SHA' => '5.32',
6523 'Digest::base' => '1.00',
6524 'Digest::file' => '1.00',
6525 'DirHandle' => '1.01',
6526 'Dumpvalue' => '1.12',
6527 'DynaLoader' => '1.07',
6528 'Encode' => '2.14',
6529 'Encode::Alias' => '2.04',
6530 'Encode::Byte' => '2.00',
6531 'Encode::CJKConstants' => '2.00',
6532 'Encode::CN' => '2.00',
6533 'Encode::CN::HZ' => '2.02',
6534 'Encode::Config' => '2.01',
6535 'Encode::EBCDIC' => '2.00',
6536 'Encode::Encoder' => '2.00',
6537 'Encode::Encoding' => '2.02',
6538 'Encode::Guess' => '2.00',
6539 'Encode::JP' => '2.01',
6540 'Encode::JP::H2Z' => '2.00',
6541 'Encode::JP::JIS7' => '2.00',
6542 'Encode::KR' => '2.00',
6543 'Encode::KR::2022_KR' => '2.00',
6544 'Encode::MIME::Header' => '2.02',
6545 'Encode::MIME::Header::ISO_2022_JP'=> '1.01',
6546 'Encode::Symbol' => '2.00',
6547 'Encode::TW' => '2.00',
6548 'Encode::Unicode' => '2.02',
6549 'Encode::Unicode::UTF7' => '2.01',
6550 'English' => '1.04',
6551 'Env' => '1.00',
6552 'Errno' => '1.09_01',
6553 'Exporter' => '5.59',
6554 'Exporter::Heavy' => '5.59',
6555 'ExtUtils::CBuilder' => '0.15',
6556 'ExtUtils::CBuilder::Base'=> '0.12',
6557 'ExtUtils::CBuilder::Platform::Unix'=> '0.12',
6558 'ExtUtils::CBuilder::Platform::VMS'=> '0.12',
6559 'ExtUtils::CBuilder::Platform::Windows'=> '0.12',
6560 'ExtUtils::CBuilder::Platform::aix'=> '0.12',
6561 'ExtUtils::CBuilder::Platform::cygwin'=> '0.12',
6562 'ExtUtils::CBuilder::Platform::darwin'=> '0.12',
6563 'ExtUtils::CBuilder::Platform::dec_osf'=> '0.01',
6564 'ExtUtils::CBuilder::Platform::os2'=> '0.13',
6565 'ExtUtils::Command' => '1.09',
6566 'ExtUtils::Command::MM' => '0.05_01',
6567 'ExtUtils::Constant' => '0.2',
6568 'ExtUtils::Constant::Base'=> '0.02',
6569 'ExtUtils::Constant::ProxySubs'=> '0.01',
6570 'ExtUtils::Constant::Utils'=> '0.01',
6571 'ExtUtils::Constant::XS'=> '0.02',
6572 'ExtUtils::Embed' => '1.26',
6573 'ExtUtils::Install' => '1.33',
6574 'ExtUtils::Installed' => '0.08',
6575 'ExtUtils::Liblist' => '1.01',
6576 'ExtUtils::Liblist::Kid'=> '1.3',
6577 'ExtUtils::MM' => '0.05',
6578 'ExtUtils::MM_AIX' => '0.03',
6579 'ExtUtils::MM_Any' => '0.13_01',
6580 'ExtUtils::MM_BeOS' => '1.05',
6581 'ExtUtils::MM_Cygwin' => '1.08',
6582 'ExtUtils::MM_DOS' => '0.02',
6583 'ExtUtils::MM_MacOS' => '1.08',
6584 'ExtUtils::MM_NW5' => '2.08',
6585 'ExtUtils::MM_OS2' => '1.05',
6586 'ExtUtils::MM_QNX' => '0.02',
6587 'ExtUtils::MM_UWIN' => '0.02',
6588 'ExtUtils::MM_Unix' => '1.50_01',
6589 'ExtUtils::MM_VMS' => '5.73',
6590 'ExtUtils::MM_VOS' => '0.02',
6591 'ExtUtils::MM_Win32' => '1.12',
6592 'ExtUtils::MM_Win95' => '0.04',
6593 'ExtUtils::MY' => '0.01',
6594 'ExtUtils::MakeMaker' => '6.30_01',
6595 'ExtUtils::MakeMaker::Config'=> '0.02',
6596 'ExtUtils::MakeMaker::bytes'=> '0.01',
6597 'ExtUtils::MakeMaker::vmsish'=> '0.01',
6598 'ExtUtils::Manifest' => '1.46',
6599 'ExtUtils::Miniperl' => undef,
6600 'ExtUtils::Mkbootstrap' => '1.15',
6601 'ExtUtils::Mksymlists' => '1.19',
6602 'ExtUtils::Packlist' => '0.04',
6603 'ExtUtils::ParseXS' => '2.15_02',
6604 'ExtUtils::testlib' => '1.15',
6605 'Fatal' => '1.04',
6606 'Fcntl' => '1.05',
6607 'File::Basename' => '2.74',
6608 'File::CheckTree' => '4.3',
6609 'File::Compare' => '1.1005',
6610 'File::Copy' => '2.09',
6611 'File::DosGlob' => '1.00',
6612 'File::Find' => '1.10',
6613 'File::Glob' => '1.05',
6614 'File::Path' => '1.08',
6615 'File::Spec' => '3.15',
6616 'File::Spec::Cygwin' => '1.1',
6617 'File::Spec::Epoc' => '1.1',
6618 'File::Spec::Functions' => '1.3',
6619 'File::Spec::Mac' => '1.4',
6620 'File::Spec::OS2' => '1.2',
6621 'File::Spec::Unix' => '1.5',
6622 'File::Spec::VMS' => '1.4',
6623 'File::Spec::Win32' => '1.6',
6624 'File::Temp' => '0.16_01',
6625 'File::stat' => '1.00',
6626 'FileCache' => '1.06',
6627 'FileHandle' => '2.01',
6628 'VMS::Filespec' => '1.11',
6629 'Filter::Simple' => '0.82',
6630 'Filter::Util::Call' => '1.0601',
6631 'FindBin' => '1.47',
6632 'GDBM_File' => '1.08',
6633 'Getopt::Long' => '2.35',
6634 'Getopt::Std' => '1.05',
6635 'Hash::Util' => '0.05',
6636 'I18N::Collate' => '1.00',
6637 'I18N::LangTags' => '0.35',
6638 'I18N::LangTags::Detect'=> '1.03',
6639 'I18N::LangTags::List' => '0.35',
6640 'I18N::Langinfo' => '0.02',
6641 'IO' => '1.22',
6642 'IO::Dir' => '1.05',
6643 'IO::File' => '1.13_01',
6644 'IO::Handle' => '1.26',
6645 'IO::Pipe' => '1.13',
6646 'IO::Poll' => '0.07',
6647 'IO::Seekable' => '1.10',
6648 'IO::Select' => '1.17',
6649 'IO::Socket' => '1.29_01',
6650 'IO::Socket::INET' => '1.29_02',
6651 'IO::Socket::UNIX' => '1.22_01',
6652 'IO::Zlib' => '1.04_02',
6653 'IPC::Msg' => '1.02',
6654 'IPC::Open2' => '1.02',
6655 'IPC::Open3' => '1.02',
6656 'IPC::Semaphore' => '1.02',
6657 'IPC::SysV' => '1.04',
6658 'List::Util' => '1.18',
6659 'Locale::Constants' => '2.07',
6660 'Locale::Country' => '2.07',
6661 'Locale::Currency' => '2.07',
6662 'Locale::Language' => '2.07',
6663 'Locale::Maketext' => '1.10_01',
6664 'Locale::Maketext::Guts'=> undef,
6665 'Locale::Maketext::GutsLoader'=> undef,
6666 'Locale::Script' => '2.07',
6667 'MIME::Base64' => '3.07',
6668 'MIME::QuotedPrint' => '3.07',
6669 'Math::BigFloat' => '1.51',
6670 'Math::BigFloat::Trace' => '0.01',
6671 'Math::BigInt' => '1.77',
6672 'Math::BigInt::Calc' => '0.47',
6673 'Math::BigInt::CalcEmu' => '0.05',
6674 'Math::BigInt::FastCalc'=> '0.10',
6675 'Math::BigInt::Trace' => '0.01',
6676 'Math::BigRat' => '0.15',
6677 'Math::Complex' => '1.35',
6678 'Math::Trig' => '1.03',
6679 'Memoize' => '1.01_01',
6680 'Memoize::AnyDBM_File' => '0.65',
6681 'Memoize::Expire' => '1.00',
6682 'Memoize::ExpireFile' => '1.01',
6683 'Memoize::ExpireTest' => '0.65',
6684 'Memoize::NDBM_File' => '0.65',
6685 'Memoize::SDBM_File' => '0.65',
6686 'Memoize::Storable' => '0.65',
6687 'Module::CoreList' => '2.02',
6688 'Moped::Msg' => '0.01',
6689 'NDBM_File' => '1.06',
6690 'NEXT' => '0.60_01',
6691 'Net::Cmd' => '2.26_01',
6692 'Net::Config' => '1.10',
6693 'Net::Domain' => '2.19_01',
6694 'Net::FTP' => '2.75',
6695 'Net::FTP::A' => '1.16',
6696 'Net::FTP::E' => '0.01',
6697 'Net::FTP::I' => '1.12',
6698 'Net::FTP::L' => '0.01',
6699 'Net::FTP::dataconn' => '0.11',
6700 'Net::NNTP' => '2.23',
6701 'Net::Netrc' => '2.12',
6702 'Net::POP3' => '2.28',
6703 'Net::Ping' => '2.31_04',
6704 'Net::SMTP' => '2.29',
6705 'Net::Time' => '2.10',
6706 'Net::hostent' => '1.01',
6707 'Net::netent' => '1.00',
6708 'Net::protoent' => '1.00',
6709 'Net::servent' => '1.01',
6710 'O' => '1.00',
6711 'ODBM_File' => '1.06',
6712 'Opcode' => '1.08',
6713 'POSIX' => '1.10',
6714 'PerlIO' => '1.04',
6715 'PerlIO::encoding' => '0.09',
6716 'PerlIO::scalar' => '0.04',
6717 'PerlIO::via' => '0.03',
6718 'PerlIO::via::QuotedPrint'=> '0.06',
6719 'Pod::Checker' => '1.43',
6720 'Pod::Escapes' => '1.04',
6721 'Pod::Find' => '1.34',
6722 'Pod::Functions' => '1.03',
6723 'Pod::Html' => '1.0504',
6724 'Pod::InputObjects' => '1.3',
6725 'Pod::LaTeX' => '0.58',
6726 'Pod::Man' => '2.04',
6727 'Pod::ParseLink' => '1.06',
6728 'Pod::ParseUtils' => '1.33',
6729 'Pod::Parser' => '1.32',
6730 'Pod::Perldoc' => '3.14_01',
6731 'Pod::Perldoc::BaseTo' => undef,
6732 'Pod::Perldoc::GetOptsOO'=> undef,
6733 'Pod::Perldoc::ToChecker'=> undef,
6734 'Pod::Perldoc::ToMan' => undef,
6735 'Pod::Perldoc::ToNroff' => undef,
6736 'Pod::Perldoc::ToPod' => undef,
6737 'Pod::Perldoc::ToRtf' => undef,
6738 'Pod::Perldoc::ToText' => undef,
6739 'Pod::Perldoc::ToTk' => undef,
6740 'Pod::Perldoc::ToXml' => undef,
6741 'Pod::PlainText' => '2.02',
6742 'Pod::Plainer' => '0.01',
6743 'Pod::Select' => '1.3',
6744 'Pod::Simple' => '3.04',
6745 'Pod::Simple::BlackBox' => undef,
6746 'Pod::Simple::Checker' => '2.02',
6747 'Pod::Simple::Debug' => undef,
6748 'Pod::Simple::DumpAsText'=> '2.02',
6749 'Pod::Simple::DumpAsXML'=> '2.02',
6750 'Pod::Simple::HTML' => '3.03',
6751 'Pod::Simple::HTMLBatch'=> '3.02',
6752 'Pod::Simple::HTMLLegacy'=> '5.01',
6753 'Pod::Simple::LinkSection'=> undef,
6754 'Pod::Simple::Methody' => '2.02',
6755 'Pod::Simple::Progress' => '1.01',
6756 'Pod::Simple::PullParser'=> '2.02',
6757 'Pod::Simple::PullParserEndToken'=> undef,
6758 'Pod::Simple::PullParserStartToken'=> undef,
6759 'Pod::Simple::PullParserTextToken'=> undef,
6760 'Pod::Simple::PullParserToken'=> '2.02',
6761 'Pod::Simple::RTF' => '2.02',
6762 'Pod::Simple::Search' => '3.04',
6763 'Pod::Simple::SimpleTree'=> '2.02',
6764 'Pod::Simple::Text' => '2.02',
6765 'Pod::Simple::TextContent'=> '2.02',
6766 'Pod::Simple::TiedOutFH'=> undef,
6767 'Pod::Simple::Transcode'=> undef,
6768 'Pod::Simple::TranscodeDumb'=> '2.02',
6769 'Pod::Simple::TranscodeSmart'=> undef,
6770 'Pod::Simple::XMLOutStream'=> '2.02',
6771 'Pod::Text' => '3.01',
6772 'Pod::Text::Color' => '2.01',
6773 'Pod::Text::Overstrike' => '2',
6774 'Pod::Text::Termcap' => '2.01',
6775 'Pod::Usage' => '1.33_01',
6776 'SDBM_File' => '1.05',
6777 'Safe' => '2.12',
6778 'Scalar::Util' => '1.18',
6779 'Search::Dict' => '1.02',
6780 'SelectSaver' => '1.01',
6781 'SelfLoader' => '1.0905',
6782 'Shell' => '0.6',
6783 'Socket' => '1.78',
6784 'Stdio' => '2.3',
6785 'Storable' => '2.15_02',
6786 'Switch' => '2.10_01',
6787 'Symbol' => '1.06',
6788 'Sys::Hostname' => '1.11',
6789 'Sys::Syslog' => '0.13',
6790 'Term::ANSIColor' => '1.10',
6791 'Term::Cap' => '1.09',
6792 'Term::Complete' => '1.402',
6793 'Term::ReadLine' => '1.02',
6794 'Test' => '1.25',
6795 'Test::Builder' => '0.32',
6796 'Test::Builder::Module' => '0.03',
6797 'Test::Builder::Tester' => '1.02',
6798 'Test::Builder::Tester::Color'=> undef,
6799 'Test::Harness' => '2.56',
6800 'Test::Harness::Assert' => '0.02',
6801 'Test::Harness::Iterator'=> '0.02',
6802 'Test::Harness::Point' => '0.01',
6803 'Test::Harness::Straps' => '0.26',
6804 'Test::More' => '0.62',
6805 'Test::Simple' => '0.62',
6806 'Text::Abbrev' => '1.01',
6807 'Text::Balanced' => '1.95_01',
6808 'Text::ParseWords' => '3.24',
6809 'Text::Soundex' => '1.01',
6810 'Text::Tabs' => '2005.0824',
6811 'Text::Wrap' => '2005.082401',
6812 'Thread' => '2.00',
6813 'Thread::Queue' => '2.00',
6814 'Thread::Semaphore' => '2.01',
6815 'Thread::Signal' => '1.00',
6816 'Thread::Specific' => '1.00',
6817 'Tie::Array' => '1.03',
6818 'Tie::File' => '0.97_01',
6819 'Tie::Handle' => '4.1',
6820 'Tie::Hash' => '1.02',
6821 'Tie::Memoize' => '1.0',
6822 'Tie::RefHash' => '1.32',
6823 'Tie::Scalar' => '1.00',
6824 'Tie::SubstrHash' => '1.00',
6825 'Time::HiRes' => '1.86',
6826 'Time::Local' => '1.11',
6827 'Time::gmtime' => '1.02',
6828 'Time::localtime' => '1.02',
6829 'Time::tm' => '1.00',
6830 'UNIVERSAL' => '1.03',
6831 'Unicode' => '4.1.0',
6832 'Unicode::Collate' => '0.52',
6833 'Unicode::Normalize' => '0.32',
6834 'Unicode::UCD' => '0.24',
6835 'User::grent' => '1.01',
6836 'User::pwent' => '1.00',
6837 'Win32' => '0.2601',
6838 'XS::APItest' => '0.09',
6839 'XS::Typemap' => '0.02',
6840 'XSLoader' => '0.06',
6841 'XSSymSet' => '1.0',
6842 'assertions' => '0.02',
6843 'assertions::activate' => '0.02',
6844 'assertions::compat' => undef,
6845 'attributes' => '0.06',
6846 'attrs' => '1.02',
6847 'autouse' => '1.05',
6848 'base' => '2.07',
6849 'bigint' => '0.07',
6850 'bignum' => '0.17',
6851 'bigrat' => '0.08',
6852 'blib' => '1.03',
6853 'bytes' => '1.02',
6854 'charnames' => '1.05',
6855 'constant' => '1.07',
6856 'diagnostics' => '1.15',
6857 'encoding' => '2.02',
6858 'encoding::warnings' => '0.05',
6859 'feature' => '1.00',
6860 'fields' => '2.03',
6861 'filetest' => '1.01',
6862 'if' => '0.05',
6863 'integer' => '1.00',
6864 'less' => '0.01',
6865 'lib' => '0.5565',
6866 'locale' => '1.00',
6867 'open' => '1.05',
6868 'ops' => '1.01',
6869 'overload' => '1.04',
6870 're' => '0.06',
6871 'sigtrap' => '1.02',
6872 'sort' => '2.00',
6873 'strict' => '1.03',
6874 'subs' => '1.00',
6875 'threads' => '1.07',
6876 'threads::shared' => '0.94',
6877 'utf8' => '1.06',
6878 'vars' => '1.01',
6879 'version' => '0.53',
6880 'vmsish' => '1.02',
6881 'warnings' => '1.05',
6882 'warnings::register' => '1.01',
6885 5.008008 => {
6886 'AnyDBM_File' => '1.00',
6887 'Attribute::Handlers' => '0.78_02',
6888 'AutoLoader' => '5.60',
6889 'AutoSplit' => '1.04',
6890 'B' => '1.09_01',
6891 'B::Asmdata' => '1.01',
6892 'B::Assembler' => '0.07',
6893 'B::Bblock' => '1.02_01',
6894 'B::Bytecode' => '1.01_01',
6895 'B::C' => '1.04_01',
6896 'B::CC' => '1.00_01',
6897 'B::Concise' => '0.66',
6898 'B::Debug' => '1.02_01',
6899 'B::Deparse' => '0.71',
6900 'B::Disassembler' => '1.05',
6901 'B::Lint' => '1.03',
6902 'B::Showlex' => '1.02',
6903 'B::Stackobj' => '1.00',
6904 'B::Stash' => '1.00',
6905 'B::Terse' => '1.03_01',
6906 'B::Xref' => '1.01',
6907 'Benchmark' => '1.07',
6908 'ByteLoader' => '0.06',
6909 'CGI' => '3.15',
6910 'CGI::Apache' => '1.00',
6911 'CGI::Carp' => '1.29',
6912 'CGI::Cookie' => '1.26',
6913 'CGI::Fast' => '1.05',
6914 'CGI::Pretty' => '1.08',
6915 'CGI::Push' => '1.04',
6916 'CGI::Switch' => '1.00',
6917 'CGI::Util' => '1.5',
6918 'CPAN' => '1.76_02',
6919 'CPAN::FirstTime' => '1.60 ',
6920 'CPAN::Nox' => '1.03',
6921 'Carp' => '1.04',
6922 'Carp::Heavy' => '1.04',
6923 'Class::ISA' => '0.33',
6924 'Class::Struct' => '0.63',
6925 'Config' => undef,
6926 'Cwd' => '3.12',
6927 'DB' => '1.01',
6928 'DBM_Filter' => '0.01',
6929 'DBM_Filter::compress' => '0.01',
6930 'DBM_Filter::encode' => '0.01',
6931 'DBM_Filter::int32' => '0.01',
6932 'DBM_Filter::null' => '0.01',
6933 'DBM_Filter::utf8' => '0.01',
6934 'DB_File' => '1.814',
6935 'DCLsym' => '1.02',
6936 'Data::Dumper' => '2.121_08',
6937 'Devel::DProf' => '20050603.00',
6938 'Devel::PPPort' => '3.06_01',
6939 'Devel::Peek' => '1.03',
6940 'Devel::SelfStubber' => '1.03',
6941 'Digest' => '1.14',
6942 'Digest::MD5' => '2.36',
6943 'Digest::base' => '1.00',
6944 'Digest::file' => '1.00',
6945 'DirHandle' => '1.00',
6946 'Dumpvalue' => '1.12',
6947 'DynaLoader' => '1.05',
6948 'Encode' => '2.12',
6949 'Encode::Alias' => '2.04',
6950 'Encode::Byte' => '2.00',
6951 'Encode::CJKConstants' => '2.00',
6952 'Encode::CN' => '2.00',
6953 'Encode::CN::HZ' => '2.01',
6954 'Encode::Config' => '2.01',
6955 'Encode::EBCDIC' => '2.00',
6956 'Encode::Encoder' => '2.00',
6957 'Encode::Encoding' => '2.02',
6958 'Encode::Guess' => '2.00',
6959 'Encode::JP' => '2.01',
6960 'Encode::JP::H2Z' => '2.00',
6961 'Encode::JP::JIS7' => '2.00',
6962 'Encode::KR' => '2.00',
6963 'Encode::KR::2022_KR' => '2.00',
6964 'Encode::MIME::Header' => '2.01',
6965 'Encode::MIME::Header::ISO_2022_JP'=> '1.01',
6966 'Encode::Symbol' => '2.00',
6967 'Encode::TW' => '2.00',
6968 'Encode::Unicode' => '2.02',
6969 'Encode::Unicode::UTF7' => '2.01',
6970 'English' => '1.02',
6971 'Env' => '1.00',
6972 'Errno' => '1.09_01',
6973 'Exporter' => '5.58',
6974 'Exporter::Heavy' => '5.58',
6975 'ExtUtils::Command' => '1.09',
6976 'ExtUtils::Command::MM' => '0.05',
6977 'ExtUtils::Constant' => '0.17',
6978 'ExtUtils::Constant::Base'=> '0.01',
6979 'ExtUtils::Constant::Utils'=> '0.01',
6980 'ExtUtils::Constant::XS'=> '0.01',
6981 'ExtUtils::Embed' => '1.26',
6982 'ExtUtils::Install' => '1.33',
6983 'ExtUtils::Installed' => '0.08',
6984 'ExtUtils::Liblist' => '1.01',
6985 'ExtUtils::Liblist::Kid'=> '1.3',
6986 'ExtUtils::MM' => '0.05',
6987 'ExtUtils::MM_AIX' => '0.03',
6988 'ExtUtils::MM_Any' => '0.13',
6989 'ExtUtils::MM_BeOS' => '1.05',
6990 'ExtUtils::MM_Cygwin' => '1.08',
6991 'ExtUtils::MM_DOS' => '0.02',
6992 'ExtUtils::MM_MacOS' => '1.08',
6993 'ExtUtils::MM_NW5' => '2.08',
6994 'ExtUtils::MM_OS2' => '1.05',
6995 'ExtUtils::MM_QNX' => '0.02',
6996 'ExtUtils::MM_UWIN' => '0.02',
6997 'ExtUtils::MM_Unix' => '1.50',
6998 'ExtUtils::MM_VMS' => '5.73',
6999 'ExtUtils::MM_VOS' => '0.02',
7000 'ExtUtils::MM_Win32' => '1.12',
7001 'ExtUtils::MM_Win95' => '0.04',
7002 'ExtUtils::MY' => '0.01',
7003 'ExtUtils::MakeMaker' => '6.30',
7004 'ExtUtils::MakeMaker::Config'=> '0.02',
7005 'ExtUtils::MakeMaker::bytes'=> '0.01',
7006 'ExtUtils::MakeMaker::vmsish'=> '0.01',
7007 'ExtUtils::Manifest' => '1.46',
7008 'ExtUtils::Miniperl' => undef,
7009 'ExtUtils::Mkbootstrap' => '1.15',
7010 'ExtUtils::Mksymlists' => '1.19',
7011 'ExtUtils::Packlist' => '0.04',
7012 'ExtUtils::testlib' => '1.15',
7013 'Fatal' => '1.03',
7014 'Fcntl' => '1.05',
7015 'File::Basename' => '2.74',
7016 'File::CheckTree' => '4.3',
7017 'File::Compare' => '1.1003',
7018 'File::Copy' => '2.09',
7019 'File::DosGlob' => '1.00',
7020 'File::Find' => '1.10',
7021 'File::Glob' => '1.05',
7022 'File::Path' => '1.08',
7023 'File::Spec' => '3.12',
7024 'File::Spec::Cygwin' => '1.1',
7025 'File::Spec::Epoc' => '1.1',
7026 'File::Spec::Functions' => '1.3',
7027 'File::Spec::Mac' => '1.4',
7028 'File::Spec::OS2' => '1.2',
7029 'File::Spec::Unix' => '1.5',
7030 'File::Spec::VMS' => '1.4',
7031 'File::Spec::Win32' => '1.6',
7032 'File::Temp' => '0.16',
7033 'File::stat' => '1.00',
7034 'FileCache' => '1.06',
7035 'FileHandle' => '2.01',
7036 'VMS::Filespec' => '1.11',
7037 'Filter::Simple' => '0.82',
7038 'Filter::Util::Call' => '1.0601',
7039 'FindBin' => '1.47',
7040 'GDBM_File' => '1.08',
7041 'Getopt::Long' => '2.35',
7042 'Getopt::Std' => '1.05',
7043 'Hash::Util' => '0.05',
7044 'I18N::Collate' => '1.00',
7045 'I18N::LangTags' => '0.35',
7046 'I18N::LangTags::Detect'=> '1.03',
7047 'I18N::LangTags::List' => '0.35',
7048 'I18N::Langinfo' => '0.02',
7049 'IO' => '1.22',
7050 'IO::Dir' => '1.05',
7051 'IO::File' => '1.13',
7052 'IO::Handle' => '1.25',
7053 'IO::Pipe' => '1.13',
7054 'IO::Poll' => '0.07',
7055 'IO::Seekable' => '1.10',
7056 'IO::Select' => '1.17',
7057 'IO::Socket' => '1.29',
7058 'IO::Socket::INET' => '1.29',
7059 'IO::Socket::UNIX' => '1.22',
7060 'IPC::Msg' => '1.02',
7061 'IPC::Open2' => '1.02',
7062 'IPC::Open3' => '1.02',
7063 'IPC::Semaphore' => '1.02',
7064 'IPC::SysV' => '1.04',
7065 'List::Util' => '1.18',
7066 'Locale::Constants' => '2.07',
7067 'Locale::Country' => '2.07',
7068 'Locale::Currency' => '2.07',
7069 'Locale::Language' => '2.07',
7070 'Locale::Maketext' => '1.09',
7071 'Locale::Maketext::Guts'=> undef,
7072 'Locale::Maketext::GutsLoader'=> undef,
7073 'Locale::Script' => '2.07',
7074 'MIME::Base64' => '3.07',
7075 'MIME::QuotedPrint' => '3.07',
7076 'Math::BigFloat' => '1.51',
7077 'Math::BigFloat::Trace' => '0.01',
7078 'Math::BigInt' => '1.77',
7079 'Math::BigInt::Calc' => '0.47',
7080 'Math::BigInt::CalcEmu' => '0.05',
7081 'Math::BigInt::Trace' => '0.01',
7082 'Math::BigRat' => '0.15',
7083 'Math::Complex' => '1.35',
7084 'Math::Trig' => '1.03',
7085 'Memoize' => '1.01',
7086 'Memoize::AnyDBM_File' => '0.65',
7087 'Memoize::Expire' => '1.00',
7088 'Memoize::ExpireFile' => '1.01',
7089 'Memoize::ExpireTest' => '0.65',
7090 'Memoize::NDBM_File' => '0.65',
7091 'Memoize::SDBM_File' => '0.65',
7092 'Memoize::Storable' => '0.65',
7093 'NDBM_File' => '1.06',
7094 'NEXT' => '0.60',
7095 'Net::Cmd' => '2.26',
7096 'Net::Config' => '1.10',
7097 'Net::Domain' => '2.19',
7098 'Net::FTP' => '2.75',
7099 'Net::FTP::A' => '1.16',
7100 'Net::FTP::E' => '0.01',
7101 'Net::FTP::I' => '1.12',
7102 'Net::FTP::L' => '0.01',
7103 'Net::FTP::dataconn' => '0.11',
7104 'Net::NNTP' => '2.23',
7105 'Net::Netrc' => '2.12',
7106 'Net::POP3' => '2.28',
7107 'Net::Ping' => '2.31',
7108 'Net::SMTP' => '2.29',
7109 'Net::Time' => '2.10',
7110 'Net::hostent' => '1.01',
7111 'Net::netent' => '1.00',
7112 'Net::protoent' => '1.00',
7113 'Net::servent' => '1.01',
7114 'O' => '1.00',
7115 'ODBM_File' => '1.06',
7116 'Opcode' => '1.06',
7117 'POSIX' => '1.09',
7118 'PerlIO' => '1.04',
7119 'PerlIO::encoding' => '0.09',
7120 'PerlIO::scalar' => '0.04',
7121 'PerlIO::via' => '0.03',
7122 'PerlIO::via::QuotedPrint'=> '0.06',
7123 'Pod::Checker' => '1.43',
7124 'Pod::Find' => '1.34',
7125 'Pod::Functions' => '1.03',
7126 'Pod::Html' => '1.0504',
7127 'Pod::InputObjects' => '1.3',
7128 'Pod::LaTeX' => '0.58',
7129 'Pod::Man' => '1.37',
7130 'Pod::ParseLink' => '1.06',
7131 'Pod::ParseUtils' => '1.33',
7132 'Pod::Parser' => '1.32',
7133 'Pod::Perldoc' => '3.14',
7134 'Pod::Perldoc::BaseTo' => undef,
7135 'Pod::Perldoc::GetOptsOO'=> undef,
7136 'Pod::Perldoc::ToChecker'=> undef,
7137 'Pod::Perldoc::ToMan' => undef,
7138 'Pod::Perldoc::ToNroff' => undef,
7139 'Pod::Perldoc::ToPod' => undef,
7140 'Pod::Perldoc::ToRtf' => undef,
7141 'Pod::Perldoc::ToText' => undef,
7142 'Pod::Perldoc::ToTk' => undef,
7143 'Pod::Perldoc::ToXml' => undef,
7144 'Pod::PlainText' => '2.02',
7145 'Pod::Plainer' => '0.01',
7146 'Pod::Select' => '1.3',
7147 'Pod::Text' => '2.21',
7148 'Pod::Text::Color' => '1.04',
7149 'Pod::Text::Overstrike' => '1.1',
7150 'Pod::Text::Termcap' => '1.11',
7151 'Pod::Usage' => '1.33',
7152 'SDBM_File' => '1.05',
7153 'Safe' => '2.12',
7154 'Scalar::Util' => '1.18',
7155 'Search::Dict' => '1.02',
7156 'SelectSaver' => '1.01',
7157 'SelfLoader' => '1.0904',
7158 'Shell' => '0.6',
7159 'Socket' => '1.78',
7160 'Stdio' => '2.3',
7161 'Storable' => '2.15',
7162 'Switch' => '2.10_01',
7163 'Symbol' => '1.06',
7164 'Sys::Hostname' => '1.11',
7165 'Sys::Syslog' => '0.13',
7166 'Term::ANSIColor' => '1.10',
7167 'Term::Cap' => '1.09',
7168 'Term::Complete' => '1.402',
7169 'Term::ReadLine' => '1.02',
7170 'Test' => '1.25',
7171 'Test::Builder' => '0.32',
7172 'Test::Builder::Module' => '0.02',
7173 'Test::Builder::Tester' => '1.02',
7174 'Test::Builder::Tester::Color'=> undef,
7175 'Test::Harness' => '2.56',
7176 'Test::Harness::Assert' => '0.02',
7177 'Test::Harness::Iterator'=> '0.02',
7178 'Test::Harness::Point' => '0.01',
7179 'Test::Harness::Straps' => '0.26',
7180 'Test::More' => '0.62',
7181 'Test::Simple' => '0.62',
7182 'Text::Abbrev' => '1.01',
7183 'Text::Balanced' => '1.95',
7184 'Text::ParseWords' => '3.24',
7185 'Text::Soundex' => '1.01',
7186 'Text::Tabs' => '2005.0824',
7187 'Text::Wrap' => '2005.082401',
7188 'Thread' => '2.00',
7189 'Thread::Queue' => '2.00',
7190 'Thread::Semaphore' => '2.01',
7191 'Thread::Signal' => '1.00',
7192 'Thread::Specific' => '1.00',
7193 'Tie::Array' => '1.03',
7194 'Tie::File' => '0.97',
7195 'Tie::Handle' => '4.1',
7196 'Tie::Hash' => '1.02',
7197 'Tie::Memoize' => '1.0',
7198 'Tie::RefHash' => '1.32',
7199 'Tie::Scalar' => '1.00',
7200 'Tie::SubstrHash' => '1.00',
7201 'Time::HiRes' => '1.86',
7202 'Time::Local' => '1.11',
7203 'Time::gmtime' => '1.02',
7204 'Time::localtime' => '1.02',
7205 'Time::tm' => '1.00',
7206 'UNIVERSAL' => '1.01',
7207 'Unicode' => '4.1.0',
7208 'Unicode::Collate' => '0.52',
7209 'Unicode::Normalize' => '0.32',
7210 'Unicode::UCD' => '0.24',
7211 'User::grent' => '1.01',
7212 'User::pwent' => '1.00',
7213 'Win32' => '0.2601',
7214 'XS::APItest' => '0.08',
7215 'XS::Typemap' => '0.02',
7216 'XSLoader' => '0.06',
7217 'XSSymSet' => '1.0',
7218 'attributes' => '0.06',
7219 'attrs' => '1.02',
7220 'autouse' => '1.05',
7221 'base' => '2.07',
7222 'bigint' => '0.07',
7223 'bignum' => '0.17',
7224 'bigrat' => '0.08',
7225 'blib' => '1.03',
7226 'bytes' => '1.02',
7227 'charnames' => '1.05',
7228 'constant' => '1.05',
7229 'diagnostics' => '1.15',
7230 'encoding' => '2.02',
7231 'fields' => '2.03',
7232 'filetest' => '1.01',
7233 'if' => '0.05',
7234 'integer' => '1.00',
7235 'less' => '0.01',
7236 'lib' => '0.5565',
7237 'locale' => '1.00',
7238 'open' => '1.05',
7239 'ops' => '1.01',
7240 'overload' => '1.04',
7241 're' => '0.05',
7242 'sigtrap' => '1.02',
7243 'sort' => '1.02',
7244 'strict' => '1.03',
7245 'subs' => '1.00',
7246 'threads' => '1.07',
7247 'threads::shared' => '0.94',
7248 'utf8' => '1.06',
7249 'vars' => '1.01',
7250 'vmsish' => '1.02',
7251 'warnings' => '1.05',
7252 'warnings::register' => '1.01',
7255 5.009004 => {
7256 'AnyDBM_File' => '1.00',
7257 'Archive::Tar' => '1.30_01',
7258 'Archive::Tar::Constant'=> '0.02',
7259 'Archive::Tar::File' => '0.02',
7260 'Attribute::Handlers' => '0.78_02',
7261 'AutoLoader' => '5.61',
7262 'AutoSplit' => '1.04_01',
7263 'B' => '1.11',
7264 'B::Asmdata' => '1.01',
7265 'B::Assembler' => '0.07',
7266 'B::Bblock' => '1.02',
7267 'B::Bytecode' => '1.02',
7268 'B::C' => '1.05',
7269 'B::CC' => '1.00',
7270 'B::Concise' => '0.69',
7271 'B::Debug' => '1.02',
7272 'B::Deparse' => '0.76',
7273 'B::Disassembler' => '1.05',
7274 'B::Lint' => '1.08',
7275 'B::Showlex' => '1.02',
7276 'B::Stackobj' => '1.00',
7277 'B::Stash' => '1.00',
7278 'B::Terse' => '1.03',
7279 'B::Xref' => '1.01',
7280 'Benchmark' => '1.08',
7281 'ByteLoader' => '0.06',
7282 'CGI' => '3.20',
7283 'CGI::Apache' => '1.00',
7284 'CGI::Carp' => '1.29',
7285 'CGI::Cookie' => '1.27',
7286 'CGI::Fast' => '1.07',
7287 'CGI::Pretty' => '1.08',
7288 'CGI::Push' => '1.04',
7289 'CGI::Switch' => '1.00',
7290 'CGI::Util' => '1.5',
7291 'CPAN' => '1.87_55',
7292 'CPAN::Debug' => '5.400561',
7293 'CPAN::FirstTime' => '5.400742',
7294 'CPAN::HandleConfig' => '5.400740',
7295 'CPAN::Nox' => '5.400561',
7296 'CPAN::Tarzip' => '5.400714',
7297 'CPAN::Version' => '5.400561',
7298 'Carp' => '1.05',
7299 'Carp::Heavy' => '1.05',
7300 'Class::ISA' => '0.33',
7301 'Class::Struct' => '0.63',
7302 'Compress::Raw::Zlib' => '2.000_13',
7303 'Compress::Zlib' => '2.000_13',
7304 'Config' => undef,
7305 'Config::Extensions' => '0.01',
7306 'Cwd' => '3.19',
7307 'DB' => '1.01',
7308 'DBM_Filter' => '0.01',
7309 'DBM_Filter::compress' => '0.01',
7310 'DBM_Filter::encode' => '0.01',
7311 'DBM_Filter::int32' => '0.01',
7312 'DBM_Filter::null' => '0.01',
7313 'DBM_Filter::utf8' => '0.01',
7314 'DB_File' => '1.814',
7315 'DCLsym' => '1.02',
7316 'Data::Dumper' => '2.121_08',
7317 'Devel::DProf' => '20050603.00',
7318 'Devel::PPPort' => '3.10',
7319 'Devel::Peek' => '1.03',
7320 'Devel::SelfStubber' => '1.03',
7321 'Digest' => '1.15',
7322 'Digest::MD5' => '2.36',
7323 'Digest::SHA' => '5.43',
7324 'Digest::base' => '1.00',
7325 'Digest::file' => '1.00',
7326 'DirHandle' => '1.01',
7327 'Dumpvalue' => '1.12',
7328 'DynaLoader' => '1.07',
7329 'Encode' => '2.18_01',
7330 'Encode::Alias' => '2.06',
7331 'Encode::Byte' => '2.02',
7332 'Encode::CJKConstants' => '2.02',
7333 'Encode::CN' => '2.02',
7334 'Encode::CN::HZ' => '2.04',
7335 'Encode::Config' => '2.03',
7336 'Encode::EBCDIC' => '2.02',
7337 'Encode::Encoder' => '2.01',
7338 'Encode::Encoding' => '2.04',
7339 'Encode::Guess' => '2.02',
7340 'Encode::JP' => '2.03',
7341 'Encode::JP::H2Z' => '2.02',
7342 'Encode::JP::JIS7' => '2.02',
7343 'Encode::KR' => '2.02',
7344 'Encode::KR::2022_KR' => '2.02',
7345 'Encode::MIME::Header' => '2.04',
7346 'Encode::MIME::Header::ISO_2022_JP'=> '1.03',
7347 'Encode::Symbol' => '2.02',
7348 'Encode::TW' => '2.02',
7349 'Encode::Unicode' => '2.03',
7350 'Encode::Unicode::UTF7' => '2.04',
7351 'English' => '1.04',
7352 'Env' => '1.00',
7353 'Errno' => '1.09_01',
7354 'Exporter' => '5.59',
7355 'Exporter::Heavy' => '5.59',
7356 'ExtUtils::CBuilder' => '0.18',
7357 'ExtUtils::CBuilder::Base'=> '0.12',
7358 'ExtUtils::CBuilder::Platform::Unix'=> '0.12',
7359 'ExtUtils::CBuilder::Platform::VMS'=> '0.12',
7360 'ExtUtils::CBuilder::Platform::Windows'=> '0.12_01',
7361 'ExtUtils::CBuilder::Platform::aix'=> '0.12',
7362 'ExtUtils::CBuilder::Platform::cygwin'=> '0.12',
7363 'ExtUtils::CBuilder::Platform::darwin'=> '0.12',
7364 'ExtUtils::CBuilder::Platform::dec_osf'=> '0.01',
7365 'ExtUtils::CBuilder::Platform::os2'=> '0.13',
7366 'ExtUtils::Command' => '1.09',
7367 'ExtUtils::Command::MM' => '0.05_01',
7368 'ExtUtils::Constant' => '0.2',
7369 'ExtUtils::Constant::Base'=> '0.03',
7370 'ExtUtils::Constant::ProxySubs'=> '0.03',
7371 'ExtUtils::Constant::Utils'=> '0.01',
7372 'ExtUtils::Constant::XS'=> '0.02',
7373 'ExtUtils::Embed' => '1.26',
7374 'ExtUtils::Install' => '1.41',
7375 'ExtUtils::Installed' => '1.41',
7376 'ExtUtils::Liblist' => '1.01',
7377 'ExtUtils::Liblist::Kid'=> '1.3',
7378 'ExtUtils::MM' => '0.05',
7379 'ExtUtils::MM_AIX' => '0.03',
7380 'ExtUtils::MM_Any' => '0.13_02',
7381 'ExtUtils::MM_BeOS' => '1.05',
7382 'ExtUtils::MM_Cygwin' => '1.08',
7383 'ExtUtils::MM_DOS' => '0.02',
7384 'ExtUtils::MM_MacOS' => '1.08',
7385 'ExtUtils::MM_NW5' => '2.08_01',
7386 'ExtUtils::MM_OS2' => '1.05',
7387 'ExtUtils::MM_QNX' => '0.02',
7388 'ExtUtils::MM_UWIN' => '0.02',
7389 'ExtUtils::MM_Unix' => '1.5003',
7390 'ExtUtils::MM_VMS' => '5.73_03',
7391 'ExtUtils::MM_VOS' => '0.02',
7392 'ExtUtils::MM_Win32' => '1.12_02',
7393 'ExtUtils::MM_Win95' => '0.04_01',
7394 'ExtUtils::MY' => '0.01',
7395 'ExtUtils::MakeMaker' => '6.30_02',
7396 'ExtUtils::MakeMaker::Config'=> '0.02',
7397 'ExtUtils::MakeMaker::bytes'=> '0.01',
7398 'ExtUtils::MakeMaker::vmsish'=> '0.01',
7399 'ExtUtils::Manifest' => '1.46_01',
7400 'ExtUtils::Miniperl' => undef,
7401 'ExtUtils::Mkbootstrap' => '1.15_01',
7402 'ExtUtils::Mksymlists' => '1.19_01',
7403 'ExtUtils::Packlist' => '1.41',
7404 'ExtUtils::ParseXS' => '2.15_02',
7405 'ExtUtils::testlib' => '1.15',
7406 'Fatal' => '1.04',
7407 'Fcntl' => '1.05',
7408 'File::Basename' => '2.75',
7409 'File::CheckTree' => '4.3',
7410 'File::Compare' => '1.1005',
7411 'File::Copy' => '2.09',
7412 'File::DosGlob' => '1.00',
7413 'File::Find' => '1.11',
7414 'File::Glob' => '1.05',
7415 'File::GlobMapper' => '0.000_02',
7416 'File::Path' => '1.08',
7417 'File::Spec' => '3.19',
7418 'File::Spec::Cygwin' => '1.1',
7419 'File::Spec::Epoc' => '1.1',
7420 'File::Spec::Functions' => '1.3',
7421 'File::Spec::Mac' => '1.4',
7422 'File::Spec::OS2' => '1.2',
7423 'File::Spec::Unix' => '1.5',
7424 'File::Spec::VMS' => '1.4',
7425 'File::Spec::Win32' => '1.6',
7426 'File::Temp' => '0.16_01',
7427 'File::stat' => '1.00',
7428 'FileCache' => '1.07',
7429 'FileHandle' => '2.01',
7430 'VMS::Filespec' => '1.11',
7431 'Filter::Simple' => '0.82',
7432 'Filter::Util::Call' => '1.0601',
7433 'FindBin' => '1.47',
7434 'GDBM_File' => '1.08',
7435 'Getopt::Long' => '2.3501',
7436 'Getopt::Std' => '1.05',
7437 'Hash::Util' => '0.07',
7438 'Hash::Util::FieldHash' => '0.01',
7439 'I18N::Collate' => '1.00',
7440 'I18N::LangTags' => '0.35',
7441 'I18N::LangTags::Detect'=> '1.03',
7442 'I18N::LangTags::List' => '0.35',
7443 'I18N::Langinfo' => '0.02',
7444 'IO' => '1.23_01',
7445 'IO::Compress::Adapter::Deflate'=> '2.000_13',
7446 'IO::Compress::Adapter::Identity'=> '2.000_13',
7447 'IO::Compress::Base' => '2.000_13',
7448 'IO::Compress::Base::Common'=> '2.000_13',
7449 'IO::Compress::Deflate' => '2.000_13',
7450 'IO::Compress::Gzip' => '2.000_13',
7451 'IO::Compress::Gzip::Constants'=> '2.000_13',
7452 'IO::Compress::RawDeflate'=> '2.000_13',
7453 'IO::Compress::Zip' => '2.000_13',
7454 'IO::Compress::Zip::Constants'=> '2.000_13',
7455 'IO::Compress::Zlib::Constants'=> '2.000_13',
7456 'IO::Compress::Zlib::Extra'=> '2.000_13',
7457 'IO::Dir' => '1.06',
7458 'IO::File' => '1.14',
7459 'IO::Handle' => '1.27',
7460 'IO::Pipe' => '1.13',
7461 'IO::Poll' => '0.07',
7462 'IO::Seekable' => '1.10',
7463 'IO::Select' => '1.17',
7464 'IO::Socket' => '1.30_01',
7465 'IO::Socket::INET' => '1.31',
7466 'IO::Socket::UNIX' => '1.23',
7467 'IO::Uncompress::Adapter::Identity'=> '2.000_13',
7468 'IO::Uncompress::Adapter::Inflate'=> '2.000_13',
7469 'IO::Uncompress::AnyInflate'=> '2.000_13',
7470 'IO::Uncompress::AnyUncompress'=> '2.000_13',
7471 'IO::Uncompress::Base' => '2.000_13',
7472 'IO::Uncompress::Gunzip'=> '2.000_13',
7473 'IO::Uncompress::Inflate'=> '2.000_13',
7474 'IO::Uncompress::RawInflate'=> '2.000_13',
7475 'IO::Uncompress::Unzip' => '2.000_13',
7476 'IO::Zlib' => '1.04_02',
7477 'IPC::Msg' => '1.02',
7478 'IPC::Open2' => '1.02',
7479 'IPC::Open3' => '1.02',
7480 'IPC::Semaphore' => '1.02',
7481 'IPC::SysV' => '1.04',
7482 'List::Util' => '1.18',
7483 'Locale::Constants' => '2.07',
7484 'Locale::Country' => '2.07',
7485 'Locale::Currency' => '2.07',
7486 'Locale::Language' => '2.07',
7487 'Locale::Maketext' => '1.10_01',
7488 'Locale::Maketext::Guts'=> undef,
7489 'Locale::Maketext::GutsLoader'=> undef,
7490 'Locale::Script' => '2.07',
7491 'MIME::Base64' => '3.07_01',
7492 'MIME::QuotedPrint' => '3.07',
7493 'Math::BigFloat' => '1.51',
7494 'Math::BigFloat::Trace' => '0.01',
7495 'Math::BigInt' => '1.77',
7496 'Math::BigInt::Calc' => '0.47',
7497 'Math::BigInt::CalcEmu' => '0.05',
7498 'Math::BigInt::FastCalc'=> '0.10',
7499 'Math::BigInt::Trace' => '0.01',
7500 'Math::BigRat' => '0.15',
7501 'Math::Complex' => '1.36',
7502 'Math::Trig' => '1.04',
7503 'Memoize' => '1.01_01',
7504 'Memoize::AnyDBM_File' => '0.65',
7505 'Memoize::Expire' => '1.00',
7506 'Memoize::ExpireFile' => '1.01',
7507 'Memoize::ExpireTest' => '0.65',
7508 'Memoize::NDBM_File' => '0.65',
7509 'Memoize::SDBM_File' => '0.65',
7510 'Memoize::Storable' => '0.65',
7511 'Module::Build' => '0.2805',
7512 'Module::Build::Base' => undef,
7513 'Module::Build::Compat' => '0.03',
7514 'Module::Build::ConfigData'=> undef,
7515 'Module::Build::Cookbook'=> undef,
7516 'Module::Build::ModuleInfo'=> undef,
7517 'Module::Build::Notes' => undef,
7518 'Module::Build::PPMMaker'=> undef,
7519 'Module::Build::Platform::Amiga'=> undef,
7520 'Module::Build::Platform::Default'=> undef,
7521 'Module::Build::Platform::EBCDIC'=> undef,
7522 'Module::Build::Platform::MPEiX'=> undef,
7523 'Module::Build::Platform::MacOS'=> undef,
7524 'Module::Build::Platform::RiscOS'=> undef,
7525 'Module::Build::Platform::Unix'=> undef,
7526 'Module::Build::Platform::VMS'=> undef,
7527 'Module::Build::Platform::VOS'=> undef,
7528 'Module::Build::Platform::Windows'=> undef,
7529 'Module::Build::Platform::aix'=> undef,
7530 'Module::Build::Platform::cygwin'=> undef,
7531 'Module::Build::Platform::darwin'=> undef,
7532 'Module::Build::Platform::os2'=> undef,
7533 'Module::Build::PodParser'=> undef,
7534 'Module::Build::Version'=> '0',
7535 'Module::Build::YAML' => '0.50',
7536 'Module::CoreList' => '2.08',
7537 'Module::Load' => '0.10',
7538 'Module::Loaded' => '0.01',
7539 'Moped::Msg' => '0.01',
7540 'NDBM_File' => '1.06',
7541 'NEXT' => '0.60_01',
7542 'Net::Cmd' => '2.26_01',
7543 'Net::Config' => '1.10',
7544 'Net::Domain' => '2.19_01',
7545 'Net::FTP' => '2.75',
7546 'Net::FTP::A' => '1.16',
7547 'Net::FTP::E' => '0.01',
7548 'Net::FTP::I' => '1.12',
7549 'Net::FTP::L' => '0.01',
7550 'Net::FTP::dataconn' => '0.11',
7551 'Net::NNTP' => '2.23',
7552 'Net::Netrc' => '2.12',
7553 'Net::POP3' => '2.28',
7554 'Net::Ping' => '2.31_04',
7555 'Net::SMTP' => '2.29',
7556 'Net::Time' => '2.10',
7557 'Net::hostent' => '1.01',
7558 'Net::netent' => '1.00',
7559 'Net::protoent' => '1.00',
7560 'Net::servent' => '1.01',
7561 'O' => '1.00',
7562 'ODBM_File' => '1.06',
7563 'Opcode' => '1.08',
7564 'POSIX' => '1.10',
7565 'Package::Constants' => '0.01',
7566 'PerlIO' => '1.04',
7567 'PerlIO::encoding' => '0.09',
7568 'PerlIO::scalar' => '0.04',
7569 'PerlIO::via' => '0.03',
7570 'PerlIO::via::QuotedPrint'=> '0.06',
7571 'Pod::Checker' => '1.43',
7572 'Pod::Escapes' => '1.04',
7573 'Pod::Find' => '1.34',
7574 'Pod::Functions' => '1.03',
7575 'Pod::Html' => '1.07',
7576 'Pod::InputObjects' => '1.3',
7577 'Pod::LaTeX' => '0.58',
7578 'Pod::Man' => '2.09',
7579 'Pod::ParseLink' => '1.06',
7580 'Pod::ParseUtils' => '1.33',
7581 'Pod::Parser' => '1.32',
7582 'Pod::Perldoc' => '3.14_01',
7583 'Pod::Perldoc::BaseTo' => undef,
7584 'Pod::Perldoc::GetOptsOO'=> undef,
7585 'Pod::Perldoc::ToChecker'=> undef,
7586 'Pod::Perldoc::ToMan' => undef,
7587 'Pod::Perldoc::ToNroff' => undef,
7588 'Pod::Perldoc::ToPod' => undef,
7589 'Pod::Perldoc::ToRtf' => undef,
7590 'Pod::Perldoc::ToText' => undef,
7591 'Pod::Perldoc::ToTk' => undef,
7592 'Pod::Perldoc::ToXml' => undef,
7593 'Pod::PlainText' => '2.02',
7594 'Pod::Plainer' => '0.01',
7595 'Pod::Select' => '1.3',
7596 'Pod::Simple' => '3.04',
7597 'Pod::Simple::BlackBox' => undef,
7598 'Pod::Simple::Checker' => '2.02',
7599 'Pod::Simple::Debug' => undef,
7600 'Pod::Simple::DumpAsText'=> '2.02',
7601 'Pod::Simple::DumpAsXML'=> '2.02',
7602 'Pod::Simple::HTML' => '3.03',
7603 'Pod::Simple::HTMLBatch'=> '3.02',
7604 'Pod::Simple::HTMLLegacy'=> '5.01',
7605 'Pod::Simple::LinkSection'=> undef,
7606 'Pod::Simple::Methody' => '2.02',
7607 'Pod::Simple::Progress' => '1.01',
7608 'Pod::Simple::PullParser'=> '2.02',
7609 'Pod::Simple::PullParserEndToken'=> undef,
7610 'Pod::Simple::PullParserStartToken'=> undef,
7611 'Pod::Simple::PullParserTextToken'=> undef,
7612 'Pod::Simple::PullParserToken'=> '2.02',
7613 'Pod::Simple::RTF' => '2.02',
7614 'Pod::Simple::Search' => '3.04',
7615 'Pod::Simple::SimpleTree'=> '2.02',
7616 'Pod::Simple::Text' => '2.02',
7617 'Pod::Simple::TextContent'=> '2.02',
7618 'Pod::Simple::TiedOutFH'=> undef,
7619 'Pod::Simple::Transcode'=> undef,
7620 'Pod::Simple::TranscodeDumb'=> '2.02',
7621 'Pod::Simple::TranscodeSmart'=> undef,
7622 'Pod::Simple::XMLOutStream'=> '2.02',
7623 'Pod::Text' => '3.07',
7624 'Pod::Text::Color' => '2.03',
7625 'Pod::Text::Overstrike' => '2',
7626 'Pod::Text::Termcap' => '2.03',
7627 'Pod::Usage' => '1.33_01',
7628 'SDBM_File' => '1.06',
7629 'Safe' => '2.12',
7630 'Scalar::Util' => '1.18',
7631 'Search::Dict' => '1.02',
7632 'SelectSaver' => '1.01',
7633 'SelfLoader' => '1.0905',
7634 'Shell' => '0.7',
7635 'Socket' => '1.78',
7636 'Stdio' => '2.3',
7637 'Storable' => '2.15_02',
7638 'Switch' => '2.10_01',
7639 'Symbol' => '1.06',
7640 'Sys::Hostname' => '1.11',
7641 'Sys::Syslog' => '0.17',
7642 'Term::ANSIColor' => '1.11',
7643 'Term::Cap' => '1.09',
7644 'Term::Complete' => '1.402',
7645 'Term::ReadLine' => '1.02',
7646 'Test' => '1.25',
7647 'Test::Builder' => '0.33',
7648 'Test::Builder::Module' => '0.03',
7649 'Test::Builder::Tester' => '1.04',
7650 'Test::Builder::Tester::Color'=> undef,
7651 'Test::Harness' => '2.62',
7652 'Test::Harness::Assert' => '0.02',
7653 'Test::Harness::Iterator'=> '0.02',
7654 'Test::Harness::Point' => '0.01',
7655 'Test::Harness::Straps' => '0.26',
7656 'Test::Harness::Util' => '0.01',
7657 'Test::More' => '0.64',
7658 'Test::Simple' => '0.64',
7659 'Text::Abbrev' => '1.01',
7660 'Text::Balanced' => '1.98_01',
7661 'Text::ParseWords' => '3.25',
7662 'Text::Soundex' => '1.01',
7663 'Text::Tabs' => '2007.071101',
7664 'Text::Wrap' => '2006.0711',
7665 'Thread' => '2.00',
7666 'Thread::Queue' => '2.00',
7667 'Thread::Semaphore' => '2.01',
7668 'Thread::Signal' => '1.00',
7669 'Thread::Specific' => '1.00',
7670 'Tie::Array' => '1.03',
7671 'Tie::File' => '0.97_01',
7672 'Tie::Handle' => '4.1',
7673 'Tie::Hash' => '1.02',
7674 'Tie::Memoize' => '1.0',
7675 'Tie::RefHash' => '1.34_01',
7676 'Tie::Scalar' => '1.00',
7677 'Tie::SubstrHash' => '1.00',
7678 'Time::HiRes' => '1.87',
7679 'Time::Local' => '1.13',
7680 'Time::gmtime' => '1.03',
7681 'Time::localtime' => '1.02',
7682 'Time::tm' => '1.00',
7683 'UNIVERSAL' => '1.04',
7684 'Unicode' => '4.1.0',
7685 'Unicode::Collate' => '0.52',
7686 'Unicode::Normalize' => '1.01',
7687 'Unicode::UCD' => '0.24',
7688 'User::grent' => '1.01',
7689 'User::pwent' => '1.00',
7690 'Win32' => '0.2601',
7691 'Win32API::File' => '0.1001',
7692 'Win32API::File::ExtUtils::Myconst2perl'=> '1',
7693 'XS::APItest' => '0.09',
7694 'XS::Typemap' => '0.02',
7695 'XSLoader' => '0.06',
7696 'XSSymSet' => '1.0',
7697 'assertions' => '0.03',
7698 'assertions::activate' => '0.02',
7699 'assertions::compat' => '0.02',
7700 'attributes' => '0.06',
7701 'attrs' => '1.02',
7702 'autouse' => '1.06',
7703 'base' => '2.07',
7704 'bigint' => '0.07',
7705 'bignum' => '0.17',
7706 'bigrat' => '0.08',
7707 'blib' => '1.03',
7708 'bytes' => '1.02',
7709 'charnames' => '1.05',
7710 'constant' => '1.07',
7711 'diagnostics' => '1.16',
7712 'encoding' => '2.04',
7713 'encoding::warnings' => '0.10',
7714 'feature' => '1.01',
7715 'fields' => '2.03',
7716 'filetest' => '1.01',
7717 'if' => '0.05',
7718 'integer' => '1.00',
7719 'less' => '0.01',
7720 'lib' => '0.5565',
7721 'locale' => '1.00',
7722 'open' => '1.05',
7723 'ops' => '1.01',
7724 'overload' => '1.04',
7725 're' => '0.0601',
7726 'sigtrap' => '1.02',
7727 'sort' => '2.00',
7728 'strict' => '1.03',
7729 'subs' => '1.00',
7730 'threads' => '1.38',
7731 'threads::shared' => '0.94_01',
7732 'utf8' => '1.06',
7733 'vars' => '1.01',
7734 'version' => '0.67',
7735 'vmsish' => '1.02',
7736 'warnings' => '1.05',
7737 'warnings::register' => '1.01',
7740 5.009005 => {
7741 'AnyDBM_File' => '1.00',
7742 'Archive::Extract' => '0.22_01',
7743 'Archive::Tar' => '1.32',
7744 'Archive::Tar::Constant'=> '0.02',
7745 'Archive::Tar::File' => '0.02',
7746 'Attribute::Handlers' => '0.78_06',
7747 'AutoLoader' => '5.63',
7748 'AutoSplit' => '1.05',
7749 'B' => '1.16',
7750 'B::Concise' => '0.72',
7751 'B::Debug' => '1.05',
7752 'B::Deparse' => '0.82',
7753 'B::Lint' => '1.09',
7754 'B::Showlex' => '1.02',
7755 'B::Terse' => '1.05',
7756 'B::Xref' => '1.01',
7757 'Benchmark' => '1.1',
7758 'CGI' => '3.29',
7759 'CGI::Apache' => '1.00',
7760 'CGI::Carp' => '1.29',
7761 'CGI::Cookie' => '1.28',
7762 'CGI::Fast' => '1.07',
7763 'CGI::Pretty' => '1.08',
7764 'CGI::Push' => '1.04',
7765 'CGI::Switch' => '1.00',
7766 'CGI::Util' => '1.5_01',
7767 'CPAN' => '1.9102',
7768 'CPAN::Debug' => '5.400955',
7769 'CPAN::FirstTime' => '5.401669',
7770 'CPAN::HandleConfig' => '5.401744',
7771 'CPAN::Kwalify' => '5.401418',
7772 'CPAN::Nox' => '5.400844',
7773 'CPAN::Queue' => '5.401704',
7774 'CPAN::Tarzip' => '5.401717',
7775 'CPAN::Version' => '5.401387',
7776 'CPANPLUS' => '0.81_01',
7777 'CPANPLUS::Backend' => undef,
7778 'CPANPLUS::Backend::RV' => undef,
7779 'CPANPLUS::Config' => undef,
7780 'CPANPLUS::Configure' => undef,
7781 'CPANPLUS::Configure::Setup'=> undef,
7782 'CPANPLUS::Dist' => undef,
7783 'CPANPLUS::Dist::Base' => '0.01',
7784 'CPANPLUS::Dist::Build' => '0.06_01',
7785 'CPANPLUS::Dist::Build::Constants'=> '0.01',
7786 'CPANPLUS::Dist::MM' => undef,
7787 'CPANPLUS::Dist::Sample'=> undef,
7788 'CPANPLUS::Error' => undef,
7789 'CPANPLUS::Internals' => '0.81_01',
7790 'CPANPLUS::Internals::Constants'=> '0.01',
7791 'CPANPLUS::Internals::Constants::Report'=> '0.01',
7792 'CPANPLUS::Internals::Extract'=> undef,
7793 'CPANPLUS::Internals::Fetch'=> undef,
7794 'CPANPLUS::Internals::Report'=> undef,
7795 'CPANPLUS::Internals::Search'=> undef,
7796 'CPANPLUS::Internals::Source'=> undef,
7797 'CPANPLUS::Internals::Utils'=> undef,
7798 'CPANPLUS::Internals::Utils::Autoflush'=> undef,
7799 'CPANPLUS::Module' => undef,
7800 'CPANPLUS::Module::Author'=> undef,
7801 'CPANPLUS::Module::Author::Fake'=> undef,
7802 'CPANPLUS::Module::Checksums'=> undef,
7803 'CPANPLUS::Module::Fake'=> undef,
7804 'CPANPLUS::Module::Signature'=> undef,
7805 'CPANPLUS::Selfupdate' => undef,
7806 'CPANPLUS::Shell' => undef,
7807 'CPANPLUS::Shell::Classic'=> '0.0562',
7808 'CPANPLUS::Shell::Default'=> '0.81_01',
7809 'CPANPLUS::Shell::Default::Plugins::Remote'=> undef,
7810 'CPANPLUS::Shell::Default::Plugins::Source'=> undef,
7811 'CPANPLUS::inc' => undef,
7812 'Carp' => '1.07',
7813 'Carp::Heavy' => '1.07',
7814 'Class::ISA' => '0.33',
7815 'Class::Struct' => '0.63',
7816 'Compress::Raw::Zlib' => '2.005',
7817 'Compress::Zlib' => '2.005',
7818 'Config' => undef,
7819 'Config::Extensions' => '0.01',
7820 'Cwd' => '3.25',
7821 'DB' => '1.01',
7822 'DBM_Filter' => '0.02',
7823 'DBM_Filter::compress' => '0.01',
7824 'DBM_Filter::encode' => '0.01',
7825 'DBM_Filter::int32' => '0.01',
7826 'DBM_Filter::null' => '0.01',
7827 'DBM_Filter::utf8' => '0.01',
7828 'DB_File' => '1.815',
7829 'DCLsym' => '1.03',
7830 'Data::Dumper' => '2.121_13',
7831 'Devel::DProf' => '20050603.00',
7832 'Devel::InnerPackage' => '0.3',
7833 'Devel::PPPort' => '3.11_01',
7834 'Devel::Peek' => '1.03',
7835 'Devel::SelfStubber' => '1.03',
7836 'Digest' => '1.15',
7837 'Digest::MD5' => '2.36_01',
7838 'Digest::SHA' => '5.44',
7839 'Digest::base' => '1.00',
7840 'Digest::file' => '1.00',
7841 'DirHandle' => '1.01',
7842 'Dumpvalue' => '1.12',
7843 'DynaLoader' => '1.08',
7844 'Encode' => '2.23',
7845 'Encode::Alias' => '2.07',
7846 'Encode::Byte' => '2.03',
7847 'Encode::CJKConstants' => '2.02',
7848 'Encode::CN' => '2.02',
7849 'Encode::CN::HZ' => '2.04',
7850 'Encode::Config' => '2.04',
7851 'Encode::EBCDIC' => '2.02',
7852 'Encode::Encoder' => '2.01',
7853 'Encode::Encoding' => '2.05',
7854 'Encode::GSM0338' => '2.00',
7855 'Encode::Guess' => '2.02',
7856 'Encode::JP' => '2.03',
7857 'Encode::JP::H2Z' => '2.02',
7858 'Encode::JP::JIS7' => '2.03',
7859 'Encode::KR' => '2.02',
7860 'Encode::KR::2022_KR' => '2.02',
7861 'Encode::MIME::Header' => '2.05',
7862 'Encode::MIME::Header::ISO_2022_JP'=> '1.03',
7863 'Encode::MIME::Name' => '1.01',
7864 'Encode::Symbol' => '2.02',
7865 'Encode::TW' => '2.02',
7866 'Encode::Unicode' => '2.05',
7867 'Encode::Unicode::UTF7' => '2.04',
7868 'English' => '1.04',
7869 'Env' => '1.00',
7870 'Errno' => '1.10',
7871 'Exporter' => '5.60',
7872 'Exporter::Heavy' => '5.60',
7873 'ExtUtils::CBuilder' => '0.19',
7874 'ExtUtils::CBuilder::Base'=> '0.12',
7875 'ExtUtils::CBuilder::Platform::Unix'=> '0.12',
7876 'ExtUtils::CBuilder::Platform::VMS'=> '0.12',
7877 'ExtUtils::CBuilder::Platform::Windows'=> '0.13',
7878 'ExtUtils::CBuilder::Platform::aix'=> '0.12',
7879 'ExtUtils::CBuilder::Platform::cygwin'=> '0.12',
7880 'ExtUtils::CBuilder::Platform::darwin'=> '0.12',
7881 'ExtUtils::CBuilder::Platform::dec_osf'=> '0.01',
7882 'ExtUtils::CBuilder::Platform::os2'=> '0.13',
7883 'ExtUtils::Command' => '1.13',
7884 'ExtUtils::Command::MM' => '0.07',
7885 'ExtUtils::Constant' => '0.2',
7886 'ExtUtils::Constant::Base'=> '0.04',
7887 'ExtUtils::Constant::ProxySubs'=> '0.03',
7888 'ExtUtils::Constant::Utils'=> '0.01',
7889 'ExtUtils::Constant::XS'=> '0.02',
7890 'ExtUtils::Embed' => '1.26',
7891 'ExtUtils::Install' => '1.41_01',
7892 'ExtUtils::Installed' => '1.41',
7893 'ExtUtils::Liblist' => '1.03',
7894 'ExtUtils::Liblist::Kid'=> '1.33',
7895 'ExtUtils::MM' => '0.07',
7896 'ExtUtils::MM_AIX' => '0.05',
7897 'ExtUtils::MM_Any' => '0.15',
7898 'ExtUtils::MM_BeOS' => '1.07',
7899 'ExtUtils::MM_Cygwin' => '1.1',
7900 'ExtUtils::MM_DOS' => '0.04',
7901 'ExtUtils::MM_MacOS' => '1.1',
7902 'ExtUtils::MM_NW5' => '2.1',
7903 'ExtUtils::MM_OS2' => '1.07',
7904 'ExtUtils::MM_QNX' => '0.04',
7905 'ExtUtils::MM_UWIN' => '0.04',
7906 'ExtUtils::MM_Unix' => '1.54_01',
7907 'ExtUtils::MM_VMS' => '5.76',
7908 'ExtUtils::MM_VOS' => '0.04',
7909 'ExtUtils::MM_Win32' => '1.15',
7910 'ExtUtils::MM_Win95' => '0.06',
7911 'ExtUtils::MY' => '0.03',
7912 'ExtUtils::MakeMaker' => '6.36',
7913 'ExtUtils::MakeMaker::Config'=> '0.04',
7914 'ExtUtils::MakeMaker::bytes'=> '0.03',
7915 'ExtUtils::MakeMaker::vmsish'=> '0.03',
7916 'ExtUtils::Manifest' => '1.51_01',
7917 'ExtUtils::Miniperl' => undef,
7918 'ExtUtils::Mkbootstrap' => '1.17',
7919 'ExtUtils::Mksymlists' => '1.21',
7920 'ExtUtils::Packlist' => '1.41',
7921 'ExtUtils::ParseXS' => '2.18',
7922 'ExtUtils::testlib' => '1.17',
7923 'Fatal' => '1.05',
7924 'Fcntl' => '1.06',
7925 'File::Basename' => '2.76',
7926 'File::CheckTree' => '4.3',
7927 'File::Compare' => '1.1005',
7928 'File::Copy' => '2.10',
7929 'File::DosGlob' => '1.00',
7930 'File::Fetch' => '0.10',
7931 'File::Find' => '1.11',
7932 'File::Glob' => '1.06',
7933 'File::GlobMapper' => '0.000_02',
7934 'File::Path' => '2.01',
7935 'File::Spec' => '3.25',
7936 'File::Spec::Cygwin' => '1.1_01',
7937 'File::Spec::Epoc' => '1.1',
7938 'File::Spec::Functions' => '1.3',
7939 'File::Spec::Mac' => '1.4',
7940 'File::Spec::OS2' => '1.2',
7941 'File::Spec::Unix' => '1.5',
7942 'File::Spec::VMS' => '1.4_01',
7943 'File::Spec::Win32' => '1.6',
7944 'File::Temp' => '0.18',
7945 'File::stat' => '1.00',
7946 'FileCache' => '1.07',
7947 'FileHandle' => '2.01',
7948 'VMS::Filespec' => '1.11',
7949 'Filter::Simple' => '0.82',
7950 'Filter::Util::Call' => '1.0602',
7951 'FindBin' => '1.49',
7952 'GDBM_File' => '1.08',
7953 'Getopt::Long' => '2.36',
7954 'Getopt::Std' => '1.05',
7955 'Hash::Util' => '0.07',
7956 'Hash::Util::FieldHash' => '1.01',
7957 'I18N::Collate' => '1.00',
7958 'I18N::LangTags' => '0.35',
7959 'I18N::LangTags::Detect'=> '1.03',
7960 'I18N::LangTags::List' => '0.35',
7961 'I18N::Langinfo' => '0.02',
7962 'IO' => '1.23_01',
7963 'IO::Compress::Adapter::Deflate'=> '2.005',
7964 'IO::Compress::Adapter::Identity'=> '2.005',
7965 'IO::Compress::Base' => '2.005',
7966 'IO::Compress::Base::Common'=> '2.005',
7967 'IO::Compress::Deflate' => '2.005',
7968 'IO::Compress::Gzip' => '2.005',
7969 'IO::Compress::Gzip::Constants'=> '2.005',
7970 'IO::Compress::RawDeflate'=> '2.005',
7971 'IO::Compress::Zip' => '2.005',
7972 'IO::Compress::Zip::Constants'=> '2.005',
7973 'IO::Compress::Zlib::Constants'=> '2.005',
7974 'IO::Compress::Zlib::Extra'=> '2.005',
7975 'IO::Dir' => '1.06',
7976 'IO::File' => '1.14',
7977 'IO::Handle' => '1.27',
7978 'IO::Pipe' => '1.13',
7979 'IO::Poll' => '0.07',
7980 'IO::Seekable' => '1.10',
7981 'IO::Select' => '1.17',
7982 'IO::Socket' => '1.30_01',
7983 'IO::Socket::INET' => '1.31',
7984 'IO::Socket::UNIX' => '1.23',
7985 'IO::Uncompress::Adapter::Identity'=> '2.005',
7986 'IO::Uncompress::Adapter::Inflate'=> '2.005',
7987 'IO::Uncompress::AnyInflate'=> '2.005',
7988 'IO::Uncompress::AnyUncompress'=> '2.005',
7989 'IO::Uncompress::Base' => '2.005',
7990 'IO::Uncompress::Gunzip'=> '2.005',
7991 'IO::Uncompress::Inflate'=> '2.005',
7992 'IO::Uncompress::RawInflate'=> '2.005',
7993 'IO::Uncompress::Unzip' => '2.005',
7994 'IO::Zlib' => '1.05_01',
7995 'IPC::Cmd' => '0.36_01',
7996 'IPC::Msg' => '1.02',
7997 'IPC::Open2' => '1.02',
7998 'IPC::Open3' => '1.02',
7999 'IPC::Semaphore' => '1.02',
8000 'IPC::SysV' => '1.04',
8001 'List::Util' => '1.19',
8002 'Locale::Constants' => '2.07',
8003 'Locale::Country' => '2.07',
8004 'Locale::Currency' => '2.07',
8005 'Locale::Language' => '2.07',
8006 'Locale::Maketext' => '1.10_01',
8007 'Locale::Maketext::Guts'=> undef,
8008 'Locale::Maketext::GutsLoader'=> undef,
8009 'Locale::Maketext::Simple'=> '0.18',
8010 'Locale::Script' => '2.07',
8011 'Log::Message' => '0.01',
8012 'Log::Message::Config' => '0.01',
8013 'Log::Message::Handlers'=> undef,
8014 'Log::Message::Item' => undef,
8015 'Log::Message::Simple' => '0.0201',
8016 'MIME::Base64' => '3.07_01',
8017 'MIME::QuotedPrint' => '3.07',
8018 'Math::BigFloat' => '1.58',
8019 'Math::BigFloat::Trace' => '0.01',
8020 'Math::BigInt' => '1.87',
8021 'Math::BigInt::Calc' => '0.51',
8022 'Math::BigInt::CalcEmu' => '0.05',
8023 'Math::BigInt::FastCalc'=> '0.15_01',
8024 'Math::BigInt::Trace' => '0.01',
8025 'Math::BigRat' => '0.19',
8026 'Math::Complex' => '1.37',
8027 'Math::Trig' => '1.04',
8028 'Memoize' => '1.01_02',
8029 'Memoize::AnyDBM_File' => '0.65',
8030 'Memoize::Expire' => '1.00',
8031 'Memoize::ExpireFile' => '1.01',
8032 'Memoize::ExpireTest' => '0.65',
8033 'Memoize::NDBM_File' => '0.65',
8034 'Memoize::SDBM_File' => '0.65',
8035 'Memoize::Storable' => '0.65',
8036 'Module::Build' => '0.2808',
8037 'Module::Build::Base' => undef,
8038 'Module::Build::Compat' => '0.03',
8039 'Module::Build::Config' => undef,
8040 'Module::Build::ConfigData'=> undef,
8041 'Module::Build::Cookbook'=> undef,
8042 'Module::Build::ModuleInfo'=> undef,
8043 'Module::Build::Notes' => undef,
8044 'Module::Build::PPMMaker'=> undef,
8045 'Module::Build::Platform::Amiga'=> undef,
8046 'Module::Build::Platform::Default'=> undef,
8047 'Module::Build::Platform::EBCDIC'=> undef,
8048 'Module::Build::Platform::MPEiX'=> undef,
8049 'Module::Build::Platform::MacOS'=> undef,
8050 'Module::Build::Platform::RiscOS'=> undef,
8051 'Module::Build::Platform::Unix'=> undef,
8052 'Module::Build::Platform::VMS'=> undef,
8053 'Module::Build::Platform::VOS'=> undef,
8054 'Module::Build::Platform::Windows'=> undef,
8055 'Module::Build::Platform::aix'=> undef,
8056 'Module::Build::Platform::cygwin'=> undef,
8057 'Module::Build::Platform::darwin'=> undef,
8058 'Module::Build::Platform::os2'=> undef,
8059 'Module::Build::PodParser'=> undef,
8060 'Module::Build::Version'=> '0.7203',
8061 'Module::Build::YAML' => '0.50',
8062 'Module::CoreList' => '2.12',
8063 'Module::Load' => '0.10',
8064 'Module::Load::Conditional'=> '0.16',
8065 'Module::Loaded' => '0.01',
8066 'Module::Pluggable' => '3.6',
8067 'Module::Pluggable::Object'=> '3.6',
8068 'Moped::Msg' => '0.01',
8069 'NDBM_File' => '1.07',
8070 'NEXT' => '0.60_01',
8071 'Net::Cmd' => '2.28',
8072 'Net::Config' => '1.11',
8073 'Net::Domain' => '2.20',
8074 'Net::FTP' => '2.77',
8075 'Net::FTP::A' => '1.18',
8076 'Net::FTP::E' => '0.01',
8077 'Net::FTP::I' => '1.12',
8078 'Net::FTP::L' => '0.01',
8079 'Net::FTP::dataconn' => '0.11',
8080 'Net::NNTP' => '2.24',
8081 'Net::Netrc' => '2.12',
8082 'Net::POP3' => '2.29',
8083 'Net::Ping' => '2.31_04',
8084 'Net::SMTP' => '2.31',
8085 'Net::Time' => '2.10',
8086 'Net::hostent' => '1.01',
8087 'Net::netent' => '1.00',
8088 'Net::protoent' => '1.00',
8089 'Net::servent' => '1.01',
8090 'O' => '1.00',
8091 'ODBM_File' => '1.07',
8092 'Object::Accessor' => '0.32',
8093 'Opcode' => '1.09',
8094 'POSIX' => '1.13',
8095 'Package::Constants' => '0.01',
8096 'Params::Check' => '0.26',
8097 'PerlIO' => '1.04',
8098 'PerlIO::encoding' => '0.10',
8099 'PerlIO::scalar' => '0.05',
8100 'PerlIO::via' => '0.04',
8101 'PerlIO::via::QuotedPrint'=> '0.06',
8102 'Pod::Checker' => '1.43',
8103 'Pod::Escapes' => '1.04',
8104 'Pod::Find' => '1.34',
8105 'Pod::Functions' => '1.03',
8106 'Pod::Html' => '1.08',
8107 'Pod::InputObjects' => '1.3',
8108 'Pod::LaTeX' => '0.58',
8109 'Pod::Man' => '2.12',
8110 'Pod::ParseLink' => '1.06',
8111 'Pod::ParseUtils' => '1.35',
8112 'Pod::Parser' => '1.35',
8113 'Pod::Perldoc' => '3.14_01',
8114 'Pod::Perldoc::BaseTo' => undef,
8115 'Pod::Perldoc::GetOptsOO'=> undef,
8116 'Pod::Perldoc::ToChecker'=> undef,
8117 'Pod::Perldoc::ToMan' => undef,
8118 'Pod::Perldoc::ToNroff' => undef,
8119 'Pod::Perldoc::ToPod' => undef,
8120 'Pod::Perldoc::ToRtf' => undef,
8121 'Pod::Perldoc::ToText' => undef,
8122 'Pod::Perldoc::ToTk' => undef,
8123 'Pod::Perldoc::ToXml' => undef,
8124 'Pod::PlainText' => '2.02',
8125 'Pod::Plainer' => '0.01',
8126 'Pod::Select' => '1.35',
8127 'Pod::Simple' => '3.05',
8128 'Pod::Simple::BlackBox' => undef,
8129 'Pod::Simple::Checker' => '2.02',
8130 'Pod::Simple::Debug' => undef,
8131 'Pod::Simple::DumpAsText'=> '2.02',
8132 'Pod::Simple::DumpAsXML'=> '2.02',
8133 'Pod::Simple::HTML' => '3.03',
8134 'Pod::Simple::HTMLBatch'=> '3.02',
8135 'Pod::Simple::HTMLLegacy'=> '5.01',
8136 'Pod::Simple::LinkSection'=> undef,
8137 'Pod::Simple::Methody' => '2.02',
8138 'Pod::Simple::Progress' => '1.01',
8139 'Pod::Simple::PullParser'=> '2.02',
8140 'Pod::Simple::PullParserEndToken'=> undef,
8141 'Pod::Simple::PullParserStartToken'=> undef,
8142 'Pod::Simple::PullParserTextToken'=> undef,
8143 'Pod::Simple::PullParserToken'=> '2.02',
8144 'Pod::Simple::RTF' => '2.02',
8145 'Pod::Simple::Search' => '3.04',
8146 'Pod::Simple::SimpleTree'=> '2.02',
8147 'Pod::Simple::Text' => '2.02',
8148 'Pod::Simple::TextContent'=> '2.02',
8149 'Pod::Simple::TiedOutFH'=> undef,
8150 'Pod::Simple::Transcode'=> undef,
8151 'Pod::Simple::TranscodeDumb'=> '2.02',
8152 'Pod::Simple::TranscodeSmart'=> undef,
8153 'Pod::Simple::XMLOutStream'=> '2.02',
8154 'Pod::Text' => '3.08',
8155 'Pod::Text::Color' => '2.03',
8156 'Pod::Text::Overstrike' => '2',
8157 'Pod::Text::Termcap' => '2.03',
8158 'Pod::Usage' => '1.35',
8159 'SDBM_File' => '1.06',
8160 'Safe' => '2.12',
8161 'Scalar::Util' => '1.19',
8162 'Search::Dict' => '1.02',
8163 'SelectSaver' => '1.01',
8164 'SelfLoader' => '1.11',
8165 'Shell' => '0.72_01',
8166 'Socket' => '1.79',
8167 'Stdio' => '2.3',
8168 'Storable' => '2.16',
8169 'Switch' => '2.13',
8170 'Symbol' => '1.06',
8171 'Sys::Hostname' => '1.11',
8172 'Sys::Syslog' => '0.18_01',
8173 'Term::ANSIColor' => '1.12',
8174 'Term::Cap' => '1.09',
8175 'Term::Complete' => '1.402',
8176 'Term::ReadLine' => '1.02',
8177 'Term::UI' => '0.14_01',
8178 'Term::UI::History' => undef,
8179 'Test' => '1.25',
8180 'Test::Builder' => '0.70',
8181 'Test::Builder::Module' => '0.68',
8182 'Test::Builder::Tester' => '1.07',
8183 'Test::Builder::Tester::Color'=> undef,
8184 'Test::Harness' => '2.64',
8185 'Test::Harness::Assert' => '0.02',
8186 'Test::Harness::Iterator'=> '0.02',
8187 'Test::Harness::Point' => '0.01',
8188 'Test::Harness::Results'=> '0.01',
8189 'Test::Harness::Straps' => '0.26',
8190 'Test::Harness::Util' => '0.01',
8191 'Test::More' => '0.70',
8192 'Test::Simple' => '0.70',
8193 'Text::Abbrev' => '1.01',
8194 'Text::Balanced' => '2.0.0',
8195 'Text::ParseWords' => '3.25',
8196 'Text::Soundex' => '3.02',
8197 'Text::Tabs' => '2007.1117',
8198 'Text::Wrap' => '2006.1117',
8199 'Thread' => '3.02',
8200 'Thread::Queue' => '2.00',
8201 'Thread::Semaphore' => '2.01',
8202 'Tie::Array' => '1.03',
8203 'Tie::File' => '0.97_02',
8204 'Tie::Handle' => '4.1',
8205 'Tie::Hash' => '1.02',
8206 'Tie::Hash::NamedCapture'=> '0.06',
8207 'Tie::Memoize' => '1.1',
8208 'Tie::RefHash' => '1.37',
8209 'Tie::Scalar' => '1.00',
8210 'Tie::SubstrHash' => '1.00',
8211 'Time::HiRes' => '1.9707',
8212 'Time::Local' => '1.17',
8213 'Time::Piece' => '1.11_02',
8214 'Time::Piece::Seconds' => undef,
8215 'Time::Seconds' => undef,
8216 'Time::gmtime' => '1.03',
8217 'Time::localtime' => '1.02',
8218 'Time::tm' => '1.00',
8219 'UNIVERSAL' => '1.04',
8220 'Unicode' => '5.0.0',
8221 'Unicode::Collate' => '0.52',
8222 'Unicode::Normalize' => '1.02',
8223 'Unicode::UCD' => '0.25',
8224 'User::grent' => '1.01',
8225 'User::pwent' => '1.00',
8226 'Win32' => '0.30',
8227 'Win32API::File' => '0.1001_01',
8228 'Win32API::File::ExtUtils::Myconst2perl'=> '1',
8229 'Win32CORE' => '0.02',
8230 'XS::APItest' => '0.12',
8231 'XS::Typemap' => '0.02',
8232 'XSLoader' => '0.08',
8233 'XSSymSet' => '1.1',
8234 'attributes' => '0.08',
8235 'attrs' => '1.02',
8236 'autouse' => '1.06',
8237 'base' => '2.12',
8238 'bigint' => '0.22',
8239 'bignum' => '0.22',
8240 'bigrat' => '0.22',
8241 'blib' => '1.03',
8242 'bytes' => '1.03',
8243 'charnames' => '1.06',
8244 'constant' => '1.10',
8245 'diagnostics' => '1.17',
8246 'encoding' => '2.06',
8247 'encoding::warnings' => '0.11',
8248 'feature' => '1.10',
8249 'fields' => '2.12',
8250 'filetest' => '1.01',
8251 'if' => '0.05',
8252 'integer' => '1.00',
8253 'less' => '0.02',
8254 'lib' => '0.5565',
8255 'locale' => '1.00',
8256 'mro' => '1.00',
8257 'open' => '1.05',
8258 'ops' => '1.01',
8259 'overload' => '1.06',
8260 're' => '0.08',
8261 'sigtrap' => '1.04',
8262 'sort' => '2.01',
8263 'strict' => '1.04',
8264 'subs' => '1.00',
8265 'threads' => '1.63',
8266 'threads::shared' => '1.12',
8267 'utf8' => '1.07',
8268 'vars' => '1.01',
8269 'version' => '0.7203',
8270 'vmsish' => '1.02',
8271 'warnings' => '1.06',
8272 'warnings::register' => '1.01',
8275 5.010000 => {
8276 'AnyDBM_File' => '1.00',
8277 'Archive::Extract' => '0.24',
8278 'Archive::Tar' => '1.38',
8279 'Archive::Tar::Constant'=> '0.02',
8280 'Archive::Tar::File' => '0.02',
8281 'Attribute::Handlers' => '0.79',
8282 'AutoLoader' => '5.63',
8283 'AutoSplit' => '1.05',
8284 'B' => '1.17',
8285 'B::Concise' => '0.74',
8286 'B::Debug' => '1.05',
8287 'B::Deparse' => '0.83',
8288 'B::Lint' => '1.09',
8289 'B::Showlex' => '1.02',
8290 'B::Terse' => '1.05',
8291 'B::Xref' => '1.01',
8292 'Benchmark' => '1.1',
8293 'CGI' => '3.29',
8294 'CGI::Apache' => '1.00',
8295 'CGI::Carp' => '1.29',
8296 'CGI::Cookie' => '1.28',
8297 'CGI::Fast' => '1.07',
8298 'CGI::Pretty' => '1.08',
8299 'CGI::Push' => '1.04',
8300 'CGI::Switch' => '1.00',
8301 'CGI::Util' => '1.5_01',
8302 'CPAN' => '1.9205',
8303 'CPAN::API::HOWTO' => undef,
8304 'CPAN::Debug' => '5.402212',
8305 'CPAN::DeferedCode' => '5.50',
8306 'CPAN::FirstTime' => '5.402229',
8307 'CPAN::HandleConfig' => '5.402212',
8308 'CPAN::Kwalify' => '5.401418',
8309 'CPAN::Nox' => '5.402411',
8310 'CPAN::Queue' => '5.402212',
8311 'CPAN::Tarzip' => '5.402213',
8312 'CPAN::Version' => '5.5',
8313 'CPANPLUS' => '0.84',
8314 'CPANPLUS::Backend' => undef,
8315 'CPANPLUS::Backend::RV' => undef,
8316 'CPANPLUS::Config' => undef,
8317 'CPANPLUS::Configure' => undef,
8318 'CPANPLUS::Configure::Setup'=> undef,
8319 'CPANPLUS::Dist' => undef,
8320 'CPANPLUS::Dist::Base' => '0.01',
8321 'CPANPLUS::Dist::Build' => '0.06_02',
8322 'CPANPLUS::Dist::Build::Constants'=> '0.01',
8323 'CPANPLUS::Dist::MM' => undef,
8324 'CPANPLUS::Dist::Sample'=> undef,
8325 'CPANPLUS::Error' => undef,
8326 'CPANPLUS::Internals' => '0.84',
8327 'CPANPLUS::Internals::Constants'=> '0.01',
8328 'CPANPLUS::Internals::Constants::Report'=> '0.01',
8329 'CPANPLUS::Internals::Extract'=> undef,
8330 'CPANPLUS::Internals::Fetch'=> undef,
8331 'CPANPLUS::Internals::Report'=> undef,
8332 'CPANPLUS::Internals::Search'=> undef,
8333 'CPANPLUS::Internals::Source'=> undef,
8334 'CPANPLUS::Internals::Utils'=> undef,
8335 'CPANPLUS::Internals::Utils::Autoflush'=> undef,
8336 'CPANPLUS::Module' => undef,
8337 'CPANPLUS::Module::Author'=> undef,
8338 'CPANPLUS::Module::Author::Fake'=> undef,
8339 'CPANPLUS::Module::Checksums'=> undef,
8340 'CPANPLUS::Module::Fake'=> undef,
8341 'CPANPLUS::Module::Signature'=> undef,
8342 'CPANPLUS::Selfupdate' => undef,
8343 'CPANPLUS::Shell' => undef,
8344 'CPANPLUS::Shell::Classic'=> '0.0562',
8345 'CPANPLUS::Shell::Default'=> '0.84',
8346 'CPANPLUS::Shell::Default::Plugins::CustomSource'=> undef,
8347 'CPANPLUS::Shell::Default::Plugins::Remote'=> undef,
8348 'CPANPLUS::Shell::Default::Plugins::Source'=> undef,
8349 'CPANPLUS::inc' => undef,
8350 'Carp' => '1.08',
8351 'Carp::Heavy' => '1.08',
8352 'Class::ISA' => '0.33',
8353 'Class::Struct' => '0.63',
8354 'Compress::Raw::Zlib' => '2.008',
8355 'Compress::Zlib' => '2.008',
8356 'Config' => undef,
8357 'Config::Extensions' => '0.01',
8358 'Cwd' => '3.2501',
8359 'DB' => '1.01',
8360 'DBM_Filter' => '0.02',
8361 'DBM_Filter::compress' => '0.01',
8362 'DBM_Filter::encode' => '0.01',
8363 'DBM_Filter::int32' => '0.01',
8364 'DBM_Filter::null' => '0.01',
8365 'DBM_Filter::utf8' => '0.01',
8366 'DB_File' => '1.816_1',
8367 'DCLsym' => '1.03',
8368 'Data::Dumper' => '2.121_14',
8369 'Devel::DProf' => '20050603.00',
8370 'Devel::InnerPackage' => '0.3',
8371 'Devel::PPPort' => '3.13',
8372 'Devel::Peek' => '1.03',
8373 'Devel::SelfStubber' => '1.03',
8374 'Digest' => '1.15',
8375 'Digest::MD5' => '2.36_01',
8376 'Digest::SHA' => '5.45',
8377 'Digest::base' => '1.00',
8378 'Digest::file' => '1.00',
8379 'DirHandle' => '1.01',
8380 'Dumpvalue' => '1.12',
8381 'DynaLoader' => '1.08',
8382 'Encode' => '2.23',
8383 'Encode::Alias' => '2.07',
8384 'Encode::Byte' => '2.03',
8385 'Encode::CJKConstants' => '2.02',
8386 'Encode::CN' => '2.02',
8387 'Encode::CN::HZ' => '2.04',
8388 'Encode::Config' => '2.04',
8389 'Encode::EBCDIC' => '2.02',
8390 'Encode::Encoder' => '2.01',
8391 'Encode::Encoding' => '2.05',
8392 'Encode::GSM0338' => '2.00',
8393 'Encode::Guess' => '2.02',
8394 'Encode::JP' => '2.03',
8395 'Encode::JP::H2Z' => '2.02',
8396 'Encode::JP::JIS7' => '2.03',
8397 'Encode::KR' => '2.02',
8398 'Encode::KR::2022_KR' => '2.02',
8399 'Encode::MIME::Header' => '2.05',
8400 'Encode::MIME::Header::ISO_2022_JP'=> '1.03',
8401 'Encode::MIME::Name' => '1.01',
8402 'Encode::Symbol' => '2.02',
8403 'Encode::TW' => '2.02',
8404 'Encode::Unicode' => '2.05',
8405 'Encode::Unicode::UTF7' => '2.04',
8406 'English' => '1.04',
8407 'Env' => '1.00',
8408 'Errno' => '1.10',
8409 'Exporter' => '5.62',
8410 'Exporter::Heavy' => '5.62',
8411 'ExtUtils::CBuilder' => '0.21',
8412 'ExtUtils::CBuilder::Base'=> '0.21',
8413 'ExtUtils::CBuilder::Platform::Unix'=> '0.21',
8414 'ExtUtils::CBuilder::Platform::VMS'=> '0.22',
8415 'ExtUtils::CBuilder::Platform::Windows'=> '0.21',
8416 'ExtUtils::CBuilder::Platform::aix'=> '0.21',
8417 'ExtUtils::CBuilder::Platform::cygwin'=> '0.21',
8418 'ExtUtils::CBuilder::Platform::darwin'=> '0.21',
8419 'ExtUtils::CBuilder::Platform::dec_osf'=> '0.21',
8420 'ExtUtils::CBuilder::Platform::os2'=> '0.21',
8421 'ExtUtils::Command' => '1.13',
8422 'ExtUtils::Command::MM' => '6.42',
8423 'ExtUtils::Constant' => '0.2',
8424 'ExtUtils::Constant::Base'=> '0.04',
8425 'ExtUtils::Constant::ProxySubs'=> '0.05',
8426 'ExtUtils::Constant::Utils'=> '0.01',
8427 'ExtUtils::Constant::XS'=> '0.02',
8428 'ExtUtils::Embed' => '1.27',
8429 'ExtUtils::Install' => '1.44',
8430 'ExtUtils::Installed' => '1.43',
8431 'ExtUtils::Liblist' => '6.42',
8432 'ExtUtils::Liblist::Kid'=> '6.42',
8433 'ExtUtils::MM' => '6.42',
8434 'ExtUtils::MM_AIX' => '6.42',
8435 'ExtUtils::MM_Any' => '6.42',
8436 'ExtUtils::MM_BeOS' => '6.42',
8437 'ExtUtils::MM_Cygwin' => '6.42',
8438 'ExtUtils::MM_DOS' => '6.42',
8439 'ExtUtils::MM_MacOS' => '6.42',
8440 'ExtUtils::MM_NW5' => '6.42',
8441 'ExtUtils::MM_OS2' => '6.42',
8442 'ExtUtils::MM_QNX' => '6.42',
8443 'ExtUtils::MM_UWIN' => '6.42',
8444 'ExtUtils::MM_Unix' => '6.42',
8445 'ExtUtils::MM_VMS' => '6.42',
8446 'ExtUtils::MM_VOS' => '6.42',
8447 'ExtUtils::MM_Win32' => '6.42',
8448 'ExtUtils::MM_Win95' => '6.42',
8449 'ExtUtils::MY' => '6.42',
8450 'ExtUtils::MakeMaker' => '6.42',
8451 'ExtUtils::MakeMaker::Config'=> '6.42',
8452 'ExtUtils::MakeMaker::bytes'=> '6.42',
8453 'ExtUtils::MakeMaker::vmsish'=> '6.42',
8454 'ExtUtils::Manifest' => '1.51_01',
8455 'ExtUtils::Miniperl' => undef,
8456 'ExtUtils::Mkbootstrap' => '6.42',
8457 'ExtUtils::Mksymlists' => '6.42',
8458 'ExtUtils::Packlist' => '1.43',
8459 'ExtUtils::ParseXS' => '2.18_02',
8460 'ExtUtils::testlib' => '6.42',
8461 'Fatal' => '1.05',
8462 'Fcntl' => '1.06',
8463 'File::Basename' => '2.76',
8464 'File::CheckTree' => '4.3',
8465 'File::Compare' => '1.1005',
8466 'File::Copy' => '2.11',
8467 'File::DosGlob' => '1.00',
8468 'File::Fetch' => '0.14',
8469 'File::Find' => '1.12',
8470 'File::Glob' => '1.06',
8471 'File::GlobMapper' => '0.000_02',
8472 'File::Path' => '2.04',
8473 'File::Spec' => '3.2501',
8474 'File::Spec::Cygwin' => '3.2501',
8475 'File::Spec::Epoc' => '3.2501',
8476 'File::Spec::Functions' => '3.2501',
8477 'File::Spec::Mac' => '3.2501',
8478 'File::Spec::OS2' => '3.2501',
8479 'File::Spec::Unix' => '3.2501',
8480 'File::Spec::VMS' => '3.2501',
8481 'File::Spec::Win32' => '3.2501',
8482 'File::Temp' => '0.18',
8483 'File::stat' => '1.00',
8484 'FileCache' => '1.07',
8485 'FileHandle' => '2.01',
8486 'VMS::Filespec' => '1.12',
8487 'Filter::Simple' => '0.82',
8488 'Filter::Util::Call' => '1.07',
8489 'FindBin' => '1.49',
8490 'GDBM_File' => '1.08',
8491 'Getopt::Long' => '2.37',
8492 'Getopt::Std' => '1.05',
8493 'Hash::Util' => '0.07',
8494 'Hash::Util::FieldHash' => '1.03',
8495 'I18N::Collate' => '1.00',
8496 'I18N::LangTags' => '0.35',
8497 'I18N::LangTags::Detect'=> '1.03',
8498 'I18N::LangTags::List' => '0.35',
8499 'I18N::Langinfo' => '0.02',
8500 'IO' => '1.23_01',
8501 'IO::Compress::Adapter::Deflate'=> '2.008',
8502 'IO::Compress::Adapter::Identity'=> '2.008',
8503 'IO::Compress::Base' => '2.008',
8504 'IO::Compress::Base::Common'=> '2.008',
8505 'IO::Compress::Deflate' => '2.008',
8506 'IO::Compress::Gzip' => '2.008',
8507 'IO::Compress::Gzip::Constants'=> '2.008',
8508 'IO::Compress::RawDeflate'=> '2.008',
8509 'IO::Compress::Zip' => '2.008',
8510 'IO::Compress::Zip::Constants'=> '2.008',
8511 'IO::Compress::Zlib::Constants'=> '2.008',
8512 'IO::Compress::Zlib::Extra'=> '2.008',
8513 'IO::Dir' => '1.06',
8514 'IO::File' => '1.14',
8515 'IO::Handle' => '1.27',
8516 'IO::Pipe' => '1.13',
8517 'IO::Poll' => '0.07',
8518 'IO::Seekable' => '1.10',
8519 'IO::Select' => '1.17',
8520 'IO::Socket' => '1.30_01',
8521 'IO::Socket::INET' => '1.31',
8522 'IO::Socket::UNIX' => '1.23',
8523 'IO::Uncompress::Adapter::Identity'=> '2.008',
8524 'IO::Uncompress::Adapter::Inflate'=> '2.008',
8525 'IO::Uncompress::AnyInflate'=> '2.008',
8526 'IO::Uncompress::AnyUncompress'=> '2.008',
8527 'IO::Uncompress::Base' => '2.008',
8528 'IO::Uncompress::Gunzip'=> '2.008',
8529 'IO::Uncompress::Inflate'=> '2.008',
8530 'IO::Uncompress::RawInflate'=> '2.008',
8531 'IO::Uncompress::Unzip' => '2.008',
8532 'IO::Zlib' => '1.07',
8533 'IPC::Cmd' => '0.40_1',
8534 'IPC::Msg' => '1.02',
8535 'IPC::Open2' => '1.02',
8536 'IPC::Open3' => '1.02',
8537 'IPC::Semaphore' => '1.02',
8538 'IPC::SysV' => '1.05',
8539 'List::Util' => '1.19',
8540 'Locale::Constants' => '2.07',
8541 'Locale::Country' => '2.07',
8542 'Locale::Currency' => '2.07',
8543 'Locale::Language' => '2.07',
8544 'Locale::Maketext' => '1.12',
8545 'Locale::Maketext::Guts'=> undef,
8546 'Locale::Maketext::GutsLoader'=> undef,
8547 'Locale::Maketext::Simple'=> '0.18',
8548 'Locale::Script' => '2.07',
8549 'Log::Message' => '0.01',
8550 'Log::Message::Config' => '0.01',
8551 'Log::Message::Handlers'=> undef,
8552 'Log::Message::Item' => undef,
8553 'Log::Message::Simple' => '0.04',
8554 'MIME::Base64' => '3.07_01',
8555 'MIME::QuotedPrint' => '3.07',
8556 'Math::BigFloat' => '1.59',
8557 'Math::BigFloat::Trace' => '0.01',
8558 'Math::BigInt' => '1.88',
8559 'Math::BigInt::Calc' => '0.52',
8560 'Math::BigInt::CalcEmu' => '0.05',
8561 'Math::BigInt::FastCalc'=> '0.16',
8562 'Math::BigInt::Trace' => '0.01',
8563 'Math::BigRat' => '0.21',
8564 'Math::Complex' => '1.37',
8565 'Math::Trig' => '1.04',
8566 'Memoize' => '1.01_02',
8567 'Memoize::AnyDBM_File' => '0.65',
8568 'Memoize::Expire' => '1.00',
8569 'Memoize::ExpireFile' => '1.01',
8570 'Memoize::ExpireTest' => '0.65',
8571 'Memoize::NDBM_File' => '0.65',
8572 'Memoize::SDBM_File' => '0.65',
8573 'Memoize::Storable' => '0.65',
8574 'Module::Build' => '0.2808_01',
8575 'Module::Build::Base' => '0.2808_01',
8576 'Module::Build::Compat' => '0.2808_01',
8577 'Module::Build::Config' => '0.2808_01',
8578 'Module::Build::ConfigData'=> undef,
8579 'Module::Build::Cookbook'=> undef,
8580 'Module::Build::Dumper' => undef,
8581 'Module::Build::ModuleInfo'=> '0.2808_01',
8582 'Module::Build::Notes' => '0.2808_01',
8583 'Module::Build::PPMMaker'=> '0.2808_01',
8584 'Module::Build::Platform::Amiga'=> '0.2808_01',
8585 'Module::Build::Platform::Default'=> '0.2808_01',
8586 'Module::Build::Platform::EBCDIC'=> '0.2808_01',
8587 'Module::Build::Platform::MPEiX'=> '0.2808_01',
8588 'Module::Build::Platform::MacOS'=> '0.2808_01',
8589 'Module::Build::Platform::RiscOS'=> '0.2808_01',
8590 'Module::Build::Platform::Unix'=> '0.2808_01',
8591 'Module::Build::Platform::VMS'=> '0.2808_01',
8592 'Module::Build::Platform::VOS'=> '0.2808_01',
8593 'Module::Build::Platform::Windows'=> '0.2808_01',
8594 'Module::Build::Platform::aix'=> '0.2808_01',
8595 'Module::Build::Platform::cygwin'=> '0.2808_01',
8596 'Module::Build::Platform::darwin'=> '0.2808_01',
8597 'Module::Build::Platform::os2'=> '0.2808_01',
8598 'Module::Build::PodParser'=> '0.2808_01',
8599 'Module::Build::Version'=> '0.7203',
8600 'Module::Build::YAML' => '0.50',
8601 'Module::CoreList' => '2.12',
8602 'Module::Load' => '0.12',
8603 'Module::Load::Conditional'=> '0.22',
8604 'Module::Loaded' => '0.01',
8605 'Module::Pluggable' => '3.6',
8606 'Module::Pluggable::Object'=> '3.6',
8607 'Moped::Msg' => '0.01',
8608 'NDBM_File' => '1.07',
8609 'NEXT' => '0.60_01',
8610 'Net::Cmd' => '2.29',
8611 'Net::Config' => '1.11',
8612 'Net::Domain' => '2.20',
8613 'Net::FTP' => '2.77',
8614 'Net::FTP::A' => '1.18',
8615 'Net::FTP::E' => '0.01',
8616 'Net::FTP::I' => '1.12',
8617 'Net::FTP::L' => '0.01',
8618 'Net::FTP::dataconn' => '0.11',
8619 'Net::NNTP' => '2.24',
8620 'Net::Netrc' => '2.12',
8621 'Net::POP3' => '2.29',
8622 'Net::Ping' => '2.33',
8623 'Net::SMTP' => '2.31',
8624 'Net::Time' => '2.10',
8625 'Net::hostent' => '1.01',
8626 'Net::netent' => '1.00',
8627 'Net::protoent' => '1.00',
8628 'Net::servent' => '1.01',
8629 'O' => '1.00',
8630 'ODBM_File' => '1.07',
8631 'Object::Accessor' => '0.32',
8632 'Opcode' => '1.11',
8633 'POSIX' => '1.13',
8634 'Package::Constants' => '0.01',
8635 'Params::Check' => '0.26',
8636 'PerlIO' => '1.04',
8637 'PerlIO::encoding' => '0.10',
8638 'PerlIO::scalar' => '0.05',
8639 'PerlIO::via' => '0.04',
8640 'PerlIO::via::QuotedPrint'=> '0.06',
8641 'Pod::Checker' => '1.43_01',
8642 'Pod::Escapes' => '1.04',
8643 'Pod::Find' => '1.34',
8644 'Pod::Functions' => '1.03',
8645 'Pod::Html' => '1.08',
8646 'Pod::InputObjects' => '1.3',
8647 'Pod::LaTeX' => '0.58',
8648 'Pod::Man' => '2.16',
8649 'Pod::ParseLink' => '1.06',
8650 'Pod::ParseUtils' => '1.35',
8651 'Pod::Parser' => '1.35',
8652 'Pod::Perldoc' => '3.14_02',
8653 'Pod::Perldoc::BaseTo' => undef,
8654 'Pod::Perldoc::GetOptsOO'=> undef,
8655 'Pod::Perldoc::ToChecker'=> undef,
8656 'Pod::Perldoc::ToMan' => undef,
8657 'Pod::Perldoc::ToNroff' => undef,
8658 'Pod::Perldoc::ToPod' => undef,
8659 'Pod::Perldoc::ToRtf' => undef,
8660 'Pod::Perldoc::ToText' => undef,
8661 'Pod::Perldoc::ToTk' => undef,
8662 'Pod::Perldoc::ToXml' => undef,
8663 'Pod::PlainText' => '2.02',
8664 'Pod::Plainer' => '0.01',
8665 'Pod::Select' => '1.35',
8666 'Pod::Simple' => '3.05',
8667 'Pod::Simple::BlackBox' => undef,
8668 'Pod::Simple::Checker' => '2.02',
8669 'Pod::Simple::Debug' => undef,
8670 'Pod::Simple::DumpAsText'=> '2.02',
8671 'Pod::Simple::DumpAsXML'=> '2.02',
8672 'Pod::Simple::HTML' => '3.03',
8673 'Pod::Simple::HTMLBatch'=> '3.02',
8674 'Pod::Simple::HTMLLegacy'=> '5.01',
8675 'Pod::Simple::LinkSection'=> undef,
8676 'Pod::Simple::Methody' => '2.02',
8677 'Pod::Simple::Progress' => '1.01',
8678 'Pod::Simple::PullParser'=> '2.02',
8679 'Pod::Simple::PullParserEndToken'=> undef,
8680 'Pod::Simple::PullParserStartToken'=> undef,
8681 'Pod::Simple::PullParserTextToken'=> undef,
8682 'Pod::Simple::PullParserToken'=> '2.02',
8683 'Pod::Simple::RTF' => '2.02',
8684 'Pod::Simple::Search' => '3.04',
8685 'Pod::Simple::SimpleTree'=> '2.02',
8686 'Pod::Simple::Text' => '2.02',
8687 'Pod::Simple::TextContent'=> '2.02',
8688 'Pod::Simple::TiedOutFH'=> undef,
8689 'Pod::Simple::Transcode'=> undef,
8690 'Pod::Simple::TranscodeDumb'=> '2.02',
8691 'Pod::Simple::TranscodeSmart'=> undef,
8692 'Pod::Simple::XMLOutStream'=> '2.02',
8693 'Pod::Text' => '3.08',
8694 'Pod::Text::Color' => '2.03',
8695 'Pod::Text::Overstrike' => '2',
8696 'Pod::Text::Termcap' => '2.03',
8697 'Pod::Usage' => '1.35',
8698 'SDBM_File' => '1.06',
8699 'Safe' => '2.12',
8700 'Scalar::Util' => '1.19',
8701 'Search::Dict' => '1.02',
8702 'SelectSaver' => '1.01',
8703 'SelfLoader' => '1.11',
8704 'Shell' => '0.72_01',
8705 'Socket' => '1.80',
8706 'Stdio' => '2.3',
8707 'Storable' => '2.18',
8708 'Switch' => '2.13',
8709 'Symbol' => '1.06',
8710 'Sys::Hostname' => '1.11',
8711 'Sys::Syslog' => '0.22',
8712 'Sys::Syslog::win32::Win32'=> undef,
8713 'Term::ANSIColor' => '1.12',
8714 'Term::Cap' => '1.12',
8715 'Term::Complete' => '1.402',
8716 'Term::ReadLine' => '1.03',
8717 'Term::UI' => '0.18',
8718 'Term::UI::History' => undef,
8719 'Test' => '1.25',
8720 'Test::Builder' => '0.72',
8721 'Test::Builder::Module' => '0.72',
8722 'Test::Builder::Tester' => '1.09',
8723 'Test::Builder::Tester::Color'=> undef,
8724 'Test::Harness' => '2.64',
8725 'Test::Harness::Assert' => '0.02',
8726 'Test::Harness::Iterator'=> '0.02',
8727 'Test::Harness::Point' => '0.01',
8728 'Test::Harness::Results'=> '0.01',
8729 'Test::Harness::Straps' => '0.26_01',
8730 'Test::Harness::Util' => '0.01',
8731 'Test::More' => '0.72',
8732 'Test::Simple' => '0.72',
8733 'Text::Abbrev' => '1.01',
8734 'Text::Balanced' => '2.0.0',
8735 'Text::ParseWords' => '3.26',
8736 'Text::Soundex' => '3.03',
8737 'Text::Tabs' => '2007.1117',
8738 'Text::Wrap' => '2006.1117',
8739 'Thread' => '3.02',
8740 'Thread::Queue' => '2.00',
8741 'Thread::Semaphore' => '2.01',
8742 'Tie::Array' => '1.03',
8743 'Tie::File' => '0.97_02',
8744 'Tie::Handle' => '4.1',
8745 'Tie::Hash' => '1.02',
8746 'Tie::Hash::NamedCapture'=> '0.06',
8747 'Tie::Memoize' => '1.1',
8748 'Tie::RefHash' => '1.37',
8749 'Tie::Scalar' => '1.00',
8750 'Tie::StdHandle' => undef,
8751 'Tie::SubstrHash' => '1.00',
8752 'Time::HiRes' => '1.9711',
8753 'Time::Local' => '1.18',
8754 'Time::Piece' => '1.12',
8755 'Time::Piece::Seconds' => undef,
8756 'Time::Seconds' => undef,
8757 'Time::gmtime' => '1.03',
8758 'Time::localtime' => '1.02',
8759 'Time::tm' => '1.00',
8760 'UNIVERSAL' => '1.04',
8761 'Unicode' => '5.0.0',
8762 'Unicode::Collate' => '0.52',
8763 'Unicode::Normalize' => '1.02',
8764 'Unicode::UCD' => '0.25',
8765 'User::grent' => '1.01',
8766 'User::pwent' => '1.00',
8767 'Win32' => '0.34',
8768 'Win32API::File' => '0.1001_01',
8769 'Win32API::File::ExtUtils::Myconst2perl'=> '1',
8770 'Win32CORE' => '0.02',
8771 'XS::APItest' => '0.12',
8772 'XS::Typemap' => '0.02',
8773 'XSLoader' => '0.08',
8774 'XSSymSet' => '1.1',
8775 'attributes' => '0.08',
8776 'attrs' => '1.02',
8777 'autouse' => '1.06',
8778 'base' => '2.13',
8779 'bigint' => '0.22',
8780 'bignum' => '0.22',
8781 'bigrat' => '0.22',
8782 'blib' => '1.03',
8783 'bytes' => '1.03',
8784 'charnames' => '1.06',
8785 'constant' => '1.13',
8786 'diagnostics' => '1.17',
8787 'encoding' => '2.06',
8788 'encoding::warnings' => '0.11',
8789 'feature' => '1.11',
8790 'fields' => '2.13',
8791 'filetest' => '1.02',
8792 'if' => '0.05',
8793 'integer' => '1.00',
8794 'less' => '0.02',
8795 'lib' => '0.5565',
8796 'locale' => '1.00',
8797 'mro' => '1.00',
8798 'open' => '1.06',
8799 'ops' => '1.01',
8800 'overload' => '1.06',
8801 're' => '0.08',
8802 'sigtrap' => '1.04',
8803 'sort' => '2.01',
8804 'strict' => '1.04',
8805 'subs' => '1.00',
8806 'threads' => '1.67',
8807 'threads::shared' => '1.14',
8808 'utf8' => '1.07',
8809 'vars' => '1.01',
8810 'version' => '0.74',
8811 'vmsish' => '1.02',
8812 'warnings' => '1.06',
8813 'warnings::register' => '1.01',
8816 5.008009 => {
8817 'AnyDBM_File' => '1.00',
8818 'Attribute::Handlers' => '0.78_03',
8819 'AutoLoader' => '5.67',
8820 'AutoSplit' => '1.06',
8821 'B' => '1.19',
8822 'B::Asmdata' => '1.02',
8823 'B::Assembler' => '0.08',
8824 'B::Bblock' => '1.02_01',
8825 'B::Bytecode' => '1.01_01',
8826 'B::C' => '1.05',
8827 'B::CC' => '1.00_01',
8828 'B::Concise' => '0.76',
8829 'B::Debug' => '1.05',
8830 'B::Deparse' => '0.87',
8831 'B::Disassembler' => '1.05',
8832 'B::Lint' => '1.11',
8833 'B::Lint::Debug' => undef,
8834 'B::Showlex' => '1.02',
8835 'B::Stackobj' => '1.00',
8836 'B::Stash' => '1.00',
8837 'B::Terse' => '1.05',
8838 'B::Xref' => '1.01',
8839 'Benchmark' => '1.1',
8840 'ByteLoader' => '0.06',
8841 'CGI' => '3.42',
8842 'CGI::Apache' => '1.00',
8843 'CGI::Carp' => '1.30_01',
8844 'CGI::Cookie' => '1.29',
8845 'CGI::Fast' => '1.07',
8846 'CGI::Pretty' => '1.08',
8847 'CGI::Push' => '1.04',
8848 'CGI::Switch' => '1.00',
8849 'CGI::Util' => '1.5_01',
8850 'CPAN' => '1.9301',
8851 'CPAN::Debug' => '5.5',
8852 'CPAN::DeferedCode' => '5.50',
8853 'CPAN::Distroprefs' => '6',
8854 'CPAN::FirstTime' => '5.5_01',
8855 'CPAN::HandleConfig' => '5.5',
8856 'CPAN::Kwalify' => '5.50',
8857 'CPAN::Nox' => '5.50',
8858 'CPAN::Queue' => '5.5',
8859 'CPAN::Tarzip' => '5.5',
8860 'CPAN::Version' => '5.5',
8861 'Carp' => '1.10',
8862 'Carp::Heavy' => '1.10',
8863 'Class::ISA' => '0.33',
8864 'Class::Struct' => '0.63',
8865 'Config' => undef,
8866 'Cwd' => '3.29',
8867 'DB' => '1.01',
8868 'DBM_Filter' => '0.02',
8869 'DBM_Filter::compress' => '0.02',
8870 'DBM_Filter::encode' => '0.02',
8871 'DBM_Filter::int32' => '0.02',
8872 'DBM_Filter::null' => '0.02',
8873 'DBM_Filter::utf8' => '0.02',
8874 'DB_File' => '1.817',
8875 'DCLsym' => '1.03',
8876 'Data::Dumper' => '2.121_17',
8877 'Devel::DProf' => '20080331.00',
8878 'Devel::InnerPackage' => '0.3',
8879 'Devel::PPPort' => '3.14',
8880 'Devel::Peek' => '1.04',
8881 'Devel::SelfStubber' => '1.03',
8882 'Digest' => '1.15',
8883 'Digest::MD5' => '2.37',
8884 'Digest::base' => '1.00',
8885 'Digest::file' => '1.00',
8886 'DirHandle' => '1.02',
8887 'Dumpvalue' => '1.12',
8888 'DynaLoader' => '1.09',
8889 'Encode' => '2.26',
8890 'Encode::Alias' => '2.10',
8891 'Encode::Byte' => '2.03',
8892 'Encode::CJKConstants' => '2.02',
8893 'Encode::CN' => '2.02',
8894 'Encode::CN::HZ' => '2.05',
8895 'Encode::Config' => '2.05',
8896 'Encode::EBCDIC' => '2.02',
8897 'Encode::Encoder' => '2.01',
8898 'Encode::Encoding' => '2.05',
8899 'Encode::GSM0338' => '2.01',
8900 'Encode::Guess' => '2.02',
8901 'Encode::JP' => '2.03',
8902 'Encode::JP::H2Z' => '2.02',
8903 'Encode::JP::JIS7' => '2.04',
8904 'Encode::KR' => '2.02',
8905 'Encode::KR::2022_KR' => '2.02',
8906 'Encode::MIME::Header' => '2.05',
8907 'Encode::MIME::Header::ISO_2022_JP'=> '1.03',
8908 'Encode::MIME::Name' => '1.01',
8909 'Encode::Symbol' => '2.02',
8910 'Encode::TW' => '2.02',
8911 'Encode::Unicode' => '2.05',
8912 'Encode::Unicode::UTF7' => '2.04',
8913 'English' => '1.03',
8914 'Env' => '1.00',
8915 'Errno' => '1.10',
8916 'Exporter' => '5.63',
8917 'Exporter::Heavy' => '5.63',
8918 'ExtUtils::Command' => '1.15',
8919 'ExtUtils::Command::MM' => '6.48',
8920 'ExtUtils::Constant' => '0.21',
8921 'ExtUtils::Constant::Base'=> '0.04',
8922 'ExtUtils::Constant::ProxySubs'=> '0.06',
8923 'ExtUtils::Constant::Utils'=> '0.02',
8924 'ExtUtils::Constant::XS'=> '0.02',
8925 'ExtUtils::Embed' => '1.28',
8926 'ExtUtils::Install' => '1.50_01',
8927 'ExtUtils::Installed' => '1.43',
8928 'ExtUtils::Liblist' => '6.48',
8929 'ExtUtils::Liblist::Kid'=> '6.48',
8930 'ExtUtils::MM' => '6.48',
8931 'ExtUtils::MM_AIX' => '6.48',
8932 'ExtUtils::MM_Any' => '6.48',
8933 'ExtUtils::MM_BeOS' => '6.48',
8934 'ExtUtils::MM_Cygwin' => '6.48',
8935 'ExtUtils::MM_DOS' => '6.48',
8936 'ExtUtils::MM_Darwin' => '6.48',
8937 'ExtUtils::MM_MacOS' => '6.48',
8938 'ExtUtils::MM_NW5' => '6.48',
8939 'ExtUtils::MM_OS2' => '6.48',
8940 'ExtUtils::MM_QNX' => '6.48',
8941 'ExtUtils::MM_UWIN' => '6.48',
8942 'ExtUtils::MM_Unix' => '6.48',
8943 'ExtUtils::MM_VMS' => '6.48',
8944 'ExtUtils::MM_VOS' => '6.48',
8945 'ExtUtils::MM_Win32' => '6.48',
8946 'ExtUtils::MM_Win95' => '6.48',
8947 'ExtUtils::MY' => '6.48',
8948 'ExtUtils::MakeMaker' => '6.48',
8949 'ExtUtils::MakeMaker::Config'=> '6.48',
8950 'ExtUtils::MakeMaker::bytes'=> '6.48',
8951 'ExtUtils::MakeMaker::vmsish'=> '6.48',
8952 'ExtUtils::Manifest' => '1.55',
8953 'ExtUtils::Miniperl' => undef,
8954 'ExtUtils::Mkbootstrap' => '6.48',
8955 'ExtUtils::Mksymlists' => '6.48',
8956 'ExtUtils::Packlist' => '1.43',
8957 'ExtUtils::ParseXS' => '2.19',
8958 'ExtUtils::testlib' => '6.48',
8959 'Fatal' => '1.06',
8960 'Fcntl' => '1.06',
8961 'File::Basename' => '2.77',
8962 'File::CheckTree' => '4.4',
8963 'File::Compare' => '1.1005',
8964 'File::Copy' => '2.13',
8965 'File::DosGlob' => '1.01',
8966 'File::Find' => '1.13',
8967 'File::Glob' => '1.06',
8968 'File::Path' => '2.07_02',
8969 'File::Spec' => '3.29',
8970 'File::Spec::Cygwin' => '3.29',
8971 'File::Spec::Epoc' => '3.29',
8972 'File::Spec::Functions' => '3.29',
8973 'File::Spec::Mac' => '3.29',
8974 'File::Spec::OS2' => '3.29',
8975 'File::Spec::Unix' => '3.29',
8976 'File::Spec::VMS' => '3.29',
8977 'File::Spec::Win32' => '3.29',
8978 'File::Temp' => '0.20',
8979 'File::stat' => '1.01',
8980 'FileCache' => '1.07',
8981 'FileHandle' => '2.01',
8982 'VMS::Filespec' => '1.11',
8983 'Filter::Simple' => '0.83',
8984 'Filter::Util::Call' => '1.07',
8985 'FindBin' => '1.49',
8986 'GDBM_File' => '1.09',
8987 'Getopt::Long' => '2.37',
8988 'Getopt::Std' => '1.06',
8989 'Hash::Util' => '0.06',
8990 'I18N::Collate' => '1.00',
8991 'I18N::LangTags' => '0.35',
8992 'I18N::LangTags::Detect'=> '1.03',
8993 'I18N::LangTags::List' => '0.35',
8994 'I18N::Langinfo' => '0.02',
8995 'IO' => '1.23',
8996 'IO::Dir' => '1.06',
8997 'IO::File' => '1.14',
8998 'IO::Handle' => '1.27',
8999 'IO::Pipe' => '1.13',
9000 'IO::Poll' => '0.07',
9001 'IO::Seekable' => '1.10',
9002 'IO::Select' => '1.17',
9003 'IO::Socket' => '1.30',
9004 'IO::Socket::INET' => '1.31',
9005 'IO::Socket::UNIX' => '1.23',
9006 'IPC::Msg' => '2.00',
9007 'IPC::Open2' => '1.03',
9008 'IPC::Open3' => '1.03',
9009 'IPC::Semaphore' => '2.00',
9010 'IPC::SharedMem' => '2.00',
9011 'IPC::SysV' => '2.00',
9012 'IPC::lib::IPC::Msg' => '2.00',
9013 'IPC::lib::IPC::Semaphore'=> '2.00',
9014 'IPC::lib::IPC::SharedMem'=> '2.00',
9015 'List::Util' => '1.19',
9016 'Locale::Constants' => '2.07',
9017 'Locale::Country' => '2.07',
9018 'Locale::Currency' => '2.07',
9019 'Locale::Language' => '2.07',
9020 'Locale::Maketext' => '1.13',
9021 'Locale::Maketext::Guts'=> '1.13',
9022 'Locale::Maketext::GutsLoader'=> '1.13',
9023 'Locale::Script' => '2.07',
9024 'MIME::Base64' => '3.07',
9025 'MIME::QuotedPrint' => '3.07',
9026 'Math::BigFloat' => '1.60',
9027 'Math::BigFloat::Trace' => '0.01',
9028 'Math::BigInt' => '1.89',
9029 'Math::BigInt::Calc' => '0.52',
9030 'Math::BigInt::CalcEmu' => '0.05',
9031 'Math::BigInt::Trace' => '0.01',
9032 'Math::BigRat' => '0.22',
9033 'Math::Complex' => '1.54',
9034 'Math::Trig' => '1.18',
9035 'Memoize' => '1.01',
9036 'Memoize::AnyDBM_File' => '0.65',
9037 'Memoize::Expire' => '1.00',
9038 'Memoize::ExpireFile' => '1.01',
9039 'Memoize::ExpireTest' => '0.65',
9040 'Memoize::NDBM_File' => '0.65',
9041 'Memoize::SDBM_File' => '0.65',
9042 'Memoize::Storable' => '0.65',
9043 'Module::CoreList' => '2.17',
9044 'Module::Pluggable' => '3.8',
9045 'Module::Pluggable::Object'=> '3.6',
9046 'Module::Pluggable::lib::Devel::InnerPackage'=> '0.3',
9047 'NDBM_File' => '1.07',
9048 'NEXT' => '0.61',
9049 'Net::Cmd' => '2.29',
9050 'Net::Config' => '1.11',
9051 'Net::Domain' => '2.20',
9052 'Net::FTP' => '2.77',
9053 'Net::FTP::A' => '1.18',
9054 'Net::FTP::E' => '0.01',
9055 'Net::FTP::I' => '1.12',
9056 'Net::FTP::L' => '0.01',
9057 'Net::FTP::dataconn' => '0.11',
9058 'Net::NNTP' => '2.24',
9059 'Net::Netrc' => '2.12',
9060 'Net::POP3' => '2.29',
9061 'Net::Ping' => '2.35',
9062 'Net::SMTP' => '2.31',
9063 'Net::Time' => '2.10',
9064 'Net::hostent' => '1.01',
9065 'Net::netent' => '1.00',
9066 'Net::protoent' => '1.00',
9067 'Net::servent' => '1.01',
9068 'O' => '1.01',
9069 'ODBM_File' => '1.07',
9070 'Opcode' => '1.0601',
9071 'POSIX' => '1.15',
9072 'PerlIO' => '1.05',
9073 'PerlIO::encoding' => '0.11',
9074 'PerlIO::scalar' => '0.06',
9075 'PerlIO::via' => '0.05',
9076 'PerlIO::via::QuotedPrint'=> '0.06',
9077 'Pod::Checker' => '1.43',
9078 'Pod::Find' => '1.34',
9079 'Pod::Functions' => '1.03',
9080 'Pod::Html' => '1.09',
9081 'Pod::InputObjects' => '1.3',
9082 'Pod::LaTeX' => '0.58',
9083 'Pod::Man' => '1.37',
9084 'Pod::ParseLink' => '1.06',
9085 'Pod::ParseUtils' => '1.35',
9086 'Pod::Parser' => '1.35',
9087 'Pod::Perldoc' => '3.14',
9088 'Pod::Perldoc::BaseTo' => undef,
9089 'Pod::Perldoc::GetOptsOO'=> undef,
9090 'Pod::Perldoc::ToChecker'=> undef,
9091 'Pod::Perldoc::ToMan' => undef,
9092 'Pod::Perldoc::ToNroff' => undef,
9093 'Pod::Perldoc::ToPod' => undef,
9094 'Pod::Perldoc::ToRtf' => undef,
9095 'Pod::Perldoc::ToText' => undef,
9096 'Pod::Perldoc::ToTk' => undef,
9097 'Pod::Perldoc::ToXml' => undef,
9098 'Pod::PlainText' => '2.02',
9099 'Pod::Plainer' => '0.01',
9100 'Pod::Select' => '1.35',
9101 'Pod::Text' => '2.21',
9102 'Pod::Text::Color' => '1.04',
9103 'Pod::Text::Overstrike' => '1.1',
9104 'Pod::Text::Termcap' => '1.11',
9105 'Pod::Usage' => '1.35',
9106 'SDBM_File' => '1.06',
9107 'Safe' => '2.16',
9108 'Scalar::Util' => '1.19',
9109 'Search::Dict' => '1.02',
9110 'SelectSaver' => '1.01',
9111 'SelfLoader' => '1.17',
9112 'Shell' => '0.72',
9113 'Socket' => '1.81',
9114 'Stdio' => '2.4',
9115 'Storable' => '2.19',
9116 'Switch' => '2.13',
9117 'Symbol' => '1.06',
9118 'Sys::Hostname' => '1.11',
9119 'Sys::Syslog' => '0.27',
9120 'Sys::Syslog::win32::Win32'=> undef,
9121 'Term::ANSIColor' => '1.12',
9122 'Term::Cap' => '1.12',
9123 'Term::Complete' => '1.402',
9124 'Term::ReadLine' => '1.03',
9125 'Test' => '1.25',
9126 'Test::Builder' => '0.80',
9127 'Test::Builder::Module' => '0.80',
9128 'Test::Builder::Tester' => '1.13',
9129 'Test::Builder::Tester::Color'=> undef,
9130 'Test::Harness' => '2.64',
9131 'Test::Harness::Assert' => '0.02',
9132 'Test::Harness::Iterator'=> '0.02',
9133 'Test::Harness::Point' => '0.01',
9134 'Test::Harness::Results'=> '0.01_01',
9135 'Test::Harness::Straps' => '0.26_01',
9136 'Test::Harness::Util' => '0.01',
9137 'Test::More' => '0.80',
9138 'Test::Simple' => '0.80',
9139 'Text::Abbrev' => '1.01',
9140 'Text::Balanced' => '1.98',
9141 'Text::ParseWords' => '3.27',
9142 'Text::Soundex' => '3.03',
9143 'Text::Tabs' => '2007.1117',
9144 'Text::Wrap' => '2006.1117',
9145 'Thread' => '2.01',
9146 'Thread::Queue' => '2.11',
9147 'Thread::Semaphore' => '2.09',
9148 'Thread::Signal' => '1.00',
9149 'Thread::Specific' => '1.00',
9150 'Tie::Array' => '1.03',
9151 'Tie::File' => '0.97',
9152 'Tie::Handle' => '4.2',
9153 'Tie::Hash' => '1.03',
9154 'Tie::Memoize' => '1.1',
9155 'Tie::RefHash' => '1.38',
9156 'Tie::Scalar' => '1.01',
9157 'Tie::StdHandle' => '4.2',
9158 'Tie::SubstrHash' => '1.00',
9159 'Time::HiRes' => '1.9715',
9160 'Time::Local' => '1.1901',
9161 'Time::gmtime' => '1.03',
9162 'Time::localtime' => '1.02',
9163 'Time::tm' => '1.00',
9164 'UNIVERSAL' => '1.01',
9165 'Unicode' => '5.1.0',
9166 'Unicode::Collate' => '0.52',
9167 'Unicode::Normalize' => '1.02',
9168 'Unicode::UCD' => '0.25',
9169 'User::grent' => '1.01',
9170 'User::pwent' => '1.00',
9171 'Win32' => '0.38',
9172 'Win32API::File' => '0.1001_01',
9173 'Win32API::File::ExtUtils::Myconst2perl'=> '1',
9174 'Win32CORE' => '0.02',
9175 'XS::APItest' => '0.15',
9176 'XS::Typemap' => '0.03',
9177 'XSLoader' => '0.10',
9178 'XSSymSet' => '1.1',
9179 'attributes' => '0.09',
9180 'attrs' => '1.02',
9181 'autouse' => '1.06',
9182 'base' => '2.13',
9183 'bigint' => '0.23',
9184 'bignum' => '0.23',
9185 'bigrat' => '0.23',
9186 'blib' => '1.04',
9187 'bytes' => '1.02',
9188 'charnames' => '1.06',
9189 'constant' => '1.17',
9190 'diagnostics' => '1.16',
9191 'encoding' => '2.6_01',
9192 'fields' => '2.12',
9193 'filetest' => '1.02',
9194 'if' => '0.05',
9195 'integer' => '1.00',
9196 'less' => '0.01',
9197 'lib' => '0.61',
9198 'locale' => '1.00',
9199 'open' => '1.06',
9200 'ops' => '1.02',
9201 'overload' => '1.06',
9202 're' => '0.0601',
9203 'sigtrap' => '1.04',
9204 'sort' => '1.02',
9205 'strict' => '1.03',
9206 'subs' => '1.00',
9207 'threads' => '1.71',
9208 'threads::shared' => '1.27',
9209 'utf8' => '1.07',
9210 'vars' => '1.01',
9211 'vmsish' => '1.02',
9212 'warnings' => '1.05_01',
9213 'warnings::register' => '1.01',
9216 5.010001 => {
9217 'AnyDBM_File' => '1.00',
9218 'App::Prove' => '3.17',
9219 'App::Prove::State' => '3.17',
9220 'App::Prove::State::Result'=> '3.17',
9221 'App::Prove::State::Result::Test'=> '3.17',
9222 'Archive::Extract' => '0.34',
9223 'Archive::Tar' => '1.52',
9224 'Archive::Tar::Constant'=> '0.02',
9225 'Archive::Tar::File' => '0.02',
9226 'Attribute::Handlers' => '0.85',
9227 'AutoLoader' => '5.68',
9228 'AutoSplit' => '1.06',
9229 'B' => '1.22',
9230 'B::Concise' => '0.76',
9231 'B::Debug' => '1.11',
9232 'B::Deparse' => '0.89',
9233 'B::Lint' => '1.11',
9234 'B::Lint::Debug' => undef,
9235 'B::Showlex' => '1.02',
9236 'B::Terse' => '1.05',
9237 'B::Xref' => '1.02',
9238 'Benchmark' => '1.11',
9239 'CGI' => '3.43',
9240 'CGI::Apache' => '1.00',
9241 'CGI::Carp' => '1.30_01',
9242 'CGI::Cookie' => '1.29',
9243 'CGI::Fast' => '1.07',
9244 'CGI::Pretty' => '1.08',
9245 'CGI::Push' => '1.04',
9246 'CGI::Switch' => '1.00',
9247 'CGI::Util' => '1.5_01',
9248 'CPAN' => '1.9402',
9249 'CPAN::Author' => '5.5',
9250 'CPAN::Bundle' => '5.5',
9251 'CPAN::CacheMgr' => '5.5',
9252 'CPAN::Complete' => '5.5',
9253 'CPAN::Debug' => '5.5',
9254 'CPAN::DeferredCode' => '5.50',
9255 'CPAN::Distribution' => '1.93',
9256 'CPAN::Distroprefs' => '6',
9257 'CPAN::Distrostatus' => '5.5',
9258 'CPAN::Exception::RecursiveDependency'=> '5.5',
9259 'CPAN::Exception::blocked_urllist'=> '1.0',
9260 'CPAN::Exception::yaml_not_installed'=> '5.5',
9261 'CPAN::FTP' => '5.5001',
9262 'CPAN::FTP::netrc' => '1.00',
9263 'CPAN::FirstTime' => '5.53',
9264 'CPAN::HandleConfig' => '5.5',
9265 'CPAN::Index' => '1.93',
9266 'CPAN::InfoObj' => '5.5',
9267 'CPAN::Kwalify' => '5.50',
9268 'CPAN::LWP::UserAgent' => '1.00',
9269 'CPAN::Module' => '5.5',
9270 'CPAN::Nox' => '5.50',
9271 'CPAN::Prompt' => '5.5',
9272 'CPAN::Queue' => '5.5',
9273 'CPAN::Shell' => '5.5',
9274 'CPAN::Tarzip' => '5.501',
9275 'CPAN::URL' => '5.5',
9276 'CPAN::Version' => '5.5',
9277 'CPANPLUS' => '0.88',
9278 'CPANPLUS::Backend' => undef,
9279 'CPANPLUS::Backend::RV' => undef,
9280 'CPANPLUS::Config' => undef,
9281 'CPANPLUS::Configure' => undef,
9282 'CPANPLUS::Configure::Setup'=> undef,
9283 'CPANPLUS::Dist' => undef,
9284 'CPANPLUS::Dist::Autobundle'=> undef,
9285 'CPANPLUS::Dist::Base' => undef,
9286 'CPANPLUS::Dist::Build' => '0.36',
9287 'CPANPLUS::Dist::Build::Constants'=> '0.36',
9288 'CPANPLUS::Dist::MM' => undef,
9289 'CPANPLUS::Dist::Sample'=> undef,
9290 'CPANPLUS::Error' => undef,
9291 'CPANPLUS::Internals' => '0.88',
9292 'CPANPLUS::Internals::Constants'=> undef,
9293 'CPANPLUS::Internals::Constants::Report'=> undef,
9294 'CPANPLUS::Internals::Extract'=> undef,
9295 'CPANPLUS::Internals::Fetch'=> undef,
9296 'CPANPLUS::Internals::Report'=> undef,
9297 'CPANPLUS::Internals::Search'=> undef,
9298 'CPANPLUS::Internals::Source'=> undef,
9299 'CPANPLUS::Internals::Source::Memory'=> undef,
9300 'CPANPLUS::Internals::Source::SQLite'=> undef,
9301 'CPANPLUS::Internals::Source::SQLite::Tie'=> undef,
9302 'CPANPLUS::Internals::Utils'=> undef,
9303 'CPANPLUS::Internals::Utils::Autoflush'=> undef,
9304 'CPANPLUS::Module' => undef,
9305 'CPANPLUS::Module::Author'=> undef,
9306 'CPANPLUS::Module::Author::Fake'=> undef,
9307 'CPANPLUS::Module::Checksums'=> undef,
9308 'CPANPLUS::Module::Fake'=> undef,
9309 'CPANPLUS::Module::Signature'=> undef,
9310 'CPANPLUS::Selfupdate' => undef,
9311 'CPANPLUS::Shell' => undef,
9312 'CPANPLUS::Shell::Classic'=> '0.0562',
9313 'CPANPLUS::Shell::Default'=> '0.88',
9314 'CPANPLUS::Shell::Default::Plugins::CustomSource'=> undef,
9315 'CPANPLUS::Shell::Default::Plugins::Remote'=> undef,
9316 'CPANPLUS::Shell::Default::Plugins::Source'=> undef,
9317 'Carp' => '1.11',
9318 'Carp::Heavy' => '1.11',
9319 'Class::ISA' => '0.33',
9320 'Class::Struct' => '0.63',
9321 'Compress::Raw::Bzip2' => '2.020',
9322 'Compress::Raw::Zlib' => '2.020',
9323 'Compress::Zlib' => '2.020',
9324 'Config' => undef,
9325 'Config::Extensions' => '0.01',
9326 'Cwd' => '3.30',
9327 'DB' => '1.02',
9328 'DBM_Filter' => '0.02',
9329 'DBM_Filter::compress' => '0.02',
9330 'DBM_Filter::encode' => '0.02',
9331 'DBM_Filter::int32' => '0.02',
9332 'DBM_Filter::null' => '0.02',
9333 'DBM_Filter::utf8' => '0.02',
9334 'DB_File' => '1.820',
9335 'DCLsym' => '1.03',
9336 'Data::Dumper' => '2.124',
9337 'Devel::DProf' => '20080331.00',
9338 'Devel::InnerPackage' => '0.3',
9339 'Devel::PPPort' => '3.19',
9340 'Devel::Peek' => '1.04',
9341 'Devel::SelfStubber' => '1.03',
9342 'Digest' => '1.16',
9343 'Digest::MD5' => '2.39',
9344 'Digest::SHA' => '5.47',
9345 'Digest::base' => '1.16',
9346 'Digest::file' => '1.16',
9347 'DirHandle' => '1.03',
9348 'Dumpvalue' => '1.13',
9349 'DynaLoader' => '1.10',
9350 'Encode' => '2.35',
9351 'Encode::Alias' => '2.12',
9352 'Encode::Byte' => '2.03',
9353 'Encode::CJKConstants' => '2.02',
9354 'Encode::CN' => '2.02',
9355 'Encode::CN::HZ' => '2.05',
9356 'Encode::Config' => '2.05',
9357 'Encode::EBCDIC' => '2.02',
9358 'Encode::Encoder' => '2.01',
9359 'Encode::Encoding' => '2.05',
9360 'Encode::GSM0338' => '2.01',
9361 'Encode::Guess' => '2.03',
9362 'Encode::JP' => '2.03',
9363 'Encode::JP::H2Z' => '2.02',
9364 'Encode::JP::JIS7' => '2.04',
9365 'Encode::KR' => '2.02',
9366 'Encode::KR::2022_KR' => '2.02',
9367 'Encode::MIME::Header' => '2.11',
9368 'Encode::MIME::Header::ISO_2022_JP'=> '1.03',
9369 'Encode::MIME::Name' => '1.01',
9370 'Encode::Symbol' => '2.02',
9371 'Encode::TW' => '2.02',
9372 'Encode::Unicode' => '2.06',
9373 'Encode::Unicode::UTF7' => '2.04',
9374 'English' => '1.04',
9375 'Env' => '1.00',
9376 'Errno' => '1.11',
9377 'Exporter' => '5.63',
9378 'Exporter::Heavy' => '5.63',
9379 'ExtUtils::CBuilder' => '0.2602',
9380 'ExtUtils::CBuilder::Base'=> '0.2602',
9381 'ExtUtils::CBuilder::Platform::Unix'=> '0.2602',
9382 'ExtUtils::CBuilder::Platform::VMS'=> '0.2602',
9383 'ExtUtils::CBuilder::Platform::Windows'=> '0.2602',
9384 'ExtUtils::CBuilder::Platform::aix'=> '0.2602',
9385 'ExtUtils::CBuilder::Platform::cygwin'=> '0.2602',
9386 'ExtUtils::CBuilder::Platform::darwin'=> '0.2602',
9387 'ExtUtils::CBuilder::Platform::dec_osf'=> '0.2602',
9388 'ExtUtils::CBuilder::Platform::os2'=> '0.2602',
9389 'ExtUtils::Command' => '1.16',
9390 'ExtUtils::Command::MM' => '6.55_02',
9391 'ExtUtils::Constant' => '0.22',
9392 'ExtUtils::Constant::Base'=> '0.04',
9393 'ExtUtils::Constant::ProxySubs'=> '0.06',
9394 'ExtUtils::Constant::Utils'=> '0.02',
9395 'ExtUtils::Constant::XS'=> '0.03',
9396 'ExtUtils::Embed' => '1.28',
9397 'ExtUtils::Install' => '1.54',
9398 'ExtUtils::Installed' => '1.999_001',
9399 'ExtUtils::Liblist' => '6.55_02',
9400 'ExtUtils::Liblist::Kid'=> '6.5502',
9401 'ExtUtils::MM' => '6.55_02',
9402 'ExtUtils::MM_AIX' => '6.55_02',
9403 'ExtUtils::MM_Any' => '6.55_02',
9404 'ExtUtils::MM_BeOS' => '6.55_02',
9405 'ExtUtils::MM_Cygwin' => '6.55_02',
9406 'ExtUtils::MM_DOS' => '6.5502',
9407 'ExtUtils::MM_Darwin' => '6.55_02',
9408 'ExtUtils::MM_MacOS' => '6.5502',
9409 'ExtUtils::MM_NW5' => '6.55_02',
9410 'ExtUtils::MM_OS2' => '6.55_02',
9411 'ExtUtils::MM_QNX' => '6.55_02',
9412 'ExtUtils::MM_UWIN' => '6.5502',
9413 'ExtUtils::MM_Unix' => '6.55_02',
9414 'ExtUtils::MM_VMS' => '6.55_02',
9415 'ExtUtils::MM_VOS' => '6.55_02',
9416 'ExtUtils::MM_Win32' => '6.55_02',
9417 'ExtUtils::MM_Win95' => '6.55_02',
9418 'ExtUtils::MY' => '6.5502',
9419 'ExtUtils::MakeMaker' => '6.55_02',
9420 'ExtUtils::MakeMaker::Config'=> '6.55_02',
9421 'ExtUtils::Manifest' => '1.56',
9422 'ExtUtils::Miniperl' => undef,
9423 'ExtUtils::Mkbootstrap' => '6.55_02',
9424 'ExtUtils::Mksymlists' => '6.55_02',
9425 'ExtUtils::Packlist' => '1.43',
9426 'ExtUtils::ParseXS' => '2.2002',
9427 'ExtUtils::XSSymSet' => '1.1',
9428 'ExtUtils::testlib' => '6.5502',
9429 'Fatal' => '2.06_01',
9430 'Fcntl' => '1.06',
9431 'File::Basename' => '2.77',
9432 'File::CheckTree' => '4.4',
9433 'File::Compare' => '1.1006',
9434 'File::Copy' => '2.14',
9435 'File::DosGlob' => '1.01',
9436 'File::Fetch' => '0.20',
9437 'File::Find' => '1.14',
9438 'File::Glob' => '1.06',
9439 'File::GlobMapper' => '1.000',
9440 'File::Path' => '2.07_03',
9441 'File::Spec' => '3.30',
9442 'File::Spec::Cygwin' => '3.30',
9443 'File::Spec::Epoc' => '3.30',
9444 'File::Spec::Functions' => '3.30',
9445 'File::Spec::Mac' => '3.30',
9446 'File::Spec::OS2' => '3.30',
9447 'File::Spec::Unix' => '3.30',
9448 'File::Spec::VMS' => '3.30',
9449 'File::Spec::Win32' => '3.30',
9450 'File::Temp' => '0.22',
9451 'File::stat' => '1.01',
9452 'FileCache' => '1.08',
9453 'FileHandle' => '2.02',
9454 'VMS::Filespec' => '1.12',
9455 'Filter::Simple' => '0.84',
9456 'Filter::Util::Call' => '1.08',
9457 'FindBin' => '1.50',
9458 'GDBM_File' => '1.09',
9459 'Getopt::Long' => '2.38',
9460 'Getopt::Std' => '1.06',
9461 'Hash::Util' => '0.07',
9462 'Hash::Util::FieldHash' => '1.04',
9463 'I18N::Collate' => '1.01',
9464 'I18N::LangTags' => '0.35',
9465 'I18N::LangTags::Detect'=> '1.03',
9466 'I18N::LangTags::List' => '0.35',
9467 'I18N::Langinfo' => '0.02',
9468 'IO' => '1.25',
9469 'IO::Compress::Adapter::Bzip2'=> '2.020',
9470 'IO::Compress::Adapter::Deflate'=> '2.020',
9471 'IO::Compress::Adapter::Identity'=> '2.020',
9472 'IO::Compress::Base' => '2.020',
9473 'IO::Compress::Base::Common'=> '2.020',
9474 'IO::Compress::Bzip2' => '2.020',
9475 'IO::Compress::Deflate' => '2.020',
9476 'IO::Compress::Gzip' => '2.020',
9477 'IO::Compress::Gzip::Constants'=> '2.020',
9478 'IO::Compress::RawDeflate'=> '2.020',
9479 'IO::Compress::Zip' => '2.020',
9480 'IO::Compress::Zip::Constants'=> '2.020',
9481 'IO::Compress::Zlib::Constants'=> '2.020',
9482 'IO::Compress::Zlib::Extra'=> '2.020',
9483 'IO::Dir' => '1.07',
9484 'IO::File' => '1.14',
9485 'IO::Handle' => '1.28',
9486 'IO::Pipe' => '1.13',
9487 'IO::Poll' => '0.07',
9488 'IO::Seekable' => '1.10',
9489 'IO::Select' => '1.17',
9490 'IO::Socket' => '1.31',
9491 'IO::Socket::INET' => '1.31',
9492 'IO::Socket::UNIX' => '1.23',
9493 'IO::Uncompress::Adapter::Bunzip2'=> '2.020',
9494 'IO::Uncompress::Adapter::Identity'=> '2.020',
9495 'IO::Uncompress::Adapter::Inflate'=> '2.020',
9496 'IO::Uncompress::AnyInflate'=> '2.020',
9497 'IO::Uncompress::AnyUncompress'=> '2.020',
9498 'IO::Uncompress::Base' => '2.020',
9499 'IO::Uncompress::Bunzip2'=> '2.020',
9500 'IO::Uncompress::Gunzip'=> '2.020',
9501 'IO::Uncompress::Inflate'=> '2.020',
9502 'IO::Uncompress::RawInflate'=> '2.020',
9503 'IO::Uncompress::Unzip' => '2.020',
9504 'IO::Zlib' => '1.09',
9505 'IPC::Cmd' => '0.46',
9506 'IPC::Msg' => '2.01',
9507 'IPC::Open2' => '1.03',
9508 'IPC::Open3' => '1.04',
9509 'IPC::Semaphore' => '2.01',
9510 'IPC::SharedMem' => '2.01',
9511 'IPC::SysV' => '2.01',
9512 'List::Util' => '1.21',
9513 'List::Util::PP' => '1.21',
9514 'List::Util::XS' => '1.21',
9515 'Locale::Constants' => '2.07',
9516 'Locale::Country' => '2.07',
9517 'Locale::Currency' => '2.07',
9518 'Locale::Language' => '2.07',
9519 'Locale::Maketext' => '1.13',
9520 'Locale::Maketext::Guts'=> '1.13',
9521 'Locale::Maketext::GutsLoader'=> '1.13',
9522 'Locale::Maketext::Simple'=> '0.18',
9523 'Locale::Script' => '2.07',
9524 'Log::Message' => '0.02',
9525 'Log::Message::Config' => '0.01',
9526 'Log::Message::Handlers'=> undef,
9527 'Log::Message::Item' => undef,
9528 'Log::Message::Simple' => '0.04',
9529 'MIME::Base64' => '3.08',
9530 'MIME::QuotedPrint' => '3.08',
9531 'Math::BigFloat' => '1.60',
9532 'Math::BigFloat::Trace' => '0.01',
9533 'Math::BigInt' => '1.89',
9534 'Math::BigInt::Calc' => '0.52',
9535 'Math::BigInt::CalcEmu' => '0.05',
9536 'Math::BigInt::FastCalc'=> '0.19',
9537 'Math::BigInt::Trace' => '0.01',
9538 'Math::BigRat' => '0.22',
9539 'Math::Complex' => '1.56',
9540 'Math::Trig' => '1.2',
9541 'Memoize' => '1.01_03',
9542 'Memoize::AnyDBM_File' => '0.65',
9543 'Memoize::Expire' => '1.00',
9544 'Memoize::ExpireFile' => '1.01',
9545 'Memoize::ExpireTest' => '0.65',
9546 'Memoize::NDBM_File' => '0.65',
9547 'Memoize::SDBM_File' => '0.65',
9548 'Memoize::Storable' => '0.65',
9549 'Module::Build' => '0.340201',
9550 'Module::Build::Base' => '0.340201',
9551 'Module::Build::Compat' => '0.340201',
9552 'Module::Build::Config' => '0.340201',
9553 'Module::Build::ConfigData'=> undef,
9554 'Module::Build::Cookbook'=> '0.340201',
9555 'Module::Build::Dumper' => '0.340201',
9556 'Module::Build::ModuleInfo'=> '0.340201',
9557 'Module::Build::Notes' => '0.340201',
9558 'Module::Build::PPMMaker'=> '0.340201',
9559 'Module::Build::Platform::Amiga'=> '0.340201',
9560 'Module::Build::Platform::Default'=> '0.340201',
9561 'Module::Build::Platform::EBCDIC'=> '0.340201',
9562 'Module::Build::Platform::MPEiX'=> '0.340201',
9563 'Module::Build::Platform::MacOS'=> '0.340201',
9564 'Module::Build::Platform::RiscOS'=> '0.340201',
9565 'Module::Build::Platform::Unix'=> '0.340201',
9566 'Module::Build::Platform::VMS'=> '0.340201',
9567 'Module::Build::Platform::VOS'=> '0.340201',
9568 'Module::Build::Platform::Windows'=> '0.340201',
9569 'Module::Build::Platform::aix'=> '0.340201',
9570 'Module::Build::Platform::cygwin'=> '0.340201',
9571 'Module::Build::Platform::darwin'=> '0.340201',
9572 'Module::Build::Platform::os2'=> '0.340201',
9573 'Module::Build::PodParser'=> '0.340201',
9574 'Module::Build::Version'=> '0.77',
9575 'Module::Build::YAML' => '0.50',
9576 'Module::CoreList' => '2.18',
9577 'Module::Load' => '0.16',
9578 'Module::Load::Conditional'=> '0.30',
9579 'Module::Loaded' => '0.02',
9580 'Module::Pluggable' => '3.9',
9581 'Module::Pluggable::Object'=> '3.9',
9582 'Moped::Msg' => '0.01',
9583 'NDBM_File' => '1.08',
9584 'NEXT' => '0.64',
9585 'Net::Cmd' => '2.29',
9586 'Net::Config' => '1.11',
9587 'Net::Domain' => '2.20',
9588 'Net::FTP' => '2.77',
9589 'Net::FTP::A' => '1.18',
9590 'Net::FTP::E' => '0.01',
9591 'Net::FTP::I' => '1.12',
9592 'Net::FTP::L' => '0.01',
9593 'Net::FTP::dataconn' => '0.11',
9594 'Net::NNTP' => '2.24',
9595 'Net::Netrc' => '2.12',
9596 'Net::POP3' => '2.29',
9597 'Net::Ping' => '2.36',
9598 'Net::SMTP' => '2.31',
9599 'Net::Time' => '2.10',
9600 'Net::hostent' => '1.01',
9601 'Net::netent' => '1.00',
9602 'Net::protoent' => '1.00',
9603 'Net::servent' => '1.01',
9604 'O' => '1.01',
9605 'ODBM_File' => '1.07',
9606 'Object::Accessor' => '0.34',
9607 'Opcode' => '1.11',
9608 'POSIX' => '1.17',
9609 'Package::Constants' => '0.02',
9610 'Params::Check' => '0.26',
9611 'Parse::CPAN::Meta' => '1.39',
9612 'PerlIO' => '1.06',
9613 'PerlIO::encoding' => '0.11',
9614 'PerlIO::scalar' => '0.07',
9615 'PerlIO::via' => '0.07',
9616 'PerlIO::via::QuotedPrint'=> '0.06',
9617 'Pod::Checker' => '1.45',
9618 'Pod::Escapes' => '1.04',
9619 'Pod::Find' => '1.35',
9620 'Pod::Functions' => '1.03',
9621 'Pod::Html' => '1.09',
9622 'Pod::InputObjects' => '1.31',
9623 'Pod::LaTeX' => '0.58',
9624 'Pod::Man' => '2.22',
9625 'Pod::ParseLink' => '1.09',
9626 'Pod::ParseUtils' => '1.36',
9627 'Pod::Parser' => '1.37',
9628 'Pod::Perldoc' => '3.14_04',
9629 'Pod::Perldoc::BaseTo' => undef,
9630 'Pod::Perldoc::GetOptsOO'=> undef,
9631 'Pod::Perldoc::ToChecker'=> undef,
9632 'Pod::Perldoc::ToMan' => undef,
9633 'Pod::Perldoc::ToNroff' => undef,
9634 'Pod::Perldoc::ToPod' => undef,
9635 'Pod::Perldoc::ToRtf' => undef,
9636 'Pod::Perldoc::ToText' => undef,
9637 'Pod::Perldoc::ToTk' => undef,
9638 'Pod::Perldoc::ToXml' => undef,
9639 'Pod::PlainText' => '2.04',
9640 'Pod::Plainer' => '0.01',
9641 'Pod::Select' => '1.36',
9642 'Pod::Simple' => '3.07',
9643 'Pod::Simple::BlackBox' => undef,
9644 'Pod::Simple::Checker' => '2.02',
9645 'Pod::Simple::Debug' => undef,
9646 'Pod::Simple::DumpAsText'=> '2.02',
9647 'Pod::Simple::DumpAsXML'=> '2.02',
9648 'Pod::Simple::HTML' => '3.03',
9649 'Pod::Simple::HTMLBatch'=> '3.02',
9650 'Pod::Simple::HTMLLegacy'=> '5.01',
9651 'Pod::Simple::LinkSection'=> undef,
9652 'Pod::Simple::Methody' => '2.02',
9653 'Pod::Simple::Progress' => '1.01',
9654 'Pod::Simple::PullParser'=> '2.02',
9655 'Pod::Simple::PullParserEndToken'=> undef,
9656 'Pod::Simple::PullParserStartToken'=> undef,
9657 'Pod::Simple::PullParserTextToken'=> undef,
9658 'Pod::Simple::PullParserToken'=> '2.02',
9659 'Pod::Simple::RTF' => '2.02',
9660 'Pod::Simple::Search' => '3.04',
9661 'Pod::Simple::SimpleTree'=> '2.02',
9662 'Pod::Simple::Text' => '2.02',
9663 'Pod::Simple::TextContent'=> '2.02',
9664 'Pod::Simple::TiedOutFH'=> undef,
9665 'Pod::Simple::Transcode'=> undef,
9666 'Pod::Simple::TranscodeDumb'=> '2.02',
9667 'Pod::Simple::TranscodeSmart'=> undef,
9668 'Pod::Simple::XHTML' => '3.04',
9669 'Pod::Simple::XMLOutStream'=> '2.02',
9670 'Pod::Text' => '3.13',
9671 'Pod::Text::Color' => '2.05',
9672 'Pod::Text::Overstrike' => '2.03',
9673 'Pod::Text::Termcap' => '2.05',
9674 'Pod::Usage' => '1.36',
9675 'SDBM_File' => '1.06',
9676 'Safe' => '2.18',
9677 'Scalar::Util' => '1.21',
9678 'Scalar::Util::PP' => '1.21',
9679 'Search::Dict' => '1.02',
9680 'SelectSaver' => '1.02',
9681 'SelfLoader' => '1.17',
9682 'Shell' => '0.72_01',
9683 'Socket' => '1.82',
9684 'Stdio' => '2.4',
9685 'Storable' => '2.20',
9686 'Switch' => '2.14',
9687 'Symbol' => '1.07',
9688 'Sys::Hostname' => '1.11',
9689 'Sys::Syslog' => '0.27',
9690 'Sys::Syslog::win32::Win32'=> undef,
9691 'TAP::Base' => '3.17',
9692 'TAP::Formatter::Base' => '3.17',
9693 'TAP::Formatter::Color' => '3.17',
9694 'TAP::Formatter::Console'=> '3.17',
9695 'TAP::Formatter::Console::ParallelSession'=> '3.17',
9696 'TAP::Formatter::Console::Session'=> '3.17',
9697 'TAP::Formatter::File' => '3.17',
9698 'TAP::Formatter::File::Session'=> '3.17',
9699 'TAP::Formatter::Session'=> '3.17',
9700 'TAP::Harness' => '3.17',
9701 'TAP::Object' => '3.17',
9702 'TAP::Parser' => '3.17',
9703 'TAP::Parser::Aggregator'=> '3.17',
9704 'TAP::Parser::Grammar' => '3.17',
9705 'TAP::Parser::Iterator' => '3.17',
9706 'TAP::Parser::Iterator::Array'=> '3.17',
9707 'TAP::Parser::Iterator::Process'=> '3.17',
9708 'TAP::Parser::Iterator::Stream'=> '3.17',
9709 'TAP::Parser::IteratorFactory'=> '3.17',
9710 'TAP::Parser::Multiplexer'=> '3.17',
9711 'TAP::Parser::Result' => '3.17',
9712 'TAP::Parser::Result::Bailout'=> '3.17',
9713 'TAP::Parser::Result::Comment'=> '3.17',
9714 'TAP::Parser::Result::Plan'=> '3.17',
9715 'TAP::Parser::Result::Pragma'=> '3.17',
9716 'TAP::Parser::Result::Test'=> '3.17',
9717 'TAP::Parser::Result::Unknown'=> '3.17',
9718 'TAP::Parser::Result::Version'=> '3.17',
9719 'TAP::Parser::Result::YAML'=> '3.17',
9720 'TAP::Parser::ResultFactory'=> '3.17',
9721 'TAP::Parser::Scheduler'=> '3.17',
9722 'TAP::Parser::Scheduler::Job'=> '3.17',
9723 'TAP::Parser::Scheduler::Spinner'=> '3.17',
9724 'TAP::Parser::Source' => '3.17',
9725 'TAP::Parser::Source::Perl'=> '3.17',
9726 'TAP::Parser::Utils' => '3.17',
9727 'TAP::Parser::YAMLish::Reader'=> '3.17',
9728 'TAP::Parser::YAMLish::Writer'=> '3.17',
9729 'Term::ANSIColor' => '2.00',
9730 'Term::Cap' => '1.12',
9731 'Term::Complete' => '1.402',
9732 'Term::ReadLine' => '1.04',
9733 'Term::UI' => '0.20',
9734 'Term::UI::History' => undef,
9735 'Test' => '1.25_02',
9736 'Test::Builder' => '0.92',
9737 'Test::Builder::Module' => '0.92',
9738 'Test::Builder::Tester' => '1.18',
9739 'Test::Builder::Tester::Color'=> '1.18',
9740 'Test::Harness' => '3.17',
9741 'Test::More' => '0.92',
9742 'Test::Simple' => '0.92',
9743 'Text::Abbrev' => '1.01',
9744 'Text::Balanced' => '2.0.0',
9745 'Text::ParseWords' => '3.27',
9746 'Text::Soundex' => '3.03',
9747 'Text::Tabs' => '2009.0305',
9748 'Text::Wrap' => '2009.0305',
9749 'Thread' => '3.02',
9750 'Thread::Queue' => '2.11',
9751 'Thread::Semaphore' => '2.09',
9752 'Tie::Array' => '1.03',
9753 'Tie::File' => '0.97_02',
9754 'Tie::Handle' => '4.2',
9755 'Tie::Hash' => '1.03',
9756 'Tie::Hash::NamedCapture'=> '0.06',
9757 'Tie::Memoize' => '1.1',
9758 'Tie::RefHash' => '1.38',
9759 'Tie::Scalar' => '1.01',
9760 'Tie::StdHandle' => '4.2',
9761 'Tie::SubstrHash' => '1.00',
9762 'Time::HiRes' => '1.9719',
9763 'Time::Local' => '1.1901',
9764 'Time::Piece' => '1.15',
9765 'Time::Piece::Seconds' => undef,
9766 'Time::Seconds' => undef,
9767 'Time::gmtime' => '1.03',
9768 'Time::localtime' => '1.02',
9769 'Time::tm' => '1.00',
9770 'UNIVERSAL' => '1.05',
9771 'Unicode' => '5.1.0',
9772 'Unicode::Collate' => '0.52',
9773 'Unicode::Normalize' => '1.03',
9774 'Unicode::UCD' => '0.27',
9775 'User::grent' => '1.01',
9776 'User::pwent' => '1.00',
9777 'Win32' => '0.39',
9778 'Win32API::File' => '0.1101',
9779 'Win32API::File::ExtUtils::Myconst2perl'=> '1',
9780 'Win32CORE' => '0.02',
9781 'XS::APItest' => '0.15',
9782 'XS::Typemap' => '0.03',
9783 'XSLoader' => '0.10',
9784 'attributes' => '0.09',
9785 'attrs' => '1.03',
9786 'autodie' => '2.06_01',
9787 'autodie::exception' => '2.06_01',
9788 'autodie::exception::system'=> '2.06_01',
9789 'autodie::hints' => '2.06_01',
9790 'autouse' => '1.06',
9791 'base' => '2.14',
9792 'bigint' => '0.23',
9793 'bignum' => '0.23',
9794 'bigrat' => '0.23',
9795 'blib' => '1.04',
9796 'bytes' => '1.03',
9797 'charnames' => '1.07',
9798 'constant' => '1.17',
9799 'diagnostics' => '1.17',
9800 'encoding' => '2.6_01',
9801 'encoding::warnings' => '0.11',
9802 'feature' => '1.13',
9803 'fields' => '2.14',
9804 'filetest' => '1.02',
9805 'if' => '0.05',
9806 'integer' => '1.00',
9807 'less' => '0.02',
9808 'lib' => '0.62',
9809 'locale' => '1.00',
9810 'mro' => '1.01',
9811 'open' => '1.07',
9812 'ops' => '1.02',
9813 'overload' => '1.07',
9814 'overload::numbers' => undef,
9815 'overloading' => '0.01',
9816 'parent' => '0.221',
9817 're' => '0.09',
9818 'sigtrap' => '1.04',
9819 'sort' => '2.01',
9820 'strict' => '1.04',
9821 'subs' => '1.00',
9822 'threads' => '1.72',
9823 'threads::shared' => '1.29',
9824 'utf8' => '1.07',
9825 'vars' => '1.01',
9826 'version' => '0.77',
9827 'vmsish' => '1.02',
9828 'warnings' => '1.06',
9829 'warnings::register' => '1.01',
9832 5.011000 => {
9833 'AnyDBM_File' => '1.00',
9834 'App::Prove' => '3.17',
9835 'App::Prove::State' => '3.17',
9836 'App::Prove::State::Result'=> '3.17',
9837 'App::Prove::State::Result::Test'=> '3.17',
9838 'Archive::Extract' => '0.34',
9839 'Archive::Tar' => '1.54',
9840 'Archive::Tar::Constant'=> '0.02',
9841 'Archive::Tar::File' => '0.02',
9842 'Attribute::Handlers' => '0.87',
9843 'AutoLoader' => '5.70',
9844 'AutoSplit' => '1.06',
9845 'B' => '1.22',
9846 'B::Concise' => '0.76',
9847 'B::Debug' => '1.11',
9848 'B::Deparse' => '0.91',
9849 'B::Lint' => '1.11_01',
9850 'B::Lint::Debug' => '0.01',
9851 'B::Showlex' => '1.02',
9852 'B::Terse' => '1.05',
9853 'B::Xref' => '1.02',
9854 'Benchmark' => '1.11',
9855 'CGI' => '3.45',
9856 'CGI::Apache' => '1.01',
9857 'CGI::Carp' => '3.45',
9858 'CGI::Cookie' => '1.29',
9859 'CGI::Fast' => '1.07',
9860 'CGI::Pretty' => '3.44',
9861 'CGI::Push' => '1.04',
9862 'CGI::Switch' => '1.01',
9863 'CGI::Util' => '3.45',
9864 'CPAN' => '1.94_51',
9865 'CPAN::Author' => '5.5',
9866 'CPAN::Bundle' => '5.5',
9867 'CPAN::CacheMgr' => '5.5',
9868 'CPAN::Complete' => '5.5',
9869 'CPAN::Debug' => '5.5',
9870 'CPAN::DeferredCode' => '5.50',
9871 'CPAN::Distribution' => '1.94',
9872 'CPAN::Distroprefs' => '6',
9873 'CPAN::Distrostatus' => '5.5',
9874 'CPAN::Exception::RecursiveDependency'=> '5.5',
9875 'CPAN::Exception::blocked_urllist'=> '1.0',
9876 'CPAN::Exception::yaml_not_installed'=> '5.5',
9877 'CPAN::FTP' => '5.5002',
9878 'CPAN::FTP::netrc' => '1.00',
9879 'CPAN::FirstTime' => '5.53',
9880 'CPAN::HandleConfig' => '5.5',
9881 'CPAN::Index' => '1.94',
9882 'CPAN::InfoObj' => '5.5',
9883 'CPAN::Kwalify' => '5.50',
9884 'CPAN::LWP::UserAgent' => '1.94',
9885 'CPAN::Module' => '5.5',
9886 'CPAN::Nox' => '5.50',
9887 'CPAN::Prompt' => '5.5',
9888 'CPAN::Queue' => '5.5',
9889 'CPAN::Shell' => '5.5',
9890 'CPAN::Tarzip' => '5.501',
9891 'CPAN::URL' => '5.5',
9892 'CPAN::Version' => '5.5',
9893 'CPANPLUS' => '0.88',
9894 'CPANPLUS::Backend' => undef,
9895 'CPANPLUS::Backend::RV' => undef,
9896 'CPANPLUS::Config' => undef,
9897 'CPANPLUS::Configure' => undef,
9898 'CPANPLUS::Configure::Setup'=> undef,
9899 'CPANPLUS::Dist' => undef,
9900 'CPANPLUS::Dist::Autobundle'=> undef,
9901 'CPANPLUS::Dist::Base' => undef,
9902 'CPANPLUS::Dist::Build' => '0.40',
9903 'CPANPLUS::Dist::Build::Constants'=> '0.40',
9904 'CPANPLUS::Dist::MM' => undef,
9905 'CPANPLUS::Dist::Sample'=> undef,
9906 'CPANPLUS::Error' => undef,
9907 'CPANPLUS::Internals' => '0.88',
9908 'CPANPLUS::Internals::Constants'=> undef,
9909 'CPANPLUS::Internals::Constants::Report'=> undef,
9910 'CPANPLUS::Internals::Extract'=> undef,
9911 'CPANPLUS::Internals::Fetch'=> undef,
9912 'CPANPLUS::Internals::Report'=> undef,
9913 'CPANPLUS::Internals::Search'=> undef,
9914 'CPANPLUS::Internals::Source'=> undef,
9915 'CPANPLUS::Internals::Source::Memory'=> undef,
9916 'CPANPLUS::Internals::Source::SQLite'=> undef,
9917 'CPANPLUS::Internals::Source::SQLite::Tie'=> undef,
9918 'CPANPLUS::Internals::Utils'=> undef,
9919 'CPANPLUS::Internals::Utils::Autoflush'=> undef,
9920 'CPANPLUS::Module' => undef,
9921 'CPANPLUS::Module::Author'=> undef,
9922 'CPANPLUS::Module::Author::Fake'=> undef,
9923 'CPANPLUS::Module::Checksums'=> undef,
9924 'CPANPLUS::Module::Fake'=> undef,
9925 'CPANPLUS::Module::Signature'=> undef,
9926 'CPANPLUS::Selfupdate' => undef,
9927 'CPANPLUS::Shell' => undef,
9928 'CPANPLUS::Shell::Classic'=> '0.0562',
9929 'CPANPLUS::Shell::Default'=> '0.88',
9930 'CPANPLUS::Shell::Default::Plugins::CustomSource'=> undef,
9931 'CPANPLUS::Shell::Default::Plugins::Remote'=> undef,
9932 'CPANPLUS::Shell::Default::Plugins::Source'=> undef,
9933 'Carp' => '1.12',
9934 'Carp::Heavy' => '1.12',
9935 'Class::ISA' => '0.36',
9936 'Class::Struct' => '0.63',
9937 'Compress::Raw::Bzip2' => '2.021',
9938 'Compress::Raw::Zlib' => '2.021',
9939 'Compress::Zlib' => '2.021',
9940 'Config' => undef,
9941 'Config::Extensions' => '0.01',
9942 'Cwd' => '3.3002',
9943 'DB' => '1.02',
9944 'DBM_Filter' => '0.02',
9945 'DBM_Filter::compress' => '0.02',
9946 'DBM_Filter::encode' => '0.02',
9947 'DBM_Filter::int32' => '0.02',
9948 'DBM_Filter::null' => '0.02',
9949 'DBM_Filter::utf8' => '0.02',
9950 'DB_File' => '1.820',
9951 'Data::Dumper' => '2.125',
9952 'Devel::DProf' => '20080331.00',
9953 'Devel::DProf::dprof::V'=> undef,
9954 'Devel::InnerPackage' => '0.3',
9955 'Devel::PPPort' => '3.19',
9956 'Devel::Peek' => '1.04',
9957 'Devel::SelfStubber' => '1.03',
9958 'Digest' => '1.16',
9959 'Digest::MD5' => '2.39',
9960 'Digest::SHA' => '5.47',
9961 'Digest::base' => '1.16',
9962 'Digest::file' => '1.16',
9963 'DirHandle' => '1.03',
9964 'Dumpvalue' => '1.13',
9965 'DynaLoader' => '1.10',
9966 'Encode' => '2.37',
9967 'Encode::Alias' => '2.12',
9968 'Encode::Byte' => '2.03',
9969 'Encode::CJKConstants' => '2.02',
9970 'Encode::CN' => '2.02',
9971 'Encode::CN::HZ' => '2.05',
9972 'Encode::Config' => '2.05',
9973 'Encode::EBCDIC' => '2.02',
9974 'Encode::Encoder' => '2.01',
9975 'Encode::Encoding' => '2.05',
9976 'Encode::GSM0338' => '2.01',
9977 'Encode::Guess' => '2.03',
9978 'Encode::JP' => '2.03',
9979 'Encode::JP::H2Z' => '2.02',
9980 'Encode::JP::JIS7' => '2.04',
9981 'Encode::KR' => '2.02',
9982 'Encode::KR::2022_KR' => '2.02',
9983 'Encode::MIME::Header' => '2.11',
9984 'Encode::MIME::Header::ISO_2022_JP'=> '1.03',
9985 'Encode::MIME::Name' => '1.01',
9986 'Encode::Symbol' => '2.02',
9987 'Encode::TW' => '2.02',
9988 'Encode::Unicode' => '2.06',
9989 'Encode::Unicode::UTF7' => '2.04',
9990 'English' => '1.04',
9991 'Env' => '1.00',
9992 'Errno' => '1.11',
9993 'Exporter' => '5.64',
9994 'Exporter::Heavy' => '5.64',
9995 'ExtUtils::CBuilder' => '0.2602',
9996 'ExtUtils::CBuilder::Base'=> '0.2602',
9997 'ExtUtils::CBuilder::Platform::Unix'=> '0.2602',
9998 'ExtUtils::CBuilder::Platform::VMS'=> '0.2602',
9999 'ExtUtils::CBuilder::Platform::Windows'=> '0.2602',
10000 'ExtUtils::CBuilder::Platform::aix'=> '0.2602',
10001 'ExtUtils::CBuilder::Platform::cygwin'=> '0.2602',
10002 'ExtUtils::CBuilder::Platform::darwin'=> '0.2602',
10003 'ExtUtils::CBuilder::Platform::dec_osf'=> '0.2602',
10004 'ExtUtils::CBuilder::Platform::os2'=> '0.2602',
10005 'ExtUtils::Command' => '1.16',
10006 'ExtUtils::Command::MM' => '6.55_02',
10007 'ExtUtils::Constant' => '0.22',
10008 'ExtUtils::Constant::Base'=> '0.04',
10009 'ExtUtils::Constant::ProxySubs'=> '0.06',
10010 'ExtUtils::Constant::Utils'=> '0.02',
10011 'ExtUtils::Constant::XS'=> '0.03',
10012 'ExtUtils::Embed' => '1.28',
10013 'ExtUtils::Install' => '1.54',
10014 'ExtUtils::Installed' => '1.999_001',
10015 'ExtUtils::Liblist' => '6.55_02',
10016 'ExtUtils::Liblist::Kid'=> '6.5502',
10017 'ExtUtils::MM' => '6.55_02',
10018 'ExtUtils::MM_AIX' => '6.55_02',
10019 'ExtUtils::MM_Any' => '6.55_02',
10020 'ExtUtils::MM_BeOS' => '6.55_02',
10021 'ExtUtils::MM_Cygwin' => '6.55_02',
10022 'ExtUtils::MM_DOS' => '6.5502',
10023 'ExtUtils::MM_Darwin' => '6.55_02',
10024 'ExtUtils::MM_MacOS' => '6.5502',
10025 'ExtUtils::MM_NW5' => '6.55_02',
10026 'ExtUtils::MM_OS2' => '6.55_02',
10027 'ExtUtils::MM_QNX' => '6.55_02',
10028 'ExtUtils::MM_UWIN' => '6.5502',
10029 'ExtUtils::MM_Unix' => '6.55_02',
10030 'ExtUtils::MM_VMS' => '6.55_02',
10031 'ExtUtils::MM_VOS' => '6.55_02',
10032 'ExtUtils::MM_Win32' => '6.55_02',
10033 'ExtUtils::MM_Win95' => '6.55_02',
10034 'ExtUtils::MY' => '6.5502',
10035 'ExtUtils::MakeMaker' => '6.55_02',
10036 'ExtUtils::MakeMaker::Config'=> '6.55_02',
10037 'ExtUtils::Manifest' => '1.56',
10038 'ExtUtils::Miniperl' => undef,
10039 'ExtUtils::Mkbootstrap' => '6.55_02',
10040 'ExtUtils::Mksymlists' => '6.55_02',
10041 'ExtUtils::Packlist' => '1.43',
10042 'ExtUtils::ParseXS' => '2.200403',
10043 'ExtUtils::XSSymSet' => '1.1',
10044 'ExtUtils::testlib' => '6.5502',
10045 'Fatal' => '2.06_01',
10046 'Fcntl' => '1.06',
10047 'File::Basename' => '2.78',
10048 'File::CheckTree' => '4.4',
10049 'File::Compare' => '1.1006',
10050 'File::Copy' => '2.16',
10051 'File::DosGlob' => '1.01',
10052 'File::Fetch' => '0.20',
10053 'File::Find' => '1.14',
10054 'File::Glob' => '1.06',
10055 'File::GlobMapper' => '1.000',
10056 'File::Path' => '2.07_03',
10057 'File::Spec' => '3.30',
10058 'File::Spec::Cygwin' => '3.30',
10059 'File::Spec::Epoc' => '3.30',
10060 'File::Spec::Functions' => '3.30',
10061 'File::Spec::Mac' => '3.30',
10062 'File::Spec::OS2' => '3.30',
10063 'File::Spec::Unix' => '3.30',
10064 'File::Spec::VMS' => '3.30',
10065 'File::Spec::Win32' => '3.30',
10066 'File::Temp' => '0.22',
10067 'File::stat' => '1.02',
10068 'FileCache' => '1.08',
10069 'FileHandle' => '2.02',
10070 'VMS::Filespec' => '1.12',
10071 'Filter::Simple' => '0.84',
10072 'Filter::Util::Call' => '1.08',
10073 'FindBin' => '1.50',
10074 'GDBM_File' => '1.09',
10075 'Getopt::Long' => '2.38',
10076 'Getopt::Std' => '1.06',
10077 'Hash::Util' => '0.07',
10078 'Hash::Util::FieldHash' => '1.04',
10079 'I18N::Collate' => '1.01',
10080 'I18N::LangTags' => '0.35',
10081 'I18N::LangTags::Detect'=> '1.03',
10082 'I18N::LangTags::List' => '0.35',
10083 'I18N::Langinfo' => '0.02',
10084 'IO' => '1.25_01',
10085 'IO::Compress::Adapter::Bzip2'=> '2.021',
10086 'IO::Compress::Adapter::Deflate'=> '2.021',
10087 'IO::Compress::Adapter::Identity'=> '2.021',
10088 'IO::Compress::Base' => '2.021',
10089 'IO::Compress::Base::Common'=> '2.021',
10090 'IO::Compress::Bzip2' => '2.021',
10091 'IO::Compress::Deflate' => '2.021',
10092 'IO::Compress::Gzip' => '2.021',
10093 'IO::Compress::Gzip::Constants'=> '2.021',
10094 'IO::Compress::RawDeflate'=> '2.021',
10095 'IO::Compress::Zip' => '2.021',
10096 'IO::Compress::Zip::Constants'=> '2.021',
10097 'IO::Compress::Zlib::Constants'=> '2.021',
10098 'IO::Compress::Zlib::Extra'=> '2.021',
10099 'IO::Dir' => '1.07',
10100 'IO::File' => '1.14',
10101 'IO::Handle' => '1.28',
10102 'IO::Pipe' => '1.13',
10103 'IO::Poll' => '0.07',
10104 'IO::Seekable' => '1.10',
10105 'IO::Select' => '1.17',
10106 'IO::Socket' => '1.31',
10107 'IO::Socket::INET' => '1.31',
10108 'IO::Socket::UNIX' => '1.23',
10109 'IO::Uncompress::Adapter::Bunzip2'=> '2.021',
10110 'IO::Uncompress::Adapter::Identity'=> '2.021',
10111 'IO::Uncompress::Adapter::Inflate'=> '2.021',
10112 'IO::Uncompress::AnyInflate'=> '2.021',
10113 'IO::Uncompress::AnyUncompress'=> '2.021',
10114 'IO::Uncompress::Base' => '2.021',
10115 'IO::Uncompress::Bunzip2'=> '2.021',
10116 'IO::Uncompress::Gunzip'=> '2.021',
10117 'IO::Uncompress::Inflate'=> '2.021',
10118 'IO::Uncompress::RawInflate'=> '2.021',
10119 'IO::Uncompress::Unzip' => '2.021',
10120 'IO::Zlib' => '1.10',
10121 'IPC::Cmd' => '0.50',
10122 'IPC::Msg' => '2.01',
10123 'IPC::Open2' => '1.03',
10124 'IPC::Open3' => '1.05',
10125 'IPC::Semaphore' => '2.01',
10126 'IPC::SharedMem' => '2.01',
10127 'IPC::SysV' => '2.01',
10128 'List::Util' => '1.21',
10129 'List::Util::PP' => '1.21',
10130 'List::Util::XS' => '1.21',
10131 'Locale::Constants' => '2.07',
10132 'Locale::Country' => '2.07',
10133 'Locale::Currency' => '2.07',
10134 'Locale::Language' => '2.07',
10135 'Locale::Maketext' => '1.13',
10136 'Locale::Maketext::Guts'=> '1.13',
10137 'Locale::Maketext::GutsLoader'=> '1.13',
10138 'Locale::Maketext::Simple'=> '0.21',
10139 'Locale::Script' => '2.07',
10140 'Log::Message' => '0.02',
10141 'Log::Message::Config' => '0.01',
10142 'Log::Message::Handlers'=> undef,
10143 'Log::Message::Item' => undef,
10144 'Log::Message::Simple' => '0.06',
10145 'MIME::Base64' => '3.08',
10146 'MIME::QuotedPrint' => '3.08',
10147 'Math::BigFloat' => '1.60',
10148 'Math::BigFloat::Trace' => '0.01',
10149 'Math::BigInt' => '1.89_01',
10150 'Math::BigInt::Calc' => '0.52',
10151 'Math::BigInt::CalcEmu' => '0.05',
10152 'Math::BigInt::FastCalc'=> '0.19',
10153 'Math::BigInt::Trace' => '0.01',
10154 'Math::BigRat' => '0.24',
10155 'Math::Complex' => '1.56',
10156 'Math::Trig' => '1.2',
10157 'Memoize' => '1.01_03',
10158 'Memoize::AnyDBM_File' => '0.65',
10159 'Memoize::Expire' => '1.00',
10160 'Memoize::ExpireFile' => '1.01',
10161 'Memoize::ExpireTest' => '0.65',
10162 'Memoize::NDBM_File' => '0.65',
10163 'Memoize::SDBM_File' => '0.65',
10164 'Memoize::Storable' => '0.65',
10165 'Module::Build' => '0.35',
10166 'Module::Build::Base' => '0.35',
10167 'Module::Build::Compat' => '0.35',
10168 'Module::Build::Config' => '0.35',
10169 'Module::Build::ConfigData'=> undef,
10170 'Module::Build::Cookbook'=> '0.35',
10171 'Module::Build::Dumper' => '0.35',
10172 'Module::Build::ModuleInfo'=> '0.35',
10173 'Module::Build::Notes' => '0.35',
10174 'Module::Build::PPMMaker'=> '0.35',
10175 'Module::Build::Platform::Amiga'=> '0.35',
10176 'Module::Build::Platform::Default'=> '0.35',
10177 'Module::Build::Platform::EBCDIC'=> '0.35',
10178 'Module::Build::Platform::MPEiX'=> '0.35',
10179 'Module::Build::Platform::MacOS'=> '0.35',
10180 'Module::Build::Platform::RiscOS'=> '0.35',
10181 'Module::Build::Platform::Unix'=> '0.35',
10182 'Module::Build::Platform::VMS'=> '0.35',
10183 'Module::Build::Platform::VOS'=> '0.35',
10184 'Module::Build::Platform::Windows'=> '0.35',
10185 'Module::Build::Platform::aix'=> '0.35',
10186 'Module::Build::Platform::cygwin'=> '0.35',
10187 'Module::Build::Platform::darwin'=> '0.35',
10188 'Module::Build::Platform::os2'=> '0.35',
10189 'Module::Build::PodParser'=> '0.35',
10190 'Module::Build::Version'=> '0.77',
10191 'Module::Build::YAML' => '0.50',
10192 'Module::CoreList' => '2.19',
10193 'Module::Load' => '0.16',
10194 'Module::Load::Conditional'=> '0.30',
10195 'Module::Loaded' => '0.06',
10196 'Module::Pluggable' => '3.9',
10197 'Module::Pluggable::Object'=> '3.9',
10198 'Moped::Msg' => '0.01',
10199 'NDBM_File' => '1.08',
10200 'NEXT' => '0.64',
10201 'Net::Cmd' => '2.29',
10202 'Net::Config' => '1.11',
10203 'Net::Domain' => '2.20',
10204 'Net::FTP' => '2.77',
10205 'Net::FTP::A' => '1.18',
10206 'Net::FTP::E' => '0.01',
10207 'Net::FTP::I' => '1.12',
10208 'Net::FTP::L' => '0.01',
10209 'Net::FTP::dataconn' => '0.11',
10210 'Net::NNTP' => '2.24',
10211 'Net::Netrc' => '2.12',
10212 'Net::POP3' => '2.29',
10213 'Net::Ping' => '2.36',
10214 'Net::SMTP' => '2.31',
10215 'Net::Time' => '2.10',
10216 'Net::hostent' => '1.01',
10217 'Net::netent' => '1.00',
10218 'Net::protoent' => '1.00',
10219 'Net::servent' => '1.01',
10220 'O' => '1.01',
10221 'ODBM_File' => '1.07',
10222 'Object::Accessor' => '0.34',
10223 'Opcode' => '1.13',
10224 'POSIX' => '1.17',
10225 'Package::Constants' => '0.02',
10226 'Params::Check' => '0.26',
10227 'Parse::CPAN::Meta' => '1.39',
10228 'PerlIO' => '1.06',
10229 'PerlIO::encoding' => '0.11',
10230 'PerlIO::scalar' => '0.07',
10231 'PerlIO::via' => '0.08',
10232 'PerlIO::via::QuotedPrint'=> '0.06',
10233 'Pod::Checker' => '1.45',
10234 'Pod::Escapes' => '1.04',
10235 'Pod::Find' => '1.35',
10236 'Pod::Functions' => '1.03',
10237 'Pod::Html' => '1.09',
10238 'Pod::InputObjects' => '1.31',
10239 'Pod::LaTeX' => '0.58',
10240 'Pod::Man' => '2.22',
10241 'Pod::ParseLink' => '1.09',
10242 'Pod::ParseUtils' => '1.36',
10243 'Pod::Parser' => '1.37',
10244 'Pod::Perldoc' => '3.15_01',
10245 'Pod::Perldoc::BaseTo' => undef,
10246 'Pod::Perldoc::GetOptsOO'=> undef,
10247 'Pod::Perldoc::ToChecker'=> undef,
10248 'Pod::Perldoc::ToMan' => undef,
10249 'Pod::Perldoc::ToNroff' => undef,
10250 'Pod::Perldoc::ToPod' => undef,
10251 'Pod::Perldoc::ToRtf' => undef,
10252 'Pod::Perldoc::ToText' => undef,
10253 'Pod::Perldoc::ToTk' => undef,
10254 'Pod::Perldoc::ToXml' => undef,
10255 'Pod::PlainText' => '2.04',
10256 'Pod::Plainer' => '1.01',
10257 'Pod::Select' => '1.36',
10258 'Pod::Simple' => '3.07',
10259 'Pod::Simple::BlackBox' => undef,
10260 'Pod::Simple::Checker' => '2.02',
10261 'Pod::Simple::Debug' => undef,
10262 'Pod::Simple::DumpAsText'=> '2.02',
10263 'Pod::Simple::DumpAsXML'=> '2.02',
10264 'Pod::Simple::HTML' => '3.03',
10265 'Pod::Simple::HTMLBatch'=> '3.02',
10266 'Pod::Simple::HTMLLegacy'=> '5.01',
10267 'Pod::Simple::LinkSection'=> undef,
10268 'Pod::Simple::Methody' => '2.02',
10269 'Pod::Simple::Progress' => '1.01',
10270 'Pod::Simple::PullParser'=> '2.02',
10271 'Pod::Simple::PullParserEndToken'=> undef,
10272 'Pod::Simple::PullParserStartToken'=> undef,
10273 'Pod::Simple::PullParserTextToken'=> undef,
10274 'Pod::Simple::PullParserToken'=> '2.02',
10275 'Pod::Simple::RTF' => '2.02',
10276 'Pod::Simple::Search' => '3.04',
10277 'Pod::Simple::SimpleTree'=> '2.02',
10278 'Pod::Simple::Text' => '2.02',
10279 'Pod::Simple::TextContent'=> '2.02',
10280 'Pod::Simple::TiedOutFH'=> undef,
10281 'Pod::Simple::Transcode'=> undef,
10282 'Pod::Simple::TranscodeDumb'=> '2.02',
10283 'Pod::Simple::TranscodeSmart'=> undef,
10284 'Pod::Simple::XHTML' => '3.04',
10285 'Pod::Simple::XMLOutStream'=> '2.02',
10286 'Pod::Text' => '3.13',
10287 'Pod::Text::Color' => '2.05',
10288 'Pod::Text::Overstrike' => '2.03',
10289 'Pod::Text::Termcap' => '2.05',
10290 'Pod::Usage' => '1.36',
10291 'SDBM_File' => '1.06',
10292 'Safe' => '2.19',
10293 'Scalar::Util' => '1.21',
10294 'Scalar::Util::PP' => '1.21',
10295 'Search::Dict' => '1.02',
10296 'SelectSaver' => '1.02',
10297 'SelfLoader' => '1.17',
10298 'Shell' => '0.72_01',
10299 'Socket' => '1.84',
10300 'Storable' => '2.20',
10301 'Switch' => '2.14_01',
10302 'Symbol' => '1.07',
10303 'Sys::Hostname' => '1.11',
10304 'Sys::Syslog' => '0.27',
10305 'Sys::Syslog::win32::Win32'=> undef,
10306 'TAP::Base' => '3.17',
10307 'TAP::Formatter::Base' => '3.17',
10308 'TAP::Formatter::Color' => '3.17',
10309 'TAP::Formatter::Console'=> '3.17',
10310 'TAP::Formatter::Console::ParallelSession'=> '3.17',
10311 'TAP::Formatter::Console::Session'=> '3.17',
10312 'TAP::Formatter::File' => '3.17',
10313 'TAP::Formatter::File::Session'=> '3.17',
10314 'TAP::Formatter::Session'=> '3.17',
10315 'TAP::Harness' => '3.17',
10316 'TAP::Object' => '3.17',
10317 'TAP::Parser' => '3.17',
10318 'TAP::Parser::Aggregator'=> '3.17',
10319 'TAP::Parser::Grammar' => '3.17',
10320 'TAP::Parser::Iterator' => '3.17',
10321 'TAP::Parser::Iterator::Array'=> '3.17',
10322 'TAP::Parser::Iterator::Process'=> '3.17',
10323 'TAP::Parser::Iterator::Stream'=> '3.17',
10324 'TAP::Parser::IteratorFactory'=> '3.17',
10325 'TAP::Parser::Multiplexer'=> '3.17',
10326 'TAP::Parser::Result' => '3.17',
10327 'TAP::Parser::Result::Bailout'=> '3.17',
10328 'TAP::Parser::Result::Comment'=> '3.17',
10329 'TAP::Parser::Result::Plan'=> '3.17',
10330 'TAP::Parser::Result::Pragma'=> '3.17',
10331 'TAP::Parser::Result::Test'=> '3.17',
10332 'TAP::Parser::Result::Unknown'=> '3.17',
10333 'TAP::Parser::Result::Version'=> '3.17',
10334 'TAP::Parser::Result::YAML'=> '3.17',
10335 'TAP::Parser::ResultFactory'=> '3.17',
10336 'TAP::Parser::Scheduler'=> '3.17',
10337 'TAP::Parser::Scheduler::Job'=> '3.17',
10338 'TAP::Parser::Scheduler::Spinner'=> '3.17',
10339 'TAP::Parser::Source' => '3.17',
10340 'TAP::Parser::Source::Perl'=> '3.17',
10341 'TAP::Parser::Utils' => '3.17',
10342 'TAP::Parser::YAMLish::Reader'=> '3.17',
10343 'TAP::Parser::YAMLish::Writer'=> '3.17',
10344 'Term::ANSIColor' => '2.02',
10345 'Term::Cap' => '1.12',
10346 'Term::Complete' => '1.402',
10347 'Term::ReadLine' => '1.05',
10348 'Term::UI' => '0.20',
10349 'Term::UI::History' => undef,
10350 'Test' => '1.25_02',
10351 'Test::Builder' => '0.92',
10352 'Test::Builder::Module' => '0.92',
10353 'Test::Builder::Tester' => '1.18',
10354 'Test::Builder::Tester::Color'=> '1.18',
10355 'Test::Harness' => '3.17',
10356 'Test::More' => '0.92',
10357 'Test::Simple' => '0.92',
10358 'Text::Abbrev' => '1.01',
10359 'Text::Balanced' => '2.02',
10360 'Text::ParseWords' => '3.27',
10361 'Text::Soundex' => '3.03_01',
10362 'Text::Tabs' => '2009.0305',
10363 'Text::Wrap' => '2009.0305',
10364 'Thread' => '3.02',
10365 'Thread::Queue' => '2.11',
10366 'Thread::Semaphore' => '2.09',
10367 'Tie::Array' => '1.03',
10368 'Tie::File' => '0.97_02',
10369 'Tie::Handle' => '4.2',
10370 'Tie::Hash' => '1.03',
10371 'Tie::Hash::NamedCapture'=> '0.06',
10372 'Tie::Memoize' => '1.1',
10373 'Tie::RefHash' => '1.38',
10374 'Tie::Scalar' => '1.01',
10375 'Tie::StdHandle' => '4.2',
10376 'Tie::SubstrHash' => '1.00',
10377 'Time::HiRes' => '1.9719',
10378 'Time::Local' => '1.1901_01',
10379 'Time::Piece' => '1.15',
10380 'Time::Piece::Seconds' => undef,
10381 'Time::Seconds' => undef,
10382 'Time::gmtime' => '1.03',
10383 'Time::localtime' => '1.02',
10384 'Time::tm' => '1.00',
10385 'UNIVERSAL' => '1.05',
10386 'Unicode' => '5.1.0',
10387 'Unicode::Collate' => '0.52_01',
10388 'Unicode::Normalize' => '1.03',
10389 'Unicode::UCD' => '0.27',
10390 'User::grent' => '1.01',
10391 'User::pwent' => '1.00',
10392 'VMS::DCLsym' => '1.03',
10393 'VMS::Stdio' => '2.4',
10394 'Win32' => '0.39',
10395 'Win32API::File' => '0.1101',
10396 'Win32API::File::ExtUtils::Myconst2perl'=> '1',
10397 'Win32CORE' => '0.02',
10398 'XS::APItest' => '0.15',
10399 'XS::Typemap' => '0.03',
10400 'XSLoader' => '0.10',
10401 'XSLoader::XSLoader' => '0.10',
10402 'attributes' => '0.12',
10403 'autodie' => '2.06_01',
10404 'autodie::exception' => '2.06_01',
10405 'autodie::exception::system'=> '2.06_01',
10406 'autodie::hints' => '2.06_01',
10407 'autouse' => '1.06',
10408 'base' => '2.14',
10409 'bigint' => '0.23',
10410 'bignum' => '0.23',
10411 'bigrat' => '0.23',
10412 'blib' => '1.04',
10413 'bytes' => '1.03',
10414 'charnames' => '1.07',
10415 'constant' => '1.19',
10416 'deprecate' => '0.01',
10417 'diagnostics' => '1.17',
10418 'encoding' => '2.6_01',
10419 'encoding::warnings' => '0.11',
10420 'feature' => '1.13',
10421 'fields' => '2.14',
10422 'filetest' => '1.02',
10423 'if' => '0.05',
10424 'integer' => '1.00',
10425 'less' => '0.02',
10426 'lib' => '0.62',
10427 'locale' => '1.00',
10428 'mro' => '1.01',
10429 'open' => '1.07',
10430 'ops' => '1.02',
10431 'overload' => '1.08',
10432 'overload::numbers' => undef,
10433 'overloading' => '0.01',
10434 'parent' => '0.223',
10435 're' => '0.10',
10436 'sigtrap' => '1.04',
10437 'sort' => '2.01',
10438 'strict' => '1.04',
10439 'subs' => '1.00',
10440 'threads' => '1.74',
10441 'threads::shared' => '1.31',
10442 'utf8' => '1.07',
10443 'vars' => '1.01',
10444 'version' => '0.77',
10445 'vmsish' => '1.02',
10446 'warnings' => '1.07',
10447 'warnings::register' => '1.01',
10450 5.011001 => {
10451 'AnyDBM_File' => '1.00',
10452 'App::Prove' => '3.17',
10453 'App::Prove::State' => '3.17',
10454 'App::Prove::State::Result'=> '3.17',
10455 'App::Prove::State::Result::Test'=> '3.17',
10456 'Archive::Extract' => '0.34',
10457 'Archive::Tar' => '1.54',
10458 'Archive::Tar::Constant'=> '0.02',
10459 'Archive::Tar::File' => '0.02',
10460 'Attribute::Handlers' => '0.87',
10461 'AutoLoader' => '5.70',
10462 'AutoSplit' => '1.06',
10463 'B' => '1.23',
10464 'B::Concise' => '0.77',
10465 'B::Debug' => '1.11',
10466 'B::Deparse' => '0.92',
10467 'B::Lint' => '1.11_01',
10468 'B::Lint::Debug' => '0.01',
10469 'B::Showlex' => '1.02',
10470 'B::Terse' => '1.05',
10471 'B::Xref' => '1.02',
10472 'Benchmark' => '1.11',
10473 'CGI' => '3.48',
10474 'CGI::Apache' => '1.01',
10475 'CGI::Carp' => '3.45',
10476 'CGI::Cookie' => '1.29',
10477 'CGI::Fast' => '1.07',
10478 'CGI::Pretty' => '3.46',
10479 'CGI::Push' => '1.04',
10480 'CGI::Switch' => '1.01',
10481 'CGI::Util' => '3.48',
10482 'CPAN' => '1.94_51',
10483 'CPAN::Author' => '5.5',
10484 'CPAN::Bundle' => '5.5',
10485 'CPAN::CacheMgr' => '5.5',
10486 'CPAN::Complete' => '5.5',
10487 'CPAN::Debug' => '5.5',
10488 'CPAN::DeferredCode' => '5.50',
10489 'CPAN::Distribution' => '1.94',
10490 'CPAN::Distroprefs' => '6',
10491 'CPAN::Distrostatus' => '5.5',
10492 'CPAN::Exception::RecursiveDependency'=> '5.5',
10493 'CPAN::Exception::blocked_urllist'=> '1.0',
10494 'CPAN::Exception::yaml_not_installed'=> '5.5',
10495 'CPAN::FTP' => '5.5002',
10496 'CPAN::FTP::netrc' => '1.00',
10497 'CPAN::FirstTime' => '5.53',
10498 'CPAN::HandleConfig' => '5.5',
10499 'CPAN::Index' => '1.94',
10500 'CPAN::InfoObj' => '5.5',
10501 'CPAN::Kwalify' => '5.50',
10502 'CPAN::LWP::UserAgent' => '1.94',
10503 'CPAN::Module' => '5.5',
10504 'CPAN::Nox' => '5.50',
10505 'CPAN::Prompt' => '5.5',
10506 'CPAN::Queue' => '5.5',
10507 'CPAN::Shell' => '5.5',
10508 'CPAN::Tarzip' => '5.501',
10509 'CPAN::URL' => '5.5',
10510 'CPAN::Version' => '5.5',
10511 'CPANPLUS' => '0.89_03',
10512 'CPANPLUS::Backend' => undef,
10513 'CPANPLUS::Backend::RV' => undef,
10514 'CPANPLUS::Config' => undef,
10515 'CPANPLUS::Configure' => undef,
10516 'CPANPLUS::Configure::Setup'=> undef,
10517 'CPANPLUS::Dist' => undef,
10518 'CPANPLUS::Dist::Autobundle'=> undef,
10519 'CPANPLUS::Dist::Base' => undef,
10520 'CPANPLUS::Dist::Build' => '0.40',
10521 'CPANPLUS::Dist::Build::Constants'=> '0.40',
10522 'CPANPLUS::Dist::MM' => undef,
10523 'CPANPLUS::Dist::Sample'=> undef,
10524 'CPANPLUS::Error' => undef,
10525 'CPANPLUS::Internals' => '0.89_03',
10526 'CPANPLUS::Internals::Constants'=> undef,
10527 'CPANPLUS::Internals::Constants::Report'=> undef,
10528 'CPANPLUS::Internals::Extract'=> undef,
10529 'CPANPLUS::Internals::Fetch'=> undef,
10530 'CPANPLUS::Internals::Report'=> undef,
10531 'CPANPLUS::Internals::Search'=> undef,
10532 'CPANPLUS::Internals::Source'=> undef,
10533 'CPANPLUS::Internals::Source::Memory'=> undef,
10534 'CPANPLUS::Internals::Source::SQLite'=> undef,
10535 'CPANPLUS::Internals::Source::SQLite::Tie'=> undef,
10536 'CPANPLUS::Internals::Utils'=> undef,
10537 'CPANPLUS::Internals::Utils::Autoflush'=> undef,
10538 'CPANPLUS::Module' => undef,
10539 'CPANPLUS::Module::Author'=> undef,
10540 'CPANPLUS::Module::Author::Fake'=> undef,
10541 'CPANPLUS::Module::Checksums'=> undef,
10542 'CPANPLUS::Module::Fake'=> undef,
10543 'CPANPLUS::Module::Signature'=> undef,
10544 'CPANPLUS::Selfupdate' => undef,
10545 'CPANPLUS::Shell' => undef,
10546 'CPANPLUS::Shell::Classic'=> '0.0562',
10547 'CPANPLUS::Shell::Default'=> '0.89_03',
10548 'CPANPLUS::Shell::Default::Plugins::CustomSource'=> undef,
10549 'CPANPLUS::Shell::Default::Plugins::Remote'=> undef,
10550 'CPANPLUS::Shell::Default::Plugins::Source'=> undef,
10551 'Carp' => '1.13',
10552 'Carp::Heavy' => '1.13',
10553 'Class::ISA' => '0.36',
10554 'Class::Struct' => '0.63',
10555 'Compress::Raw::Bzip2' => '2.021',
10556 'Compress::Raw::Zlib' => '2.021',
10557 'Compress::Zlib' => '2.021',
10558 'Config' => undef,
10559 'Config::Extensions' => '0.01',
10560 'Cwd' => '3.3002',
10561 'DB' => '1.02',
10562 'DBM_Filter' => '0.02',
10563 'DBM_Filter::compress' => '0.02',
10564 'DBM_Filter::encode' => '0.02',
10565 'DBM_Filter::int32' => '0.02',
10566 'DBM_Filter::null' => '0.02',
10567 'DBM_Filter::utf8' => '0.02',
10568 'DB_File' => '1.820',
10569 'Data::Dumper' => '2.125',
10570 'Devel::DProf' => '20080331.00',
10571 'Devel::DProf::dprof::V'=> undef,
10572 'Devel::InnerPackage' => '0.3',
10573 'Devel::PPPort' => '3.19',
10574 'Devel::Peek' => '1.04',
10575 'Devel::SelfStubber' => '1.03',
10576 'Digest' => '1.16',
10577 'Digest::MD5' => '2.39',
10578 'Digest::SHA' => '5.47',
10579 'Digest::base' => '1.16',
10580 'Digest::file' => '1.16',
10581 'DirHandle' => '1.03',
10582 'Dumpvalue' => '1.13',
10583 'DynaLoader' => '1.10',
10584 'Encode' => '2.37',
10585 'Encode::Alias' => '2.12',
10586 'Encode::Byte' => '2.03',
10587 'Encode::CJKConstants' => '2.02',
10588 'Encode::CN' => '2.02',
10589 'Encode::CN::HZ' => '2.05',
10590 'Encode::Config' => '2.05',
10591 'Encode::EBCDIC' => '2.02',
10592 'Encode::Encoder' => '2.01',
10593 'Encode::Encoding' => '2.05',
10594 'Encode::GSM0338' => '2.01',
10595 'Encode::Guess' => '2.03',
10596 'Encode::JP' => '2.03',
10597 'Encode::JP::H2Z' => '2.02',
10598 'Encode::JP::JIS7' => '2.04',
10599 'Encode::KR' => '2.02',
10600 'Encode::KR::2022_KR' => '2.02',
10601 'Encode::MIME::Header' => '2.11',
10602 'Encode::MIME::Header::ISO_2022_JP'=> '1.03',
10603 'Encode::MIME::Name' => '1.01',
10604 'Encode::Symbol' => '2.02',
10605 'Encode::TW' => '2.02',
10606 'Encode::Unicode' => '2.06',
10607 'Encode::Unicode::UTF7' => '2.04',
10608 'English' => '1.04',
10609 'Env' => '1.00',
10610 'Errno' => '1.11',
10611 'Exporter' => '5.64',
10612 'Exporter::Heavy' => '5.64',
10613 'ExtUtils::CBuilder' => '0.260301',
10614 'ExtUtils::CBuilder::Base'=> '0.260301',
10615 'ExtUtils::CBuilder::Platform::Unix'=> '0.260301',
10616 'ExtUtils::CBuilder::Platform::VMS'=> '0.260301',
10617 'ExtUtils::CBuilder::Platform::Windows'=> '0.260301',
10618 'ExtUtils::CBuilder::Platform::aix'=> '0.260301',
10619 'ExtUtils::CBuilder::Platform::cygwin'=> '0.260301',
10620 'ExtUtils::CBuilder::Platform::darwin'=> '0.260301',
10621 'ExtUtils::CBuilder::Platform::dec_osf'=> '0.260301',
10622 'ExtUtils::CBuilder::Platform::os2'=> '0.260301',
10623 'ExtUtils::Command' => '1.16',
10624 'ExtUtils::Command::MM' => '6.55_02',
10625 'ExtUtils::Constant' => '0.22',
10626 'ExtUtils::Constant::Base'=> '0.04',
10627 'ExtUtils::Constant::ProxySubs'=> '0.06',
10628 'ExtUtils::Constant::Utils'=> '0.02',
10629 'ExtUtils::Constant::XS'=> '0.03',
10630 'ExtUtils::Embed' => '1.28',
10631 'ExtUtils::Install' => '1.55',
10632 'ExtUtils::Installed' => '1.999_001',
10633 'ExtUtils::Liblist' => '6.55_02',
10634 'ExtUtils::Liblist::Kid'=> '6.5502',
10635 'ExtUtils::MM' => '6.55_02',
10636 'ExtUtils::MM_AIX' => '6.55_02',
10637 'ExtUtils::MM_Any' => '6.55_02',
10638 'ExtUtils::MM_BeOS' => '6.55_02',
10639 'ExtUtils::MM_Cygwin' => '6.55_02',
10640 'ExtUtils::MM_DOS' => '6.5502',
10641 'ExtUtils::MM_Darwin' => '6.55_02',
10642 'ExtUtils::MM_MacOS' => '6.5502',
10643 'ExtUtils::MM_NW5' => '6.55_02',
10644 'ExtUtils::MM_OS2' => '6.55_02',
10645 'ExtUtils::MM_QNX' => '6.55_02',
10646 'ExtUtils::MM_UWIN' => '6.5502',
10647 'ExtUtils::MM_Unix' => '6.55_02',
10648 'ExtUtils::MM_VMS' => '6.55_02',
10649 'ExtUtils::MM_VOS' => '6.55_02',
10650 'ExtUtils::MM_Win32' => '6.55_02',
10651 'ExtUtils::MM_Win95' => '6.55_02',
10652 'ExtUtils::MY' => '6.5502',
10653 'ExtUtils::MakeMaker' => '6.55_02',
10654 'ExtUtils::MakeMaker::Config'=> '6.55_02',
10655 'ExtUtils::Manifest' => '1.57',
10656 'ExtUtils::Miniperl' => undef,
10657 'ExtUtils::Mkbootstrap' => '6.55_02',
10658 'ExtUtils::Mksymlists' => '6.55_02',
10659 'ExtUtils::Packlist' => '1.44',
10660 'ExtUtils::ParseXS' => '2.21',
10661 'ExtUtils::XSSymSet' => '1.1',
10662 'ExtUtils::testlib' => '6.5502',
10663 'Fatal' => '2.06_01',
10664 'Fcntl' => '1.06',
10665 'File::Basename' => '2.78',
10666 'File::CheckTree' => '4.4',
10667 'File::Compare' => '1.1006',
10668 'File::Copy' => '2.16',
10669 'File::DosGlob' => '1.01',
10670 'File::Fetch' => '0.20',
10671 'File::Find' => '1.14',
10672 'File::Glob' => '1.07',
10673 'File::GlobMapper' => '1.000',
10674 'File::Path' => '2.08',
10675 'File::Spec' => '3.30',
10676 'File::Spec::Cygwin' => '3.30',
10677 'File::Spec::Epoc' => '3.30',
10678 'File::Spec::Functions' => '3.30',
10679 'File::Spec::Mac' => '3.30',
10680 'File::Spec::OS2' => '3.30',
10681 'File::Spec::Unix' => '3.30',
10682 'File::Spec::VMS' => '3.30',
10683 'File::Spec::Win32' => '3.30',
10684 'File::Temp' => '0.22',
10685 'File::stat' => '1.02',
10686 'FileCache' => '1.08',
10687 'FileHandle' => '2.02',
10688 'VMS::Filespec' => '1.12',
10689 'Filter::Simple' => '0.84',
10690 'Filter::Util::Call' => '1.08',
10691 'FindBin' => '1.50',
10692 'GDBM_File' => '1.09',
10693 'Getopt::Long' => '2.38',
10694 'Getopt::Std' => '1.06',
10695 'Hash::Util' => '0.07',
10696 'Hash::Util::FieldHash' => '1.04',
10697 'I18N::Collate' => '1.01',
10698 'I18N::LangTags' => '0.35',
10699 'I18N::LangTags::Detect'=> '1.03',
10700 'I18N::LangTags::List' => '0.35',
10701 'I18N::Langinfo' => '0.02',
10702 'IO' => '1.25_02',
10703 'IO::Compress::Adapter::Bzip2'=> '2.021',
10704 'IO::Compress::Adapter::Deflate'=> '2.021',
10705 'IO::Compress::Adapter::Identity'=> '2.021',
10706 'IO::Compress::Base' => '2.021',
10707 'IO::Compress::Base::Common'=> '2.021',
10708 'IO::Compress::Bzip2' => '2.021',
10709 'IO::Compress::Deflate' => '2.021',
10710 'IO::Compress::Gzip' => '2.021',
10711 'IO::Compress::Gzip::Constants'=> '2.021',
10712 'IO::Compress::RawDeflate'=> '2.021',
10713 'IO::Compress::Zip' => '2.021',
10714 'IO::Compress::Zip::Constants'=> '2.021',
10715 'IO::Compress::Zlib::Constants'=> '2.021',
10716 'IO::Compress::Zlib::Extra'=> '2.021',
10717 'IO::Dir' => '1.07',
10718 'IO::File' => '1.14',
10719 'IO::Handle' => '1.28',
10720 'IO::Pipe' => '1.13',
10721 'IO::Poll' => '0.07',
10722 'IO::Seekable' => '1.10',
10723 'IO::Select' => '1.17',
10724 'IO::Socket' => '1.31',
10725 'IO::Socket::INET' => '1.31',
10726 'IO::Socket::UNIX' => '1.23',
10727 'IO::Uncompress::Adapter::Bunzip2'=> '2.021',
10728 'IO::Uncompress::Adapter::Identity'=> '2.021',
10729 'IO::Uncompress::Adapter::Inflate'=> '2.021',
10730 'IO::Uncompress::AnyInflate'=> '2.021',
10731 'IO::Uncompress::AnyUncompress'=> '2.021',
10732 'IO::Uncompress::Base' => '2.021',
10733 'IO::Uncompress::Bunzip2'=> '2.021',
10734 'IO::Uncompress::Gunzip'=> '2.021',
10735 'IO::Uncompress::Inflate'=> '2.021',
10736 'IO::Uncompress::RawInflate'=> '2.021',
10737 'IO::Uncompress::Unzip' => '2.021',
10738 'IO::Zlib' => '1.10',
10739 'IPC::Cmd' => '0.50',
10740 'IPC::Msg' => '2.01',
10741 'IPC::Open2' => '1.03',
10742 'IPC::Open3' => '1.05',
10743 'IPC::Semaphore' => '2.01',
10744 'IPC::SharedMem' => '2.01',
10745 'IPC::SysV' => '2.01',
10746 'List::Util' => '1.21',
10747 'List::Util::PP' => '1.21',
10748 'List::Util::XS' => '1.21',
10749 'Locale::Constants' => '2.07',
10750 'Locale::Country' => '2.07',
10751 'Locale::Currency' => '2.07',
10752 'Locale::Language' => '2.07',
10753 'Locale::Maketext' => '1.13',
10754 'Locale::Maketext::Guts'=> '1.13',
10755 'Locale::Maketext::GutsLoader'=> '1.13',
10756 'Locale::Maketext::Simple'=> '0.21',
10757 'Locale::Script' => '2.07',
10758 'Log::Message' => '0.02',
10759 'Log::Message::Config' => '0.01',
10760 'Log::Message::Handlers'=> undef,
10761 'Log::Message::Item' => undef,
10762 'Log::Message::Simple' => '0.06',
10763 'MIME::Base64' => '3.08',
10764 'MIME::QuotedPrint' => '3.08',
10765 'Math::BigFloat' => '1.60',
10766 'Math::BigFloat::Trace' => '0.01',
10767 'Math::BigInt' => '1.89_01',
10768 'Math::BigInt::Calc' => '0.52',
10769 'Math::BigInt::CalcEmu' => '0.05',
10770 'Math::BigInt::FastCalc'=> '0.19',
10771 'Math::BigInt::Trace' => '0.01',
10772 'Math::BigRat' => '0.24',
10773 'Math::Complex' => '1.56',
10774 'Math::Trig' => '1.2',
10775 'Memoize' => '1.01_03',
10776 'Memoize::AnyDBM_File' => '0.65',
10777 'Memoize::Expire' => '1.00',
10778 'Memoize::ExpireFile' => '1.01',
10779 'Memoize::ExpireTest' => '0.65',
10780 'Memoize::NDBM_File' => '0.65',
10781 'Memoize::SDBM_File' => '0.65',
10782 'Memoize::Storable' => '0.65',
10783 'Module::Build' => '0.35',
10784 'Module::Build::Base' => '0.35',
10785 'Module::Build::Compat' => '0.35',
10786 'Module::Build::Config' => '0.35',
10787 'Module::Build::ConfigData'=> undef,
10788 'Module::Build::Cookbook'=> '0.35',
10789 'Module::Build::Dumper' => '0.35',
10790 'Module::Build::ModuleInfo'=> '0.35',
10791 'Module::Build::Notes' => '0.35',
10792 'Module::Build::PPMMaker'=> '0.35',
10793 'Module::Build::Platform::Amiga'=> '0.35',
10794 'Module::Build::Platform::Default'=> '0.35',
10795 'Module::Build::Platform::EBCDIC'=> '0.35',
10796 'Module::Build::Platform::MPEiX'=> '0.35',
10797 'Module::Build::Platform::MacOS'=> '0.35',
10798 'Module::Build::Platform::RiscOS'=> '0.35',
10799 'Module::Build::Platform::Unix'=> '0.35',
10800 'Module::Build::Platform::VMS'=> '0.35',
10801 'Module::Build::Platform::VOS'=> '0.35',
10802 'Module::Build::Platform::Windows'=> '0.35',
10803 'Module::Build::Platform::aix'=> '0.35',
10804 'Module::Build::Platform::cygwin'=> '0.35',
10805 'Module::Build::Platform::darwin'=> '0.35',
10806 'Module::Build::Platform::os2'=> '0.35',
10807 'Module::Build::PodParser'=> '0.35',
10808 'Module::Build::Version'=> '0.77',
10809 'Module::Build::YAML' => '0.50',
10810 'Module::CoreList' => '2.21',
10811 'Module::Load' => '0.16',
10812 'Module::Load::Conditional'=> '0.30',
10813 'Module::Loaded' => '0.06',
10814 'Module::Pluggable' => '3.9',
10815 'Module::Pluggable::Object'=> '3.9',
10816 'Moped::Msg' => '0.01',
10817 'NDBM_File' => '1.08',
10818 'NEXT' => '0.64',
10819 'Net::Cmd' => '2.29',
10820 'Net::Config' => '1.11',
10821 'Net::Domain' => '2.20',
10822 'Net::FTP' => '2.77',
10823 'Net::FTP::A' => '1.18',
10824 'Net::FTP::E' => '0.01',
10825 'Net::FTP::I' => '1.12',
10826 'Net::FTP::L' => '0.01',
10827 'Net::FTP::dataconn' => '0.11',
10828 'Net::NNTP' => '2.24',
10829 'Net::Netrc' => '2.12',
10830 'Net::POP3' => '2.29',
10831 'Net::Ping' => '2.36',
10832 'Net::SMTP' => '2.31',
10833 'Net::Time' => '2.10',
10834 'Net::hostent' => '1.01',
10835 'Net::netent' => '1.00',
10836 'Net::protoent' => '1.00',
10837 'Net::servent' => '1.01',
10838 'O' => '1.01',
10839 'ODBM_File' => '1.07',
10840 'Object::Accessor' => '0.36',
10841 'Opcode' => '1.15',
10842 'POSIX' => '1.18',
10843 'Package::Constants' => '0.02',
10844 'Params::Check' => '0.26',
10845 'Parse::CPAN::Meta' => '1.40',
10846 'PerlIO' => '1.06',
10847 'PerlIO::encoding' => '0.11',
10848 'PerlIO::scalar' => '0.07',
10849 'PerlIO::via' => '0.09',
10850 'PerlIO::via::QuotedPrint'=> '0.06',
10851 'Pod::Checker' => '1.45',
10852 'Pod::Escapes' => '1.04',
10853 'Pod::Find' => '1.35',
10854 'Pod::Functions' => '1.03',
10855 'Pod::Html' => '1.09',
10856 'Pod::InputObjects' => '1.31',
10857 'Pod::LaTeX' => '0.58',
10858 'Pod::Man' => '2.22',
10859 'Pod::ParseLink' => '1.09',
10860 'Pod::ParseUtils' => '1.36',
10861 'Pod::Parser' => '1.37',
10862 'Pod::Perldoc' => '3.15_01',
10863 'Pod::Perldoc::BaseTo' => undef,
10864 'Pod::Perldoc::GetOptsOO'=> undef,
10865 'Pod::Perldoc::ToChecker'=> undef,
10866 'Pod::Perldoc::ToMan' => undef,
10867 'Pod::Perldoc::ToNroff' => undef,
10868 'Pod::Perldoc::ToPod' => undef,
10869 'Pod::Perldoc::ToRtf' => undef,
10870 'Pod::Perldoc::ToText' => undef,
10871 'Pod::Perldoc::ToTk' => undef,
10872 'Pod::Perldoc::ToXml' => undef,
10873 'Pod::PlainText' => '2.04',
10874 'Pod::Plainer' => '1.01',
10875 'Pod::Select' => '1.36',
10876 'Pod::Simple' => '3.08',
10877 'Pod::Simple::BlackBox' => undef,
10878 'Pod::Simple::Checker' => '2.02',
10879 'Pod::Simple::Debug' => undef,
10880 'Pod::Simple::DumpAsText'=> '2.02',
10881 'Pod::Simple::DumpAsXML'=> '2.02',
10882 'Pod::Simple::HTML' => '3.03',
10883 'Pod::Simple::HTMLBatch'=> '3.02',
10884 'Pod::Simple::HTMLLegacy'=> '5.01',
10885 'Pod::Simple::LinkSection'=> undef,
10886 'Pod::Simple::Methody' => '2.02',
10887 'Pod::Simple::Progress' => '1.01',
10888 'Pod::Simple::PullParser'=> '2.02',
10889 'Pod::Simple::PullParserEndToken'=> undef,
10890 'Pod::Simple::PullParserStartToken'=> undef,
10891 'Pod::Simple::PullParserTextToken'=> undef,
10892 'Pod::Simple::PullParserToken'=> '2.02',
10893 'Pod::Simple::RTF' => '2.02',
10894 'Pod::Simple::Search' => '3.04',
10895 'Pod::Simple::SimpleTree'=> '2.02',
10896 'Pod::Simple::Text' => '2.02',
10897 'Pod::Simple::TextContent'=> '2.02',
10898 'Pod::Simple::TiedOutFH'=> undef,
10899 'Pod::Simple::Transcode'=> undef,
10900 'Pod::Simple::TranscodeDumb'=> '2.02',
10901 'Pod::Simple::TranscodeSmart'=> undef,
10902 'Pod::Simple::XHTML' => '3.04',
10903 'Pod::Simple::XMLOutStream'=> '2.02',
10904 'Pod::Text' => '3.13',
10905 'Pod::Text::Color' => '2.05',
10906 'Pod::Text::Overstrike' => '2.03',
10907 'Pod::Text::Termcap' => '2.05',
10908 'Pod::Usage' => '1.36',
10909 'SDBM_File' => '1.06',
10910 'Safe' => '2.19',
10911 'Scalar::Util' => '1.21',
10912 'Scalar::Util::PP' => '1.21',
10913 'Search::Dict' => '1.02',
10914 'SelectSaver' => '1.02',
10915 'SelfLoader' => '1.17',
10916 'Shell' => '0.72_01',
10917 'Socket' => '1.85',
10918 'Storable' => '2.22',
10919 'Switch' => '2.15',
10920 'Symbol' => '1.07',
10921 'Sys::Hostname' => '1.11',
10922 'Sys::Syslog' => '0.27',
10923 'Sys::Syslog::win32::Win32'=> undef,
10924 'TAP::Base' => '3.17',
10925 'TAP::Formatter::Base' => '3.17',
10926 'TAP::Formatter::Color' => '3.17',
10927 'TAP::Formatter::Console'=> '3.17',
10928 'TAP::Formatter::Console::ParallelSession'=> '3.17',
10929 'TAP::Formatter::Console::Session'=> '3.17',
10930 'TAP::Formatter::File' => '3.17',
10931 'TAP::Formatter::File::Session'=> '3.17',
10932 'TAP::Formatter::Session'=> '3.17',
10933 'TAP::Harness' => '3.17',
10934 'TAP::Object' => '3.17',
10935 'TAP::Parser' => '3.17',
10936 'TAP::Parser::Aggregator'=> '3.17',
10937 'TAP::Parser::Grammar' => '3.17',
10938 'TAP::Parser::Iterator' => '3.17',
10939 'TAP::Parser::Iterator::Array'=> '3.17',
10940 'TAP::Parser::Iterator::Process'=> '3.17',
10941 'TAP::Parser::Iterator::Stream'=> '3.17',
10942 'TAP::Parser::IteratorFactory'=> '3.17',
10943 'TAP::Parser::Multiplexer'=> '3.17',
10944 'TAP::Parser::Result' => '3.17',
10945 'TAP::Parser::Result::Bailout'=> '3.17',
10946 'TAP::Parser::Result::Comment'=> '3.17',
10947 'TAP::Parser::Result::Plan'=> '3.17',
10948 'TAP::Parser::Result::Pragma'=> '3.17',
10949 'TAP::Parser::Result::Test'=> '3.17',
10950 'TAP::Parser::Result::Unknown'=> '3.17',
10951 'TAP::Parser::Result::Version'=> '3.17',
10952 'TAP::Parser::Result::YAML'=> '3.17',
10953 'TAP::Parser::ResultFactory'=> '3.17',
10954 'TAP::Parser::Scheduler'=> '3.17',
10955 'TAP::Parser::Scheduler::Job'=> '3.17',
10956 'TAP::Parser::Scheduler::Spinner'=> '3.17',
10957 'TAP::Parser::Source' => '3.17',
10958 'TAP::Parser::Source::Perl'=> '3.17',
10959 'TAP::Parser::Utils' => '3.17',
10960 'TAP::Parser::YAMLish::Reader'=> '3.17',
10961 'TAP::Parser::YAMLish::Writer'=> '3.17',
10962 'Term::ANSIColor' => '2.02',
10963 'Term::Cap' => '1.12',
10964 'Term::Complete' => '1.402',
10965 'Term::ReadLine' => '1.05',
10966 'Term::UI' => '0.20',
10967 'Term::UI::History' => undef,
10968 'Test' => '1.25_02',
10969 'Test::Builder' => '0.94',
10970 'Test::Builder::Module' => '0.94',
10971 'Test::Builder::Tester' => '1.18',
10972 'Test::Builder::Tester::Color'=> '1.18',
10973 'Test::Harness' => '3.17',
10974 'Test::More' => '0.94',
10975 'Test::Simple' => '0.94',
10976 'Text::Abbrev' => '1.01',
10977 'Text::Balanced' => '2.02',
10978 'Text::ParseWords' => '3.27',
10979 'Text::Soundex' => '3.03_01',
10980 'Text::Tabs' => '2009.0305',
10981 'Text::Wrap' => '2009.0305',
10982 'Thread' => '3.02',
10983 'Thread::Queue' => '2.11',
10984 'Thread::Semaphore' => '2.09',
10985 'Tie::Array' => '1.03',
10986 'Tie::File' => '0.97_02',
10987 'Tie::Handle' => '4.2',
10988 'Tie::Hash' => '1.03',
10989 'Tie::Hash::NamedCapture'=> '0.06',
10990 'Tie::Memoize' => '1.1',
10991 'Tie::RefHash' => '1.38',
10992 'Tie::Scalar' => '1.01',
10993 'Tie::StdHandle' => '4.2',
10994 'Tie::SubstrHash' => '1.00',
10995 'Time::HiRes' => '1.9719',
10996 'Time::Local' => '1.1901_01',
10997 'Time::Piece' => '1.15',
10998 'Time::Piece::Seconds' => undef,
10999 'Time::Seconds' => undef,
11000 'Time::gmtime' => '1.03',
11001 'Time::localtime' => '1.02',
11002 'Time::tm' => '1.00',
11003 'UNIVERSAL' => '1.05',
11004 'Unicode' => '5.1.0',
11005 'Unicode::Collate' => '0.52_01',
11006 'Unicode::Normalize' => '1.03',
11007 'Unicode::UCD' => '0.27',
11008 'User::grent' => '1.01',
11009 'User::pwent' => '1.00',
11010 'VMS::DCLsym' => '1.03',
11011 'VMS::Stdio' => '2.4',
11012 'Win32' => '0.39',
11013 'Win32API::File' => '0.1101',
11014 'Win32API::File::ExtUtils::Myconst2perl'=> '1',
11015 'Win32CORE' => '0.02',
11016 'XS::APItest' => '0.16',
11017 'XS::Typemap' => '0.03',
11018 'XSLoader' => '0.10',
11019 'XSLoader::XSLoader' => '0.10',
11020 'attributes' => '0.12',
11021 'autodie' => '2.06_01',
11022 'autodie::exception' => '2.06_01',
11023 'autodie::exception::system'=> '2.06_01',
11024 'autodie::hints' => '2.06_01',
11025 'autouse' => '1.06',
11026 'base' => '2.14',
11027 'bigint' => '0.23',
11028 'bignum' => '0.23',
11029 'bigrat' => '0.23',
11030 'blib' => '1.04',
11031 'bytes' => '1.03',
11032 'charnames' => '1.07',
11033 'constant' => '1.19',
11034 'deprecate' => '0.01',
11035 'diagnostics' => '1.17',
11036 'encoding' => '2.6_01',
11037 'encoding::warnings' => '0.11',
11038 'feature' => '1.13',
11039 'fields' => '2.14',
11040 'filetest' => '1.02',
11041 'if' => '0.05',
11042 'integer' => '1.00',
11043 'less' => '0.02',
11044 'lib' => '0.62',
11045 'locale' => '1.00',
11046 'mro' => '1.02',
11047 'open' => '1.07',
11048 'ops' => '1.02',
11049 'overload' => '1.09',
11050 'overload::numbers' => undef,
11051 'overloading' => '0.01',
11052 'parent' => '0.223',
11053 're' => '0.10',
11054 'sigtrap' => '1.04',
11055 'sort' => '2.01',
11056 'strict' => '1.04',
11057 'subs' => '1.00',
11058 'threads' => '1.74',
11059 'threads::shared' => '1.32',
11060 'utf8' => '1.07',
11061 'vars' => '1.01',
11062 'version' => '0.77',
11063 'vmsish' => '1.02',
11064 'warnings' => '1.07',
11065 'warnings::register' => '1.01',
11068 5.011002 => {
11069 'AnyDBM_File' => '1.00',
11070 'App::Prove' => '3.17',
11071 'App::Prove::State' => '3.17',
11072 'App::Prove::State::Result'=> '3.17',
11073 'App::Prove::State::Result::Test'=> '3.17',
11074 'Archive::Extract' => '0.34',
11075 'Archive::Tar' => '1.54',
11076 'Archive::Tar::Constant'=> '0.02',
11077 'Archive::Tar::File' => '0.02',
11078 'Attribute::Handlers' => '0.87',
11079 'AutoLoader' => '5.70',
11080 'AutoSplit' => '1.06',
11081 'B' => '1.23',
11082 'B::Concise' => '0.78',
11083 'B::Debug' => '1.11',
11084 'B::Deparse' => '0.93',
11085 'B::Lint' => '1.11_01',
11086 'B::Lint::Debug' => '0.01',
11087 'B::Showlex' => '1.02',
11088 'B::Terse' => '1.05',
11089 'B::Xref' => '1.02',
11090 'Benchmark' => '1.11',
11091 'CGI' => '3.48',
11092 'CGI::Apache' => '1.01',
11093 'CGI::Carp' => '3.45',
11094 'CGI::Cookie' => '1.29',
11095 'CGI::Fast' => '1.07',
11096 'CGI::Pretty' => '3.46',
11097 'CGI::Push' => '1.04',
11098 'CGI::Switch' => '1.01',
11099 'CGI::Util' => '3.48',
11100 'CPAN' => '1.94_51',
11101 'CPAN::Author' => '5.5',
11102 'CPAN::Bundle' => '5.5',
11103 'CPAN::CacheMgr' => '5.5',
11104 'CPAN::Complete' => '5.5',
11105 'CPAN::Debug' => '5.5',
11106 'CPAN::DeferredCode' => '5.50',
11107 'CPAN::Distribution' => '1.94',
11108 'CPAN::Distroprefs' => '6',
11109 'CPAN::Distrostatus' => '5.5',
11110 'CPAN::Exception::RecursiveDependency'=> '5.5',
11111 'CPAN::Exception::blocked_urllist'=> '1.0',
11112 'CPAN::Exception::yaml_not_installed'=> '5.5',
11113 'CPAN::FTP' => '5.5002',
11114 'CPAN::FTP::netrc' => '1.00',
11115 'CPAN::FirstTime' => '5.53',
11116 'CPAN::HandleConfig' => '5.5',
11117 'CPAN::Index' => '1.94',
11118 'CPAN::InfoObj' => '5.5',
11119 'CPAN::Kwalify' => '5.50',
11120 'CPAN::LWP::UserAgent' => '1.94',
11121 'CPAN::Module' => '5.5',
11122 'CPAN::Nox' => '5.50',
11123 'CPAN::Prompt' => '5.5',
11124 'CPAN::Queue' => '5.5',
11125 'CPAN::Shell' => '5.5',
11126 'CPAN::Tarzip' => '5.501',
11127 'CPAN::URL' => '5.5',
11128 'CPAN::Version' => '5.5',
11129 'CPANPLUS' => '0.89_09',
11130 'CPANPLUS::Backend' => undef,
11131 'CPANPLUS::Backend::RV' => undef,
11132 'CPANPLUS::Config' => undef,
11133 'CPANPLUS::Configure' => undef,
11134 'CPANPLUS::Configure::Setup'=> undef,
11135 'CPANPLUS::Dist' => undef,
11136 'CPANPLUS::Dist::Autobundle'=> undef,
11137 'CPANPLUS::Dist::Base' => undef,
11138 'CPANPLUS::Dist::Build' => '0.44',
11139 'CPANPLUS::Dist::Build::Constants'=> '0.44',
11140 'CPANPLUS::Dist::MM' => undef,
11141 'CPANPLUS::Dist::Sample'=> undef,
11142 'CPANPLUS::Error' => undef,
11143 'CPANPLUS::Internals' => '0.89_09',
11144 'CPANPLUS::Internals::Constants'=> undef,
11145 'CPANPLUS::Internals::Constants::Report'=> undef,
11146 'CPANPLUS::Internals::Extract'=> undef,
11147 'CPANPLUS::Internals::Fetch'=> undef,
11148 'CPANPLUS::Internals::Report'=> undef,
11149 'CPANPLUS::Internals::Search'=> undef,
11150 'CPANPLUS::Internals::Source'=> undef,
11151 'CPANPLUS::Internals::Source::Memory'=> undef,
11152 'CPANPLUS::Internals::Source::SQLite'=> undef,
11153 'CPANPLUS::Internals::Source::SQLite::Tie'=> undef,
11154 'CPANPLUS::Internals::Utils'=> undef,
11155 'CPANPLUS::Internals::Utils::Autoflush'=> undef,
11156 'CPANPLUS::Module' => undef,
11157 'CPANPLUS::Module::Author'=> undef,
11158 'CPANPLUS::Module::Author::Fake'=> undef,
11159 'CPANPLUS::Module::Checksums'=> undef,
11160 'CPANPLUS::Module::Fake'=> undef,
11161 'CPANPLUS::Module::Signature'=> undef,
11162 'CPANPLUS::Selfupdate' => undef,
11163 'CPANPLUS::Shell' => undef,
11164 'CPANPLUS::Shell::Classic'=> '0.0562',
11165 'CPANPLUS::Shell::Default'=> '0.89_09',
11166 'CPANPLUS::Shell::Default::Plugins::CustomSource'=> undef,
11167 'CPANPLUS::Shell::Default::Plugins::Remote'=> undef,
11168 'CPANPLUS::Shell::Default::Plugins::Source'=> undef,
11169 'Carp' => '1.14',
11170 'Carp::Heavy' => '1.14',
11171 'Class::ISA' => '0.36',
11172 'Class::Struct' => '0.63',
11173 'Compress::Raw::Bzip2' => '2.021',
11174 'Compress::Raw::Zlib' => '2.021',
11175 'Compress::Zlib' => '2.022',
11176 'Config' => undef,
11177 'Config::Extensions' => '0.01',
11178 'Cwd' => '3.3002',
11179 'DB' => '1.02',
11180 'DBM_Filter' => '0.03',
11181 'DBM_Filter::compress' => '0.02',
11182 'DBM_Filter::encode' => '0.02',
11183 'DBM_Filter::int32' => '0.02',
11184 'DBM_Filter::null' => '0.02',
11185 'DBM_Filter::utf8' => '0.02',
11186 'DB_File' => '1.820',
11187 'Data::Dumper' => '2.125',
11188 'Devel::DProf' => '20080331.00',
11189 'Devel::DProf::dprof::V'=> undef,
11190 'Devel::InnerPackage' => '0.3',
11191 'Devel::PPPort' => '3.19',
11192 'Devel::Peek' => '1.04',
11193 'Devel::SelfStubber' => '1.03',
11194 'Digest' => '1.16',
11195 'Digest::MD5' => '2.39',
11196 'Digest::SHA' => '5.47',
11197 'Digest::base' => '1.16',
11198 'Digest::file' => '1.16',
11199 'DirHandle' => '1.03',
11200 'Dumpvalue' => '1.13',
11201 'DynaLoader' => '1.10',
11202 'Encode' => '2.38',
11203 'Encode::Alias' => '2.12',
11204 'Encode::Byte' => '2.04',
11205 'Encode::CJKConstants' => '2.02',
11206 'Encode::CN' => '2.03',
11207 'Encode::CN::HZ' => '2.05',
11208 'Encode::Config' => '2.05',
11209 'Encode::EBCDIC' => '2.02',
11210 'Encode::Encoder' => '2.01',
11211 'Encode::Encoding' => '2.05',
11212 'Encode::GSM0338' => '2.01',
11213 'Encode::Guess' => '2.03',
11214 'Encode::JP' => '2.04',
11215 'Encode::JP::H2Z' => '2.02',
11216 'Encode::JP::JIS7' => '2.04',
11217 'Encode::KR' => '2.03',
11218 'Encode::KR::2022_KR' => '2.02',
11219 'Encode::MIME::Header' => '2.11',
11220 'Encode::MIME::Header::ISO_2022_JP'=> '1.03',
11221 'Encode::MIME::Name' => '1.01',
11222 'Encode::Symbol' => '2.02',
11223 'Encode::TW' => '2.03',
11224 'Encode::Unicode' => '2.07',
11225 'Encode::Unicode::UTF7' => '2.04',
11226 'English' => '1.04',
11227 'Env' => '1.01',
11228 'Errno' => '1.11',
11229 'Exporter' => '5.64_01',
11230 'Exporter::Heavy' => '5.64_01',
11231 'ExtUtils::CBuilder' => '0.27',
11232 'ExtUtils::CBuilder::Base'=> '0.27',
11233 'ExtUtils::CBuilder::Platform::Unix'=> '0.27',
11234 'ExtUtils::CBuilder::Platform::VMS'=> '0.27',
11235 'ExtUtils::CBuilder::Platform::Windows'=> '0.27',
11236 'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.27',
11237 'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.27',
11238 'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.27',
11239 'ExtUtils::CBuilder::Platform::aix'=> '0.27',
11240 'ExtUtils::CBuilder::Platform::cygwin'=> '0.27',
11241 'ExtUtils::CBuilder::Platform::darwin'=> '0.27',
11242 'ExtUtils::CBuilder::Platform::dec_osf'=> '0.27',
11243 'ExtUtils::CBuilder::Platform::os2'=> '0.27',
11244 'ExtUtils::Command' => '1.16',
11245 'ExtUtils::Command::MM' => '6.55_02',
11246 'ExtUtils::Constant' => '0.22',
11247 'ExtUtils::Constant::Base'=> '0.04',
11248 'ExtUtils::Constant::ProxySubs'=> '0.06',
11249 'ExtUtils::Constant::Utils'=> '0.02',
11250 'ExtUtils::Constant::XS'=> '0.03',
11251 'ExtUtils::Embed' => '1.28',
11252 'ExtUtils::Install' => '1.55',
11253 'ExtUtils::Installed' => '1.999_001',
11254 'ExtUtils::Liblist' => '6.55_02',
11255 'ExtUtils::Liblist::Kid'=> '6.5502',
11256 'ExtUtils::MM' => '6.55_02',
11257 'ExtUtils::MM_AIX' => '6.55_02',
11258 'ExtUtils::MM_Any' => '6.55_02',
11259 'ExtUtils::MM_BeOS' => '6.55_02',
11260 'ExtUtils::MM_Cygwin' => '6.55_02',
11261 'ExtUtils::MM_DOS' => '6.5502',
11262 'ExtUtils::MM_Darwin' => '6.55_02',
11263 'ExtUtils::MM_MacOS' => '6.5502',
11264 'ExtUtils::MM_NW5' => '6.55_02',
11265 'ExtUtils::MM_OS2' => '6.55_02',
11266 'ExtUtils::MM_QNX' => '6.55_02',
11267 'ExtUtils::MM_UWIN' => '6.5502',
11268 'ExtUtils::MM_Unix' => '6.55_02',
11269 'ExtUtils::MM_VMS' => '6.55_02',
11270 'ExtUtils::MM_VOS' => '6.55_02',
11271 'ExtUtils::MM_Win32' => '6.55_02',
11272 'ExtUtils::MM_Win95' => '6.55_02',
11273 'ExtUtils::MY' => '6.5502',
11274 'ExtUtils::MakeMaker' => '6.55_02',
11275 'ExtUtils::MakeMaker::Config'=> '6.55_02',
11276 'ExtUtils::Manifest' => '1.57',
11277 'ExtUtils::Miniperl' => undef,
11278 'ExtUtils::Mkbootstrap' => '6.55_02',
11279 'ExtUtils::Mksymlists' => '6.55_02',
11280 'ExtUtils::Packlist' => '1.44',
11281 'ExtUtils::ParseXS' => '2.21',
11282 'ExtUtils::XSSymSet' => '1.1',
11283 'ExtUtils::testlib' => '6.5502',
11284 'Fatal' => '2.06_01',
11285 'Fcntl' => '1.06',
11286 'File::Basename' => '2.78',
11287 'File::CheckTree' => '4.4',
11288 'File::Compare' => '1.1006',
11289 'File::Copy' => '2.16',
11290 'File::DosGlob' => '1.01',
11291 'File::Fetch' => '0.22',
11292 'File::Find' => '1.14',
11293 'File::Glob' => '1.07',
11294 'File::GlobMapper' => '1.000',
11295 'File::Path' => '2.08',
11296 'File::Spec' => '3.30',
11297 'File::Spec::Cygwin' => '3.30',
11298 'File::Spec::Epoc' => '3.30',
11299 'File::Spec::Functions' => '3.30',
11300 'File::Spec::Mac' => '3.30',
11301 'File::Spec::OS2' => '3.30',
11302 'File::Spec::Unix' => '3.30',
11303 'File::Spec::VMS' => '3.30',
11304 'File::Spec::Win32' => '3.30',
11305 'File::Temp' => '0.22',
11306 'File::stat' => '1.02',
11307 'FileCache' => '1.08',
11308 'FileHandle' => '2.02',
11309 'VMS::Filespec' => '1.12',
11310 'Filter::Simple' => '0.84',
11311 'Filter::Util::Call' => '1.08',
11312 'FindBin' => '1.50',
11313 'GDBM_File' => '1.09',
11314 'Getopt::Long' => '2.38',
11315 'Getopt::Std' => '1.06',
11316 'Hash::Util' => '0.07',
11317 'Hash::Util::FieldHash' => '1.04',
11318 'I18N::Collate' => '1.01',
11319 'I18N::LangTags' => '0.35',
11320 'I18N::LangTags::Detect'=> '1.04',
11321 'I18N::LangTags::List' => '0.35',
11322 'I18N::Langinfo' => '0.03',
11323 'IO' => '1.25_02',
11324 'IO::Compress::Adapter::Bzip2'=> '2.022',
11325 'IO::Compress::Adapter::Deflate'=> '2.022',
11326 'IO::Compress::Adapter::Identity'=> '2.022',
11327 'IO::Compress::Base' => '2.022',
11328 'IO::Compress::Base::Common'=> '2.022',
11329 'IO::Compress::Bzip2' => '2.022',
11330 'IO::Compress::Deflate' => '2.022',
11331 'IO::Compress::Gzip' => '2.022',
11332 'IO::Compress::Gzip::Constants'=> '2.022',
11333 'IO::Compress::RawDeflate'=> '2.022',
11334 'IO::Compress::Zip' => '2.022',
11335 'IO::Compress::Zip::Constants'=> '2.022',
11336 'IO::Compress::Zlib::Constants'=> '2.022',
11337 'IO::Compress::Zlib::Extra'=> '2.022',
11338 'IO::Dir' => '1.07',
11339 'IO::File' => '1.14',
11340 'IO::Handle' => '1.28',
11341 'IO::Pipe' => '1.13',
11342 'IO::Poll' => '0.07',
11343 'IO::Seekable' => '1.10',
11344 'IO::Select' => '1.17',
11345 'IO::Socket' => '1.31',
11346 'IO::Socket::INET' => '1.31',
11347 'IO::Socket::UNIX' => '1.23',
11348 'IO::Uncompress::Adapter::Bunzip2'=> '2.022',
11349 'IO::Uncompress::Adapter::Identity'=> '2.022',
11350 'IO::Uncompress::Adapter::Inflate'=> '2.022',
11351 'IO::Uncompress::AnyInflate'=> '2.022',
11352 'IO::Uncompress::AnyUncompress'=> '2.022',
11353 'IO::Uncompress::Base' => '2.022',
11354 'IO::Uncompress::Bunzip2'=> '2.022',
11355 'IO::Uncompress::Gunzip'=> '2.022',
11356 'IO::Uncompress::Inflate'=> '2.022',
11357 'IO::Uncompress::RawInflate'=> '2.022',
11358 'IO::Uncompress::Unzip' => '2.022',
11359 'IO::Zlib' => '1.10',
11360 'IPC::Cmd' => '0.54',
11361 'IPC::Msg' => '2.01',
11362 'IPC::Open2' => '1.03',
11363 'IPC::Open3' => '1.05',
11364 'IPC::Semaphore' => '2.01',
11365 'IPC::SharedMem' => '2.01',
11366 'IPC::SysV' => '2.01',
11367 'List::Util' => '1.22',
11368 'List::Util::PP' => '1.22',
11369 'List::Util::XS' => '1.22',
11370 'Locale::Constants' => '2.07',
11371 'Locale::Country' => '2.07',
11372 'Locale::Currency' => '2.07',
11373 'Locale::Language' => '2.07',
11374 'Locale::Maketext' => '1.14',
11375 'Locale::Maketext::Guts'=> '1.13',
11376 'Locale::Maketext::GutsLoader'=> '1.13',
11377 'Locale::Maketext::Simple'=> '0.21',
11378 'Locale::Script' => '2.07',
11379 'Log::Message' => '0.02',
11380 'Log::Message::Config' => '0.01',
11381 'Log::Message::Handlers'=> undef,
11382 'Log::Message::Item' => undef,
11383 'Log::Message::Simple' => '0.06',
11384 'MIME::Base64' => '3.08',
11385 'MIME::QuotedPrint' => '3.08',
11386 'Math::BigFloat' => '1.60',
11387 'Math::BigFloat::Trace' => '0.01',
11388 'Math::BigInt' => '1.89_01',
11389 'Math::BigInt::Calc' => '0.52',
11390 'Math::BigInt::CalcEmu' => '0.05',
11391 'Math::BigInt::FastCalc'=> '0.19',
11392 'Math::BigInt::Trace' => '0.01',
11393 'Math::BigRat' => '0.24',
11394 'Math::Complex' => '1.56',
11395 'Math::Trig' => '1.2',
11396 'Memoize' => '1.01_03',
11397 'Memoize::AnyDBM_File' => '0.65',
11398 'Memoize::Expire' => '1.00',
11399 'Memoize::ExpireFile' => '1.01',
11400 'Memoize::ExpireTest' => '0.65',
11401 'Memoize::NDBM_File' => '0.65',
11402 'Memoize::SDBM_File' => '0.65',
11403 'Memoize::Storable' => '0.65',
11404 'Module::Build' => '0.35_09',
11405 'Module::Build::Base' => '0.35_09',
11406 'Module::Build::Compat' => '0.35_09',
11407 'Module::Build::Config' => '0.35_09',
11408 'Module::Build::ConfigData'=> undef,
11409 'Module::Build::Cookbook'=> '0.35_09',
11410 'Module::Build::Dumper' => '0.35_09',
11411 'Module::Build::ModuleInfo'=> '0.35_09',
11412 'Module::Build::Notes' => '0.35_09',
11413 'Module::Build::PPMMaker'=> '0.35_09',
11414 'Module::Build::Platform::Amiga'=> '0.35_09',
11415 'Module::Build::Platform::Default'=> '0.35_09',
11416 'Module::Build::Platform::EBCDIC'=> '0.35_09',
11417 'Module::Build::Platform::MPEiX'=> '0.35_09',
11418 'Module::Build::Platform::MacOS'=> '0.35_09',
11419 'Module::Build::Platform::RiscOS'=> '0.35_09',
11420 'Module::Build::Platform::Unix'=> '0.35_09',
11421 'Module::Build::Platform::VMS'=> '0.35_09',
11422 'Module::Build::Platform::VOS'=> '0.35_09',
11423 'Module::Build::Platform::Windows'=> '0.35_09',
11424 'Module::Build::Platform::aix'=> '0.35_09',
11425 'Module::Build::Platform::cygwin'=> '0.35_09',
11426 'Module::Build::Platform::darwin'=> '0.35_09',
11427 'Module::Build::Platform::os2'=> '0.35_09',
11428 'Module::Build::PodParser'=> '0.35_09',
11429 'Module::Build::Version'=> '0.77',
11430 'Module::Build::YAML' => '1.40',
11431 'Module::CoreList' => '2.23',
11432 'Module::Load' => '0.16',
11433 'Module::Load::Conditional'=> '0.34',
11434 'Module::Loaded' => '0.06',
11435 'Module::Pluggable' => '3.9',
11436 'Module::Pluggable::Object'=> '3.9',
11437 'Moped::Msg' => '0.01',
11438 'NDBM_File' => '1.08',
11439 'NEXT' => '0.64',
11440 'Net::Cmd' => '2.29',
11441 'Net::Config' => '1.11',
11442 'Net::Domain' => '2.20',
11443 'Net::FTP' => '2.77',
11444 'Net::FTP::A' => '1.18',
11445 'Net::FTP::E' => '0.01',
11446 'Net::FTP::I' => '1.12',
11447 'Net::FTP::L' => '0.01',
11448 'Net::FTP::dataconn' => '0.11',
11449 'Net::NNTP' => '2.24',
11450 'Net::Netrc' => '2.12',
11451 'Net::POP3' => '2.29',
11452 'Net::Ping' => '2.36',
11453 'Net::SMTP' => '2.31',
11454 'Net::Time' => '2.10',
11455 'Net::hostent' => '1.01',
11456 'Net::netent' => '1.00',
11457 'Net::protoent' => '1.00',
11458 'Net::servent' => '1.01',
11459 'O' => '1.01',
11460 'ODBM_File' => '1.07',
11461 'Object::Accessor' => '0.36',
11462 'Opcode' => '1.15',
11463 'POSIX' => '1.18',
11464 'Package::Constants' => '0.02',
11465 'Params::Check' => '0.26',
11466 'Parse::CPAN::Meta' => '1.40',
11467 'PerlIO' => '1.06',
11468 'PerlIO::encoding' => '0.11',
11469 'PerlIO::scalar' => '0.07',
11470 'PerlIO::via' => '0.09',
11471 'PerlIO::via::QuotedPrint'=> '0.06',
11472 'Pod::Checker' => '1.45',
11473 'Pod::Escapes' => '1.04',
11474 'Pod::Find' => '1.35',
11475 'Pod::Functions' => '1.03',
11476 'Pod::Html' => '1.09',
11477 'Pod::InputObjects' => '1.31',
11478 'Pod::LaTeX' => '0.58',
11479 'Pod::Man' => '2.22',
11480 'Pod::ParseLink' => '1.09',
11481 'Pod::ParseUtils' => '1.36',
11482 'Pod::Parser' => '1.37',
11483 'Pod::Perldoc' => '3.15_01',
11484 'Pod::Perldoc::BaseTo' => undef,
11485 'Pod::Perldoc::GetOptsOO'=> undef,
11486 'Pod::Perldoc::ToChecker'=> undef,
11487 'Pod::Perldoc::ToMan' => undef,
11488 'Pod::Perldoc::ToNroff' => undef,
11489 'Pod::Perldoc::ToPod' => undef,
11490 'Pod::Perldoc::ToRtf' => undef,
11491 'Pod::Perldoc::ToText' => undef,
11492 'Pod::Perldoc::ToTk' => undef,
11493 'Pod::Perldoc::ToXml' => undef,
11494 'Pod::PlainText' => '2.04',
11495 'Pod::Plainer' => '1.01',
11496 'Pod::Select' => '1.36',
11497 'Pod::Simple' => '3.10',
11498 'Pod::Simple::BlackBox' => undef,
11499 'Pod::Simple::Checker' => '2.02',
11500 'Pod::Simple::Debug' => undef,
11501 'Pod::Simple::DumpAsText'=> '2.02',
11502 'Pod::Simple::DumpAsXML'=> '2.02',
11503 'Pod::Simple::HTML' => '3.03',
11504 'Pod::Simple::HTMLBatch'=> '3.02',
11505 'Pod::Simple::HTMLLegacy'=> '5.01',
11506 'Pod::Simple::LinkSection'=> undef,
11507 'Pod::Simple::Methody' => '2.02',
11508 'Pod::Simple::Progress' => '1.01',
11509 'Pod::Simple::PullParser'=> '2.02',
11510 'Pod::Simple::PullParserEndToken'=> undef,
11511 'Pod::Simple::PullParserStartToken'=> undef,
11512 'Pod::Simple::PullParserTextToken'=> undef,
11513 'Pod::Simple::PullParserToken'=> '2.02',
11514 'Pod::Simple::RTF' => '2.02',
11515 'Pod::Simple::Search' => '3.04',
11516 'Pod::Simple::SimpleTree'=> '2.02',
11517 'Pod::Simple::Text' => '2.02',
11518 'Pod::Simple::TextContent'=> '2.02',
11519 'Pod::Simple::TiedOutFH'=> undef,
11520 'Pod::Simple::Transcode'=> undef,
11521 'Pod::Simple::TranscodeDumb'=> '2.02',
11522 'Pod::Simple::TranscodeSmart'=> undef,
11523 'Pod::Simple::XHTML' => '3.10',
11524 'Pod::Simple::XMLOutStream'=> '2.02',
11525 'Pod::Text' => '3.13',
11526 'Pod::Text::Color' => '2.05',
11527 'Pod::Text::Overstrike' => '2.03',
11528 'Pod::Text::Termcap' => '2.05',
11529 'Pod::Usage' => '1.36',
11530 'SDBM_File' => '1.06',
11531 'Safe' => '2.19',
11532 'Scalar::Util' => '1.22',
11533 'Scalar::Util::PP' => '1.22',
11534 'Search::Dict' => '1.02',
11535 'SelectSaver' => '1.02',
11536 'SelfLoader' => '1.17',
11537 'Shell' => '0.72_01',
11538 'Simple' => '0.01',
11539 'Socket' => '1.85',
11540 'Storable' => '2.22',
11541 'Switch' => '2.16',
11542 'Symbol' => '1.07',
11543 'Sys::Hostname' => '1.11',
11544 'Sys::Syslog' => '0.27',
11545 'Sys::Syslog::win32::Win32'=> undef,
11546 'TAP::Base' => '3.17',
11547 'TAP::Formatter::Base' => '3.17',
11548 'TAP::Formatter::Color' => '3.17',
11549 'TAP::Formatter::Console'=> '3.17',
11550 'TAP::Formatter::Console::ParallelSession'=> '3.17',
11551 'TAP::Formatter::Console::Session'=> '3.17',
11552 'TAP::Formatter::File' => '3.17',
11553 'TAP::Formatter::File::Session'=> '3.17',
11554 'TAP::Formatter::Session'=> '3.17',
11555 'TAP::Harness' => '3.17',
11556 'TAP::Object' => '3.17',
11557 'TAP::Parser' => '3.17',
11558 'TAP::Parser::Aggregator'=> '3.17',
11559 'TAP::Parser::Grammar' => '3.17',
11560 'TAP::Parser::Iterator' => '3.17',
11561 'TAP::Parser::Iterator::Array'=> '3.17',
11562 'TAP::Parser::Iterator::Process'=> '3.17',
11563 'TAP::Parser::Iterator::Stream'=> '3.17',
11564 'TAP::Parser::IteratorFactory'=> '3.17',
11565 'TAP::Parser::Multiplexer'=> '3.17',
11566 'TAP::Parser::Result' => '3.17',
11567 'TAP::Parser::Result::Bailout'=> '3.17',
11568 'TAP::Parser::Result::Comment'=> '3.17',
11569 'TAP::Parser::Result::Plan'=> '3.17',
11570 'TAP::Parser::Result::Pragma'=> '3.17',
11571 'TAP::Parser::Result::Test'=> '3.17',
11572 'TAP::Parser::Result::Unknown'=> '3.17',
11573 'TAP::Parser::Result::Version'=> '3.17',
11574 'TAP::Parser::Result::YAML'=> '3.17',
11575 'TAP::Parser::ResultFactory'=> '3.17',
11576 'TAP::Parser::Scheduler'=> '3.17',
11577 'TAP::Parser::Scheduler::Job'=> '3.17',
11578 'TAP::Parser::Scheduler::Spinner'=> '3.17',
11579 'TAP::Parser::Source' => '3.17',
11580 'TAP::Parser::Source::Perl'=> '3.17',
11581 'TAP::Parser::Utils' => '3.17',
11582 'TAP::Parser::YAMLish::Reader'=> '3.17',
11583 'TAP::Parser::YAMLish::Writer'=> '3.17',
11584 'Term::ANSIColor' => '2.02',
11585 'Term::Cap' => '1.12',
11586 'Term::Complete' => '1.402',
11587 'Term::ReadLine' => '1.05',
11588 'Term::UI' => '0.20',
11589 'Term::UI::History' => undef,
11590 'Test' => '1.25_02',
11591 'Test::Builder' => '0.94',
11592 'Test::Builder::Module' => '0.94',
11593 'Test::Builder::Tester' => '1.18',
11594 'Test::Builder::Tester::Color'=> '1.18',
11595 'Test::Harness' => '3.17',
11596 'Test::More' => '0.94',
11597 'Test::Simple' => '0.94',
11598 'Text::Abbrev' => '1.01',
11599 'Text::Balanced' => '2.02',
11600 'Text::ParseWords' => '3.27',
11601 'Text::Soundex' => '3.03_01',
11602 'Text::Tabs' => '2009.0305',
11603 'Text::Wrap' => '2009.0305',
11604 'Thread' => '3.02',
11605 'Thread::Queue' => '2.11',
11606 'Thread::Semaphore' => '2.09',
11607 'Tie::Array' => '1.03',
11608 'Tie::File' => '0.97_02',
11609 'Tie::Handle' => '4.2',
11610 'Tie::Hash' => '1.03',
11611 'Tie::Hash::NamedCapture'=> '0.06',
11612 'Tie::Memoize' => '1.1',
11613 'Tie::RefHash' => '1.38',
11614 'Tie::Scalar' => '1.01',
11615 'Tie::StdHandle' => '4.2',
11616 'Tie::SubstrHash' => '1.00',
11617 'Time::HiRes' => '1.9719',
11618 'Time::Local' => '1.1901_01',
11619 'Time::Piece' => '1.15',
11620 'Time::Piece::Seconds' => undef,
11621 'Time::Seconds' => undef,
11622 'Time::gmtime' => '1.03',
11623 'Time::localtime' => '1.02',
11624 'Time::tm' => '1.00',
11625 'UNIVERSAL' => '1.05',
11626 'Unicode' => '5.1.0',
11627 'Unicode::Collate' => '0.52_01',
11628 'Unicode::Normalize' => '1.03',
11629 'Unicode::UCD' => '0.27',
11630 'User::grent' => '1.01',
11631 'User::pwent' => '1.00',
11632 'VMS::DCLsym' => '1.03',
11633 'VMS::Stdio' => '2.4',
11634 'Win32' => '0.39',
11635 'Win32API::File' => '0.1101',
11636 'Win32API::File::ExtUtils::Myconst2perl'=> '1',
11637 'Win32CORE' => '0.02',
11638 'XS::APItest' => '0.17',
11639 'XS::APItest::KeywordRPN'=> '0.003',
11640 'XS::Typemap' => '0.03',
11641 'XSLoader' => '0.10',
11642 'XSLoader::XSLoader' => '0.10',
11643 'attributes' => '0.12',
11644 'autodie' => '2.06_01',
11645 'autodie::exception' => '2.06_01',
11646 'autodie::exception::system'=> '2.06_01',
11647 'autodie::hints' => '2.06_01',
11648 'autouse' => '1.06',
11649 'base' => '2.15',
11650 'bigint' => '0.23',
11651 'bignum' => '0.23',
11652 'bigrat' => '0.23',
11653 'blib' => '1.04',
11654 'bytes' => '1.03',
11655 'charnames' => '1.07',
11656 'constant' => '1.19',
11657 'deprecate' => '0.01',
11658 'diagnostics' => '1.18',
11659 'encoding' => '2.6_01',
11660 'encoding::warnings' => '0.11',
11661 'feature' => '1.13',
11662 'fields' => '2.15',
11663 'filetest' => '1.02',
11664 'if' => '0.05',
11665 'inc::latest' => '0.35_09',
11666 'integer' => '1.00',
11667 'legacy' => '1.00',
11668 'less' => '0.02',
11669 'lib' => '0.62',
11670 'locale' => '1.00',
11671 'mro' => '1.02',
11672 'open' => '1.07',
11673 'ops' => '1.02',
11674 'overload' => '1.10',
11675 'overload::numbers' => undef,
11676 'overloading' => '0.01',
11677 'parent' => '0.223',
11678 're' => '0.10',
11679 'sigtrap' => '1.04',
11680 'sort' => '2.01',
11681 'strict' => '1.04',
11682 'subs' => '1.00',
11683 'threads' => '1.74',
11684 'threads::shared' => '1.32',
11685 'utf8' => '1.07',
11686 'vars' => '1.01',
11687 'version' => '0.77',
11688 'vmsish' => '1.02',
11689 'warnings' => '1.07',
11690 'warnings::register' => '1.01',
11693 5.011003 => {
11694 'AnyDBM_File' => '1.00',
11695 'App::Cpan' => '1.570001',
11696 'App::Prove' => '3.17',
11697 'App::Prove::State' => '3.17',
11698 'App::Prove::State::Result'=> '3.17',
11699 'App::Prove::State::Result::Test'=> '3.17',
11700 'Archive::Extract' => '0.36',
11701 'Archive::Tar' => '1.54',
11702 'Archive::Tar::Constant'=> '0.02',
11703 'Archive::Tar::File' => '0.02',
11704 'Attribute::Handlers' => '0.87',
11705 'AutoLoader' => '5.70',
11706 'AutoSplit' => '1.06',
11707 'B' => '1.23',
11708 'B::Concise' => '0.78',
11709 'B::Debug' => '1.11',
11710 'B::Deparse' => '0.93',
11711 'B::Lint' => '1.11_01',
11712 'B::Lint::Debug' => '0.01',
11713 'B::Showlex' => '1.02',
11714 'B::Terse' => '1.05',
11715 'B::Xref' => '1.02',
11716 'Benchmark' => '1.11',
11717 'CGI' => '3.48',
11718 'CGI::Apache' => '1.01',
11719 'CGI::Carp' => '3.45',
11720 'CGI::Cookie' => '1.29',
11721 'CGI::Fast' => '1.07',
11722 'CGI::Pretty' => '3.46',
11723 'CGI::Push' => '1.04',
11724 'CGI::Switch' => '1.01',
11725 'CGI::Util' => '3.48',
11726 'CPAN' => '1.94_5301',
11727 'CPAN::Author' => '5.5',
11728 'CPAN::Bundle' => '5.5',
11729 'CPAN::CacheMgr' => '5.5',
11730 'CPAN::Complete' => '5.5',
11731 'CPAN::Debug' => '5.5',
11732 'CPAN::DeferredCode' => '5.50',
11733 'CPAN::Distribution' => '1.94',
11734 'CPAN::Distroprefs' => '6',
11735 'CPAN::Distrostatus' => '5.5',
11736 'CPAN::Exception::RecursiveDependency'=> '5.5',
11737 'CPAN::Exception::blocked_urllist'=> '1.0',
11738 'CPAN::Exception::yaml_not_installed'=> '5.5',
11739 'CPAN::FTP' => '5.5004',
11740 'CPAN::FTP::netrc' => '1.00',
11741 'CPAN::FirstTime' => '5.530001',
11742 'CPAN::HandleConfig' => '5.5',
11743 'CPAN::Index' => '1.94',
11744 'CPAN::InfoObj' => '5.5',
11745 'CPAN::Kwalify' => '5.50',
11746 'CPAN::LWP::UserAgent' => '1.94',
11747 'CPAN::Mirrors' => '1.770001',
11748 'CPAN::Module' => '5.5',
11749 'CPAN::Nox' => '5.50',
11750 'CPAN::Prompt' => '5.5',
11751 'CPAN::Queue' => '5.5',
11752 'CPAN::Shell' => '5.5',
11753 'CPAN::Tarzip' => '5.501',
11754 'CPAN::URL' => '5.5',
11755 'CPAN::Version' => '5.5',
11756 'CPANPLUS' => '0.90',
11757 'CPANPLUS::Backend' => undef,
11758 'CPANPLUS::Backend::RV' => undef,
11759 'CPANPLUS::Config' => undef,
11760 'CPANPLUS::Configure' => undef,
11761 'CPANPLUS::Configure::Setup'=> undef,
11762 'CPANPLUS::Dist' => undef,
11763 'CPANPLUS::Dist::Autobundle'=> undef,
11764 'CPANPLUS::Dist::Base' => undef,
11765 'CPANPLUS::Dist::Build' => '0.44',
11766 'CPANPLUS::Dist::Build::Constants'=> '0.44',
11767 'CPANPLUS::Dist::MM' => undef,
11768 'CPANPLUS::Dist::Sample'=> undef,
11769 'CPANPLUS::Error' => undef,
11770 'CPANPLUS::Internals' => '0.90',
11771 'CPANPLUS::Internals::Constants'=> undef,
11772 'CPANPLUS::Internals::Constants::Report'=> undef,
11773 'CPANPLUS::Internals::Extract'=> undef,
11774 'CPANPLUS::Internals::Fetch'=> undef,
11775 'CPANPLUS::Internals::Report'=> undef,
11776 'CPANPLUS::Internals::Search'=> undef,
11777 'CPANPLUS::Internals::Source'=> undef,
11778 'CPANPLUS::Internals::Source::Memory'=> undef,
11779 'CPANPLUS::Internals::Source::SQLite'=> undef,
11780 'CPANPLUS::Internals::Source::SQLite::Tie'=> undef,
11781 'CPANPLUS::Internals::Utils'=> undef,
11782 'CPANPLUS::Internals::Utils::Autoflush'=> undef,
11783 'CPANPLUS::Module' => undef,
11784 'CPANPLUS::Module::Author'=> undef,
11785 'CPANPLUS::Module::Author::Fake'=> undef,
11786 'CPANPLUS::Module::Checksums'=> undef,
11787 'CPANPLUS::Module::Fake'=> undef,
11788 'CPANPLUS::Module::Signature'=> undef,
11789 'CPANPLUS::Selfupdate' => undef,
11790 'CPANPLUS::Shell' => undef,
11791 'CPANPLUS::Shell::Classic'=> '0.0562',
11792 'CPANPLUS::Shell::Default'=> '0.90',
11793 'CPANPLUS::Shell::Default::Plugins::CustomSource'=> undef,
11794 'CPANPLUS::Shell::Default::Plugins::Remote'=> undef,
11795 'CPANPLUS::Shell::Default::Plugins::Source'=> undef,
11796 'Carp' => '1.14',
11797 'Carp::Heavy' => '1.14',
11798 'Class::ISA' => '0.36',
11799 'Class::Struct' => '0.63',
11800 'Compress::Raw::Bzip2' => '2.021',
11801 'Compress::Raw::Zlib' => '2.021',
11802 'Compress::Zlib' => '2.022',
11803 'Config' => undef,
11804 'Config::Extensions' => '0.01',
11805 'Cwd' => '3.31',
11806 'DB' => '1.02',
11807 'DBM_Filter' => '0.03',
11808 'DBM_Filter::compress' => '0.02',
11809 'DBM_Filter::encode' => '0.02',
11810 'DBM_Filter::int32' => '0.02',
11811 'DBM_Filter::null' => '0.02',
11812 'DBM_Filter::utf8' => '0.02',
11813 'DB_File' => '1.820',
11814 'Data::Dumper' => '2.125',
11815 'Devel::DProf' => '20080331.00',
11816 'Devel::DProf::V' => undef,
11817 'Devel::DProf::dprof::V'=> undef,
11818 'Devel::InnerPackage' => '0.3',
11819 'Devel::PPPort' => '3.19',
11820 'Devel::Peek' => '1.04',
11821 'Devel::SelfStubber' => '1.03',
11822 'Digest' => '1.16',
11823 'Digest::MD5' => '2.39',
11824 'Digest::SHA' => '5.47',
11825 'Digest::base' => '1.16',
11826 'Digest::file' => '1.16',
11827 'DirHandle' => '1.03',
11828 'Dumpvalue' => '1.13',
11829 'DynaLoader' => '1.10',
11830 'Encode' => '2.39',
11831 'Encode::Alias' => '2.12',
11832 'Encode::Byte' => '2.04',
11833 'Encode::CJKConstants' => '2.02',
11834 'Encode::CN' => '2.03',
11835 'Encode::CN::HZ' => '2.05',
11836 'Encode::Config' => '2.05',
11837 'Encode::EBCDIC' => '2.02',
11838 'Encode::Encoder' => '2.01',
11839 'Encode::Encoding' => '2.05',
11840 'Encode::GSM0338' => '2.01',
11841 'Encode::Guess' => '2.03',
11842 'Encode::JP' => '2.04',
11843 'Encode::JP::H2Z' => '2.02',
11844 'Encode::JP::JIS7' => '2.04',
11845 'Encode::KR' => '2.03',
11846 'Encode::KR::2022_KR' => '2.02',
11847 'Encode::MIME::Header' => '2.11',
11848 'Encode::MIME::Header::ISO_2022_JP'=> '1.03',
11849 'Encode::MIME::Name' => '1.01',
11850 'Encode::Symbol' => '2.02',
11851 'Encode::TW' => '2.03',
11852 'Encode::Unicode' => '2.07',
11853 'Encode::Unicode::UTF7' => '2.04',
11854 'English' => '1.04',
11855 'Env' => '1.01',
11856 'Errno' => '1.11',
11857 'Exporter' => '5.64_01',
11858 'Exporter::Heavy' => '5.64_01',
11859 'ExtUtils::CBuilder' => '0.27',
11860 'ExtUtils::CBuilder::Base'=> '0.27',
11861 'ExtUtils::CBuilder::Platform::Unix'=> '0.27',
11862 'ExtUtils::CBuilder::Platform::VMS'=> '0.27',
11863 'ExtUtils::CBuilder::Platform::Windows'=> '0.27',
11864 'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.27',
11865 'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.27',
11866 'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.27',
11867 'ExtUtils::CBuilder::Platform::aix'=> '0.27',
11868 'ExtUtils::CBuilder::Platform::cygwin'=> '0.27',
11869 'ExtUtils::CBuilder::Platform::darwin'=> '0.27',
11870 'ExtUtils::CBuilder::Platform::dec_osf'=> '0.27',
11871 'ExtUtils::CBuilder::Platform::os2'=> '0.27',
11872 'ExtUtils::Command' => '1.16',
11873 'ExtUtils::Command::MM' => '6.56',
11874 'ExtUtils::Constant' => '0.22',
11875 'ExtUtils::Constant::Base'=> '0.04',
11876 'ExtUtils::Constant::ProxySubs'=> '0.06',
11877 'ExtUtils::Constant::Utils'=> '0.02',
11878 'ExtUtils::Constant::XS'=> '0.03',
11879 'ExtUtils::Embed' => '1.28',
11880 'ExtUtils::Install' => '1.55',
11881 'ExtUtils::Installed' => '1.999_001',
11882 'ExtUtils::Liblist' => '6.56',
11883 'ExtUtils::Liblist::Kid'=> '6.56',
11884 'ExtUtils::MM' => '6.56',
11885 'ExtUtils::MM_AIX' => '6.56',
11886 'ExtUtils::MM_Any' => '6.56',
11887 'ExtUtils::MM_BeOS' => '6.56',
11888 'ExtUtils::MM_Cygwin' => '6.56',
11889 'ExtUtils::MM_DOS' => '6.56',
11890 'ExtUtils::MM_Darwin' => '6.56',
11891 'ExtUtils::MM_MacOS' => '6.56',
11892 'ExtUtils::MM_NW5' => '6.56',
11893 'ExtUtils::MM_OS2' => '6.56',
11894 'ExtUtils::MM_QNX' => '6.56',
11895 'ExtUtils::MM_UWIN' => '6.56',
11896 'ExtUtils::MM_Unix' => '6.56',
11897 'ExtUtils::MM_VMS' => '6.56',
11898 'ExtUtils::MM_VOS' => '6.56',
11899 'ExtUtils::MM_Win32' => '6.56',
11900 'ExtUtils::MM_Win95' => '6.56',
11901 'ExtUtils::MY' => '6.56',
11902 'ExtUtils::MakeMaker' => '6.56',
11903 'ExtUtils::MakeMaker::Config'=> '6.56',
11904 'ExtUtils::Manifest' => '1.57',
11905 'ExtUtils::Miniperl' => undef,
11906 'ExtUtils::Mkbootstrap' => '6.56',
11907 'ExtUtils::Mksymlists' => '6.56',
11908 'ExtUtils::Packlist' => '1.44',
11909 'ExtUtils::ParseXS' => '2.21',
11910 'ExtUtils::XSSymSet' => '1.1',
11911 'ExtUtils::testlib' => '6.56',
11912 'Fatal' => '2.06_01',
11913 'Fcntl' => '1.06',
11914 'File::Basename' => '2.78',
11915 'File::CheckTree' => '4.4',
11916 'File::Compare' => '1.1006',
11917 'File::Copy' => '2.16',
11918 'File::DosGlob' => '1.01',
11919 'File::Fetch' => '0.22',
11920 'File::Find' => '1.15',
11921 'File::Glob' => '1.07',
11922 'File::GlobMapper' => '1.000',
11923 'File::Path' => '2.08_01',
11924 'File::Spec' => '3.31',
11925 'File::Spec::Cygwin' => '3.30',
11926 'File::Spec::Epoc' => '3.30',
11927 'File::Spec::Functions' => '3.30',
11928 'File::Spec::Mac' => '3.30',
11929 'File::Spec::OS2' => '3.30',
11930 'File::Spec::Unix' => '3.30',
11931 'File::Spec::VMS' => '3.30',
11932 'File::Spec::Win32' => '3.30',
11933 'File::Temp' => '0.22',
11934 'File::stat' => '1.02',
11935 'FileCache' => '1.08',
11936 'FileHandle' => '2.02',
11937 'VMS::Filespec' => '1.12',
11938 'Filter::Simple' => '0.84',
11939 'Filter::Util::Call' => '1.08',
11940 'FindBin' => '1.50',
11941 'GDBM_File' => '1.09',
11942 'Getopt::Long' => '2.38',
11943 'Getopt::Std' => '1.06',
11944 'Hash::Util' => '0.07',
11945 'Hash::Util::FieldHash' => '1.04',
11946 'I18N::Collate' => '1.01',
11947 'I18N::LangTags' => '0.35',
11948 'I18N::LangTags::Detect'=> '1.04',
11949 'I18N::LangTags::List' => '0.35',
11950 'I18N::Langinfo' => '0.03',
11951 'IO' => '1.25_02',
11952 'IO::Compress::Adapter::Bzip2'=> '2.022',
11953 'IO::Compress::Adapter::Deflate'=> '2.022',
11954 'IO::Compress::Adapter::Identity'=> '2.022',
11955 'IO::Compress::Base' => '2.022',
11956 'IO::Compress::Base::Common'=> '2.022',
11957 'IO::Compress::Bzip2' => '2.022',
11958 'IO::Compress::Deflate' => '2.022',
11959 'IO::Compress::Gzip' => '2.022',
11960 'IO::Compress::Gzip::Constants'=> '2.022',
11961 'IO::Compress::RawDeflate'=> '2.022',
11962 'IO::Compress::Zip' => '2.022',
11963 'IO::Compress::Zip::Constants'=> '2.022',
11964 'IO::Compress::Zlib::Constants'=> '2.022',
11965 'IO::Compress::Zlib::Extra'=> '2.022',
11966 'IO::Dir' => '1.07',
11967 'IO::File' => '1.14',
11968 'IO::Handle' => '1.28',
11969 'IO::Pipe' => '1.13',
11970 'IO::Poll' => '0.07',
11971 'IO::Seekable' => '1.10',
11972 'IO::Select' => '1.17',
11973 'IO::Socket' => '1.31',
11974 'IO::Socket::INET' => '1.31',
11975 'IO::Socket::UNIX' => '1.23',
11976 'IO::Uncompress::Adapter::Bunzip2'=> '2.022',
11977 'IO::Uncompress::Adapter::Identity'=> '2.022',
11978 'IO::Uncompress::Adapter::Inflate'=> '2.022',
11979 'IO::Uncompress::AnyInflate'=> '2.022',
11980 'IO::Uncompress::AnyUncompress'=> '2.022',
11981 'IO::Uncompress::Base' => '2.022',
11982 'IO::Uncompress::Bunzip2'=> '2.022',
11983 'IO::Uncompress::Gunzip'=> '2.022',
11984 'IO::Uncompress::Inflate'=> '2.022',
11985 'IO::Uncompress::RawInflate'=> '2.022',
11986 'IO::Uncompress::Unzip' => '2.022',
11987 'IO::Zlib' => '1.10',
11988 'IPC::Cmd' => '0.54',
11989 'IPC::Msg' => '2.01',
11990 'IPC::Open2' => '1.03',
11991 'IPC::Open3' => '1.05',
11992 'IPC::Semaphore' => '2.01',
11993 'IPC::SharedMem' => '2.01',
11994 'IPC::SysV' => '2.01',
11995 'List::Util' => '1.22',
11996 'List::Util::PP' => '1.22',
11997 'List::Util::XS' => '1.22',
11998 'Locale::Constants' => '2.07',
11999 'Locale::Country' => '2.07',
12000 'Locale::Currency' => '2.07',
12001 'Locale::Language' => '2.07',
12002 'Locale::Maketext' => '1.14',
12003 'Locale::Maketext::Guts'=> '1.13',
12004 'Locale::Maketext::GutsLoader'=> '1.13',
12005 'Locale::Maketext::Simple'=> '0.21',
12006 'Locale::Script' => '2.07',
12007 'Log::Message' => '0.02',
12008 'Log::Message::Config' => '0.01',
12009 'Log::Message::Handlers'=> undef,
12010 'Log::Message::Item' => undef,
12011 'Log::Message::Simple' => '0.06',
12012 'MIME::Base64' => '3.08',
12013 'MIME::QuotedPrint' => '3.08',
12014 'Math::BigFloat' => '1.60',
12015 'Math::BigFloat::Trace' => '0.01',
12016 'Math::BigInt' => '1.89_01',
12017 'Math::BigInt::Calc' => '0.52',
12018 'Math::BigInt::CalcEmu' => '0.05',
12019 'Math::BigInt::FastCalc'=> '0.19',
12020 'Math::BigInt::Trace' => '0.01',
12021 'Math::BigRat' => '0.24',
12022 'Math::Complex' => '1.56',
12023 'Math::Trig' => '1.2',
12024 'Memoize' => '1.01_03',
12025 'Memoize::AnyDBM_File' => '0.65',
12026 'Memoize::Expire' => '1.00',
12027 'Memoize::ExpireFile' => '1.01',
12028 'Memoize::ExpireTest' => '0.65',
12029 'Memoize::NDBM_File' => '0.65',
12030 'Memoize::SDBM_File' => '0.65',
12031 'Memoize::Storable' => '0.65',
12032 'Module::Build' => '0.36',
12033 'Module::Build::Base' => '0.36',
12034 'Module::Build::Compat' => '0.36',
12035 'Module::Build::Config' => '0.36',
12036 'Module::Build::ConfigData'=> undef,
12037 'Module::Build::Cookbook'=> '0.36',
12038 'Module::Build::Dumper' => '0.36',
12039 'Module::Build::ModuleInfo'=> '0.36',
12040 'Module::Build::Notes' => '0.36',
12041 'Module::Build::PPMMaker'=> '0.36',
12042 'Module::Build::Platform::Amiga'=> '0.36',
12043 'Module::Build::Platform::Default'=> '0.36',
12044 'Module::Build::Platform::EBCDIC'=> '0.36',
12045 'Module::Build::Platform::MPEiX'=> '0.36',
12046 'Module::Build::Platform::MacOS'=> '0.36',
12047 'Module::Build::Platform::RiscOS'=> '0.36',
12048 'Module::Build::Platform::Unix'=> '0.36',
12049 'Module::Build::Platform::VMS'=> '0.36',
12050 'Module::Build::Platform::VOS'=> '0.36',
12051 'Module::Build::Platform::Windows'=> '0.36',
12052 'Module::Build::Platform::aix'=> '0.36',
12053 'Module::Build::Platform::cygwin'=> '0.36',
12054 'Module::Build::Platform::darwin'=> '0.36',
12055 'Module::Build::Platform::os2'=> '0.36',
12056 'Module::Build::PodParser'=> '0.36',
12057 'Module::Build::Version'=> '0.77',
12058 'Module::Build::YAML' => '1.40',
12059 'Module::CoreList' => '2.24',
12060 'Module::Load' => '0.16',
12061 'Module::Load::Conditional'=> '0.34',
12062 'Module::Loaded' => '0.06',
12063 'Module::Pluggable' => '3.9',
12064 'Module::Pluggable::Object'=> '3.9',
12065 'Moped::Msg' => '0.01',
12066 'NDBM_File' => '1.08',
12067 'NEXT' => '0.64',
12068 'Net::Cmd' => '2.29',
12069 'Net::Config' => '1.11',
12070 'Net::Domain' => '2.20',
12071 'Net::FTP' => '2.77',
12072 'Net::FTP::A' => '1.18',
12073 'Net::FTP::E' => '0.01',
12074 'Net::FTP::I' => '1.12',
12075 'Net::FTP::L' => '0.01',
12076 'Net::FTP::dataconn' => '0.11',
12077 'Net::NNTP' => '2.24',
12078 'Net::Netrc' => '2.12',
12079 'Net::POP3' => '2.29',
12080 'Net::Ping' => '2.36',
12081 'Net::SMTP' => '2.31',
12082 'Net::Time' => '2.10',
12083 'Net::hostent' => '1.01',
12084 'Net::netent' => '1.00',
12085 'Net::protoent' => '1.00',
12086 'Net::servent' => '1.01',
12087 'O' => '1.01',
12088 'ODBM_File' => '1.07',
12089 'Object::Accessor' => '0.36',
12090 'Opcode' => '1.15',
12091 'POSIX' => '1.19',
12092 'Package::Constants' => '0.02',
12093 'Params::Check' => '0.26',
12094 'Parse::CPAN::Meta' => '1.40',
12095 'PerlIO' => '1.06',
12096 'PerlIO::encoding' => '0.11',
12097 'PerlIO::scalar' => '0.07',
12098 'PerlIO::via' => '0.09',
12099 'PerlIO::via::QuotedPrint'=> '0.06',
12100 'Pod::Checker' => '1.45',
12101 'Pod::Escapes' => '1.04',
12102 'Pod::Find' => '1.35',
12103 'Pod::Functions' => '1.03',
12104 'Pod::Html' => '1.09',
12105 'Pod::InputObjects' => '1.31',
12106 'Pod::LaTeX' => '0.58',
12107 'Pod::Man' => '2.22',
12108 'Pod::ParseLink' => '1.09',
12109 'Pod::ParseUtils' => '1.36',
12110 'Pod::Parser' => '1.37',
12111 'Pod::Perldoc' => '3.15_01',
12112 'Pod::Perldoc::BaseTo' => undef,
12113 'Pod::Perldoc::GetOptsOO'=> undef,
12114 'Pod::Perldoc::ToChecker'=> undef,
12115 'Pod::Perldoc::ToMan' => undef,
12116 'Pod::Perldoc::ToNroff' => undef,
12117 'Pod::Perldoc::ToPod' => undef,
12118 'Pod::Perldoc::ToRtf' => undef,
12119 'Pod::Perldoc::ToText' => undef,
12120 'Pod::Perldoc::ToTk' => undef,
12121 'Pod::Perldoc::ToXml' => undef,
12122 'Pod::PlainText' => '2.04',
12123 'Pod::Plainer' => '1.01',
12124 'Pod::Select' => '1.36',
12125 'Pod::Simple' => '3.13',
12126 'Pod::Simple::BlackBox' => '3.13',
12127 'Pod::Simple::Checker' => '3.13',
12128 'Pod::Simple::Debug' => '3.13',
12129 'Pod::Simple::DumpAsText'=> '3.13',
12130 'Pod::Simple::DumpAsXML'=> '3.13',
12131 'Pod::Simple::HTML' => '3.13',
12132 'Pod::Simple::HTMLBatch'=> '3.13',
12133 'Pod::Simple::HTMLLegacy'=> '5.01',
12134 'Pod::Simple::LinkSection'=> '3.13',
12135 'Pod::Simple::Methody' => '3.13',
12136 'Pod::Simple::Progress' => '3.13',
12137 'Pod::Simple::PullParser'=> '3.13',
12138 'Pod::Simple::PullParserEndToken'=> '3.13',
12139 'Pod::Simple::PullParserStartToken'=> '3.13',
12140 'Pod::Simple::PullParserTextToken'=> '3.13',
12141 'Pod::Simple::PullParserToken'=> '3.13',
12142 'Pod::Simple::RTF' => '3.13',
12143 'Pod::Simple::Search' => '3.13',
12144 'Pod::Simple::SimpleTree'=> '3.13',
12145 'Pod::Simple::Text' => '3.13',
12146 'Pod::Simple::TextContent'=> '3.13',
12147 'Pod::Simple::TiedOutFH'=> '3.13',
12148 'Pod::Simple::Transcode'=> '3.13',
12149 'Pod::Simple::TranscodeDumb'=> '3.13',
12150 'Pod::Simple::TranscodeSmart'=> '3.13',
12151 'Pod::Simple::XHTML' => '3.13',
12152 'Pod::Simple::XMLOutStream'=> '3.13',
12153 'Pod::Text' => '3.13',
12154 'Pod::Text::Color' => '2.05',
12155 'Pod::Text::Overstrike' => '2.03',
12156 'Pod::Text::Termcap' => '2.05',
12157 'Pod::Usage' => '1.36',
12158 'SDBM_File' => '1.06',
12159 'Safe' => '2.20',
12160 'Scalar::Util' => '1.22',
12161 'Scalar::Util::PP' => '1.22',
12162 'Search::Dict' => '1.02',
12163 'SelectSaver' => '1.02',
12164 'SelfLoader' => '1.17',
12165 'Shell' => '0.72_01',
12166 'Socket' => '1.85',
12167 'Storable' => '2.22',
12168 'Switch' => '2.16',
12169 'Symbol' => '1.07',
12170 'Sys::Hostname' => '1.11',
12171 'Sys::Syslog' => '0.27',
12172 'Sys::Syslog::win32::Win32'=> undef,
12173 'TAP::Base' => '3.17',
12174 'TAP::Formatter::Base' => '3.17',
12175 'TAP::Formatter::Color' => '3.17',
12176 'TAP::Formatter::Console'=> '3.17',
12177 'TAP::Formatter::Console::ParallelSession'=> '3.17',
12178 'TAP::Formatter::Console::Session'=> '3.17',
12179 'TAP::Formatter::File' => '3.17',
12180 'TAP::Formatter::File::Session'=> '3.17',
12181 'TAP::Formatter::Session'=> '3.17',
12182 'TAP::Harness' => '3.17',
12183 'TAP::Object' => '3.17',
12184 'TAP::Parser' => '3.17',
12185 'TAP::Parser::Aggregator'=> '3.17',
12186 'TAP::Parser::Grammar' => '3.17',
12187 'TAP::Parser::Iterator' => '3.17',
12188 'TAP::Parser::Iterator::Array'=> '3.17',
12189 'TAP::Parser::Iterator::Process'=> '3.17',
12190 'TAP::Parser::Iterator::Stream'=> '3.17',
12191 'TAP::Parser::IteratorFactory'=> '3.17',
12192 'TAP::Parser::Multiplexer'=> '3.17',
12193 'TAP::Parser::Result' => '3.17',
12194 'TAP::Parser::Result::Bailout'=> '3.17',
12195 'TAP::Parser::Result::Comment'=> '3.17',
12196 'TAP::Parser::Result::Plan'=> '3.17',
12197 'TAP::Parser::Result::Pragma'=> '3.17',
12198 'TAP::Parser::Result::Test'=> '3.17',
12199 'TAP::Parser::Result::Unknown'=> '3.17',
12200 'TAP::Parser::Result::Version'=> '3.17',
12201 'TAP::Parser::Result::YAML'=> '3.17',
12202 'TAP::Parser::ResultFactory'=> '3.17',
12203 'TAP::Parser::Scheduler'=> '3.17',
12204 'TAP::Parser::Scheduler::Job'=> '3.17',
12205 'TAP::Parser::Scheduler::Spinner'=> '3.17',
12206 'TAP::Parser::Source' => '3.17',
12207 'TAP::Parser::Source::Perl'=> '3.17',
12208 'TAP::Parser::Utils' => '3.17',
12209 'TAP::Parser::YAMLish::Reader'=> '3.17',
12210 'TAP::Parser::YAMLish::Writer'=> '3.17',
12211 'Term::ANSIColor' => '2.02',
12212 'Term::Cap' => '1.12',
12213 'Term::Complete' => '1.402',
12214 'Term::ReadLine' => '1.05',
12215 'Term::UI' => '0.20',
12216 'Term::UI::History' => undef,
12217 'Test' => '1.25_02',
12218 'Test::Builder' => '0.94',
12219 'Test::Builder::Module' => '0.94',
12220 'Test::Builder::Tester' => '1.18',
12221 'Test::Builder::Tester::Color'=> '1.18',
12222 'Test::Harness' => '3.17',
12223 'Test::More' => '0.94',
12224 'Test::Simple' => '0.94',
12225 'Text::Abbrev' => '1.01',
12226 'Text::Balanced' => '2.02',
12227 'Text::ParseWords' => '3.27',
12228 'Text::Soundex' => '3.03_01',
12229 'Text::Tabs' => '2009.0305',
12230 'Text::Wrap' => '2009.0305',
12231 'Thread' => '3.02',
12232 'Thread::Queue' => '2.11',
12233 'Thread::Semaphore' => '2.09',
12234 'Tie::Array' => '1.03',
12235 'Tie::File' => '0.97_02',
12236 'Tie::Handle' => '4.2',
12237 'Tie::Hash' => '1.03',
12238 'Tie::Hash::NamedCapture'=> '0.06',
12239 'Tie::Memoize' => '1.1',
12240 'Tie::RefHash' => '1.38',
12241 'Tie::Scalar' => '1.01',
12242 'Tie::StdHandle' => '4.2',
12243 'Tie::SubstrHash' => '1.00',
12244 'Time::HiRes' => '1.9719',
12245 'Time::Local' => '1.1901_01',
12246 'Time::Piece' => '1.15',
12247 'Time::Piece::Seconds' => undef,
12248 'Time::Seconds' => undef,
12249 'Time::gmtime' => '1.03',
12250 'Time::localtime' => '1.02',
12251 'Time::tm' => '1.00',
12252 'UNIVERSAL' => '1.05',
12253 'Unicode' => '5.2.0',
12254 'Unicode::Collate' => '0.52_01',
12255 'Unicode::Normalize' => '1.03',
12256 'Unicode::UCD' => '0.27',
12257 'User::grent' => '1.01',
12258 'User::pwent' => '1.00',
12259 'VMS::DCLsym' => '1.03',
12260 'VMS::Stdio' => '2.4',
12261 'Win32' => '0.39',
12262 'Win32API::File' => '0.1101',
12263 'Win32API::File::ExtUtils::Myconst2perl'=> '1',
12264 'Win32CORE' => '0.02',
12265 'XS::APItest' => '0.17',
12266 'XS::APItest::KeywordRPN'=> '0.003',
12267 'XS::Typemap' => '0.03',
12268 'XSLoader' => '0.10',
12269 'XSLoader::XSLoader' => '0.10',
12270 'attributes' => '0.12',
12271 'autodie' => '2.06_01',
12272 'autodie::exception' => '2.06_01',
12273 'autodie::exception::system'=> '2.06_01',
12274 'autodie::hints' => '2.06_01',
12275 'autouse' => '1.06',
12276 'base' => '2.15',
12277 'bigint' => '0.23',
12278 'bignum' => '0.23',
12279 'bigrat' => '0.23',
12280 'blib' => '1.04',
12281 'bytes' => '1.03',
12282 'charnames' => '1.07',
12283 'constant' => '1.20',
12284 'deprecate' => '0.01',
12285 'diagnostics' => '1.19',
12286 'encoding' => '2.6_01',
12287 'encoding::warnings' => '0.11',
12288 'feature' => '1.14',
12289 'fields' => '2.15',
12290 'filetest' => '1.02',
12291 'if' => '0.05',
12292 'inc::latest' => '0.36',
12293 'integer' => '1.00',
12294 'less' => '0.02',
12295 'lib' => '0.62',
12296 'locale' => '1.00',
12297 'mro' => '1.02',
12298 'open' => '1.07',
12299 'ops' => '1.02',
12300 'overload' => '1.10',
12301 'overload::numbers' => undef,
12302 'overloading' => '0.01',
12303 'parent' => '0.223',
12304 're' => '0.10',
12305 'sigtrap' => '1.04',
12306 'sort' => '2.01',
12307 'strict' => '1.04',
12308 'subs' => '1.00',
12309 'threads' => '1.75',
12310 'threads::shared' => '1.32',
12311 'utf8' => '1.07',
12312 'vars' => '1.01',
12313 'version' => '0.77',
12314 'vmsish' => '1.02',
12315 'warnings' => '1.08',
12316 'warnings::register' => '1.01',
12319 5.011004 => {
12320 'AnyDBM_File' => '1.00',
12321 'App::Cpan' => '1.5701',
12322 'App::Prove' => '3.17',
12323 'App::Prove::State' => '3.17',
12324 'App::Prove::State::Result'=> '3.17',
12325 'App::Prove::State::Result::Test'=> '3.17',
12326 'Archive::Extract' => '0.38',
12327 'Archive::Tar' => '1.54',
12328 'Archive::Tar::Constant'=> '0.02',
12329 'Archive::Tar::File' => '0.02',
12330 'Attribute::Handlers' => '0.87',
12331 'AutoLoader' => '5.70',
12332 'AutoSplit' => '1.06',
12333 'B' => '1.23',
12334 'B::Concise' => '0.78',
12335 'B::Debug' => '1.11',
12336 'B::Deparse' => '0.94',
12337 'B::Lint' => '1.11_01',
12338 'B::Lint::Debug' => '0.01',
12339 'B::Showlex' => '1.02',
12340 'B::Terse' => '1.05',
12341 'B::Xref' => '1.02',
12342 'Benchmark' => '1.11',
12343 'CGI' => '3.48',
12344 'CGI::Apache' => '1.01',
12345 'CGI::Carp' => '3.45',
12346 'CGI::Cookie' => '1.29',
12347 'CGI::Fast' => '1.07',
12348 'CGI::Pretty' => '3.46',
12349 'CGI::Push' => '1.04',
12350 'CGI::Switch' => '1.01',
12351 'CGI::Util' => '3.48',
12352 'CPAN' => '1.94_54',
12353 'CPAN::Author' => '5.5',
12354 'CPAN::Bundle' => '5.5',
12355 'CPAN::CacheMgr' => '5.5',
12356 'CPAN::Complete' => '5.5',
12357 'CPAN::Debug' => '5.5',
12358 'CPAN::DeferredCode' => '5.50',
12359 'CPAN::Distribution' => '1.94',
12360 'CPAN::Distroprefs' => '6',
12361 'CPAN::Distrostatus' => '5.5',
12362 'CPAN::Exception::RecursiveDependency'=> '5.5',
12363 'CPAN::Exception::blocked_urllist'=> '1.0',
12364 'CPAN::Exception::yaml_not_installed'=> '5.5',
12365 'CPAN::FTP' => '5.5004',
12366 'CPAN::FTP::netrc' => '1.00',
12367 'CPAN::FirstTime' => '5.53',
12368 'CPAN::HandleConfig' => '5.5',
12369 'CPAN::Index' => '1.94',
12370 'CPAN::InfoObj' => '5.5',
12371 'CPAN::Kwalify' => '5.50',
12372 'CPAN::LWP::UserAgent' => '1.94',
12373 'CPAN::Mirrors' => '1.77',
12374 'CPAN::Module' => '5.5',
12375 'CPAN::Nox' => '5.50',
12376 'CPAN::Prompt' => '5.5',
12377 'CPAN::Queue' => '5.5',
12378 'CPAN::Shell' => '5.5',
12379 'CPAN::Tarzip' => '5.501',
12380 'CPAN::URL' => '5.5',
12381 'CPAN::Version' => '5.5',
12382 'CPANPLUS' => '0.90',
12383 'CPANPLUS::Backend' => undef,
12384 'CPANPLUS::Backend::RV' => undef,
12385 'CPANPLUS::Config' => undef,
12386 'CPANPLUS::Configure' => undef,
12387 'CPANPLUS::Configure::Setup'=> undef,
12388 'CPANPLUS::Dist' => undef,
12389 'CPANPLUS::Dist::Autobundle'=> undef,
12390 'CPANPLUS::Dist::Base' => undef,
12391 'CPANPLUS::Dist::Build' => '0.44',
12392 'CPANPLUS::Dist::Build::Constants'=> '0.44',
12393 'CPANPLUS::Dist::MM' => undef,
12394 'CPANPLUS::Dist::Sample'=> undef,
12395 'CPANPLUS::Error' => undef,
12396 'CPANPLUS::Internals' => '0.90',
12397 'CPANPLUS::Internals::Constants'=> undef,
12398 'CPANPLUS::Internals::Constants::Report'=> undef,
12399 'CPANPLUS::Internals::Extract'=> undef,
12400 'CPANPLUS::Internals::Fetch'=> undef,
12401 'CPANPLUS::Internals::Report'=> undef,
12402 'CPANPLUS::Internals::Search'=> undef,
12403 'CPANPLUS::Internals::Source'=> undef,
12404 'CPANPLUS::Internals::Source::Memory'=> undef,
12405 'CPANPLUS::Internals::Source::SQLite'=> undef,
12406 'CPANPLUS::Internals::Source::SQLite::Tie'=> undef,
12407 'CPANPLUS::Internals::Utils'=> undef,
12408 'CPANPLUS::Internals::Utils::Autoflush'=> undef,
12409 'CPANPLUS::Module' => undef,
12410 'CPANPLUS::Module::Author'=> undef,
12411 'CPANPLUS::Module::Author::Fake'=> undef,
12412 'CPANPLUS::Module::Checksums'=> undef,
12413 'CPANPLUS::Module::Fake'=> undef,
12414 'CPANPLUS::Module::Signature'=> undef,
12415 'CPANPLUS::Selfupdate' => undef,
12416 'CPANPLUS::Shell' => undef,
12417 'CPANPLUS::Shell::Classic'=> '0.0562',
12418 'CPANPLUS::Shell::Default'=> '0.90',
12419 'CPANPLUS::Shell::Default::Plugins::CustomSource'=> undef,
12420 'CPANPLUS::Shell::Default::Plugins::Remote'=> undef,
12421 'CPANPLUS::Shell::Default::Plugins::Source'=> undef,
12422 'Carp' => '1.15',
12423 'Carp::Heavy' => '1.15',
12424 'Class::ISA' => '0.36',
12425 'Class::Struct' => '0.63',
12426 'Compress::Raw::Bzip2' => '2.024',
12427 'Compress::Raw::Zlib' => '2.024',
12428 'Compress::Zlib' => '2.024',
12429 'Config' => undef,
12430 'Config::Extensions' => '0.01',
12431 'Cwd' => '3.31',
12432 'DB' => '1.02',
12433 'DBM_Filter' => '0.03',
12434 'DBM_Filter::compress' => '0.02',
12435 'DBM_Filter::encode' => '0.02',
12436 'DBM_Filter::int32' => '0.02',
12437 'DBM_Filter::null' => '0.02',
12438 'DBM_Filter::utf8' => '0.02',
12439 'DB_File' => '1.820',
12440 'Data::Dumper' => '2.125',
12441 'Devel::DProf' => '20080331.00',
12442 'Devel::DProf::dprof::V'=> undef,
12443 'Devel::InnerPackage' => '0.3',
12444 'Devel::PPPort' => '3.19',
12445 'Devel::Peek' => '1.04',
12446 'Devel::SelfStubber' => '1.03',
12447 'Digest' => '1.16',
12448 'Digest::MD5' => '2.39',
12449 'Digest::SHA' => '5.47',
12450 'Digest::base' => '1.16',
12451 'Digest::file' => '1.16',
12452 'DirHandle' => '1.03',
12453 'Dumpvalue' => '1.13',
12454 'DynaLoader' => '1.10',
12455 'Encode' => '2.39',
12456 'Encode::Alias' => '2.12',
12457 'Encode::Byte' => '2.04',
12458 'Encode::CJKConstants' => '2.02',
12459 'Encode::CN' => '2.03',
12460 'Encode::CN::HZ' => '2.05',
12461 'Encode::Config' => '2.05',
12462 'Encode::EBCDIC' => '2.02',
12463 'Encode::Encoder' => '2.01',
12464 'Encode::Encoding' => '2.05',
12465 'Encode::GSM0338' => '2.01',
12466 'Encode::Guess' => '2.03',
12467 'Encode::JP' => '2.04',
12468 'Encode::JP::H2Z' => '2.02',
12469 'Encode::JP::JIS7' => '2.04',
12470 'Encode::KR' => '2.03',
12471 'Encode::KR::2022_KR' => '2.02',
12472 'Encode::MIME::Header' => '2.11',
12473 'Encode::MIME::Header::ISO_2022_JP'=> '1.03',
12474 'Encode::MIME::Name' => '1.01',
12475 'Encode::Symbol' => '2.02',
12476 'Encode::TW' => '2.03',
12477 'Encode::Unicode' => '2.07',
12478 'Encode::Unicode::UTF7' => '2.04',
12479 'English' => '1.04',
12480 'Env' => '1.01',
12481 'Errno' => '1.11',
12482 'Exporter' => '5.64_01',
12483 'Exporter::Heavy' => '5.64_01',
12484 'ExtUtils::CBuilder' => '0.27',
12485 'ExtUtils::CBuilder::Base'=> '0.27',
12486 'ExtUtils::CBuilder::Platform::Unix'=> '0.27',
12487 'ExtUtils::CBuilder::Platform::VMS'=> '0.27',
12488 'ExtUtils::CBuilder::Platform::Windows'=> '0.27',
12489 'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.27',
12490 'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.27',
12491 'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.27',
12492 'ExtUtils::CBuilder::Platform::aix'=> '0.27',
12493 'ExtUtils::CBuilder::Platform::cygwin'=> '0.27',
12494 'ExtUtils::CBuilder::Platform::darwin'=> '0.27',
12495 'ExtUtils::CBuilder::Platform::dec_osf'=> '0.27',
12496 'ExtUtils::CBuilder::Platform::os2'=> '0.27',
12497 'ExtUtils::Command' => '1.16',
12498 'ExtUtils::Command::MM' => '6.56',
12499 'ExtUtils::Constant' => '0.22',
12500 'ExtUtils::Constant::Base'=> '0.04',
12501 'ExtUtils::Constant::ProxySubs'=> '0.06',
12502 'ExtUtils::Constant::Utils'=> '0.02',
12503 'ExtUtils::Constant::XS'=> '0.03',
12504 'ExtUtils::Embed' => '1.28',
12505 'ExtUtils::Install' => '1.55',
12506 'ExtUtils::Installed' => '1.999_001',
12507 'ExtUtils::Liblist' => '6.56',
12508 'ExtUtils::Liblist::Kid'=> '6.56',
12509 'ExtUtils::MM' => '6.56',
12510 'ExtUtils::MM_AIX' => '6.56',
12511 'ExtUtils::MM_Any' => '6.56',
12512 'ExtUtils::MM_BeOS' => '6.56',
12513 'ExtUtils::MM_Cygwin' => '6.56',
12514 'ExtUtils::MM_DOS' => '6.56',
12515 'ExtUtils::MM_Darwin' => '6.56',
12516 'ExtUtils::MM_MacOS' => '6.56',
12517 'ExtUtils::MM_NW5' => '6.56',
12518 'ExtUtils::MM_OS2' => '6.56',
12519 'ExtUtils::MM_QNX' => '6.56',
12520 'ExtUtils::MM_UWIN' => '6.56',
12521 'ExtUtils::MM_Unix' => '6.56',
12522 'ExtUtils::MM_VMS' => '6.56',
12523 'ExtUtils::MM_VOS' => '6.56',
12524 'ExtUtils::MM_Win32' => '6.56',
12525 'ExtUtils::MM_Win95' => '6.56',
12526 'ExtUtils::MY' => '6.56',
12527 'ExtUtils::MakeMaker' => '6.56',
12528 'ExtUtils::MakeMaker::Config'=> '6.56',
12529 'ExtUtils::Manifest' => '1.57',
12530 'ExtUtils::Miniperl' => undef,
12531 'ExtUtils::Mkbootstrap' => '6.56',
12532 'ExtUtils::Mksymlists' => '6.56',
12533 'ExtUtils::Packlist' => '1.44',
12534 'ExtUtils::ParseXS' => '2.21',
12535 'ExtUtils::XSSymSet' => '1.1',
12536 'ExtUtils::testlib' => '6.56',
12537 'Fatal' => '2.06_01',
12538 'Fcntl' => '1.06',
12539 'File::Basename' => '2.78',
12540 'File::CheckTree' => '4.4',
12541 'File::Compare' => '1.1006',
12542 'File::Copy' => '2.17',
12543 'File::DosGlob' => '1.01',
12544 'File::Fetch' => '0.24',
12545 'File::Find' => '1.15',
12546 'File::Glob' => '1.07',
12547 'File::GlobMapper' => '1.000',
12548 'File::Path' => '2.08_01',
12549 'File::Spec' => '3.31',
12550 'File::Spec::Cygwin' => '3.30',
12551 'File::Spec::Epoc' => '3.30',
12552 'File::Spec::Functions' => '3.30',
12553 'File::Spec::Mac' => '3.30',
12554 'File::Spec::OS2' => '3.30',
12555 'File::Spec::Unix' => '3.30',
12556 'File::Spec::VMS' => '3.30',
12557 'File::Spec::Win32' => '3.30',
12558 'File::Temp' => '0.22',
12559 'File::stat' => '1.02',
12560 'FileCache' => '1.08',
12561 'FileHandle' => '2.02',
12562 'VMS::Filespec' => '1.12',
12563 'Filter::Simple' => '0.84',
12564 'Filter::Util::Call' => '1.08',
12565 'FindBin' => '1.50',
12566 'GDBM_File' => '1.10',
12567 'Getopt::Long' => '2.38',
12568 'Getopt::Std' => '1.06',
12569 'Hash::Util' => '0.07',
12570 'Hash::Util::FieldHash' => '1.04',
12571 'I18N::Collate' => '1.01',
12572 'I18N::LangTags' => '0.35',
12573 'I18N::LangTags::Detect'=> '1.04',
12574 'I18N::LangTags::List' => '0.35',
12575 'I18N::Langinfo' => '0.03',
12576 'IO' => '1.25_02',
12577 'IO::Compress::Adapter::Bzip2'=> '2.024',
12578 'IO::Compress::Adapter::Deflate'=> '2.024',
12579 'IO::Compress::Adapter::Identity'=> '2.024',
12580 'IO::Compress::Base' => '2.024',
12581 'IO::Compress::Base::Common'=> '2.024',
12582 'IO::Compress::Bzip2' => '2.024',
12583 'IO::Compress::Deflate' => '2.024',
12584 'IO::Compress::Gzip' => '2.024',
12585 'IO::Compress::Gzip::Constants'=> '2.024',
12586 'IO::Compress::RawDeflate'=> '2.024',
12587 'IO::Compress::Zip' => '2.024',
12588 'IO::Compress::Zip::Constants'=> '2.024',
12589 'IO::Compress::Zlib::Constants'=> '2.024',
12590 'IO::Compress::Zlib::Extra'=> '2.024',
12591 'IO::Dir' => '1.07',
12592 'IO::File' => '1.14',
12593 'IO::Handle' => '1.28',
12594 'IO::Pipe' => '1.13',
12595 'IO::Poll' => '0.07',
12596 'IO::Seekable' => '1.10',
12597 'IO::Select' => '1.17',
12598 'IO::Socket' => '1.31',
12599 'IO::Socket::INET' => '1.31',
12600 'IO::Socket::UNIX' => '1.23',
12601 'IO::Uncompress::Adapter::Bunzip2'=> '2.024',
12602 'IO::Uncompress::Adapter::Identity'=> '2.024',
12603 'IO::Uncompress::Adapter::Inflate'=> '2.024',
12604 'IO::Uncompress::AnyInflate'=> '2.024',
12605 'IO::Uncompress::AnyUncompress'=> '2.024',
12606 'IO::Uncompress::Base' => '2.024',
12607 'IO::Uncompress::Bunzip2'=> '2.024',
12608 'IO::Uncompress::Gunzip'=> '2.024',
12609 'IO::Uncompress::Inflate'=> '2.024',
12610 'IO::Uncompress::RawInflate'=> '2.024',
12611 'IO::Uncompress::Unzip' => '2.024',
12612 'IO::Zlib' => '1.10',
12613 'IPC::Cmd' => '0.54',
12614 'IPC::Msg' => '2.01',
12615 'IPC::Open2' => '1.03',
12616 'IPC::Open3' => '1.05',
12617 'IPC::Semaphore' => '2.01',
12618 'IPC::SharedMem' => '2.01',
12619 'IPC::SysV' => '2.01',
12620 'List::Util' => '1.22',
12621 'List::Util::PP' => '1.22',
12622 'List::Util::XS' => '1.22',
12623 'Locale::Constants' => '2.07',
12624 'Locale::Country' => '2.07',
12625 'Locale::Currency' => '2.07',
12626 'Locale::Language' => '2.07',
12627 'Locale::Maketext' => '1.14',
12628 'Locale::Maketext::Guts'=> '1.13',
12629 'Locale::Maketext::GutsLoader'=> '1.13',
12630 'Locale::Maketext::Simple'=> '0.21',
12631 'Locale::Script' => '2.07',
12632 'Log::Message' => '0.02',
12633 'Log::Message::Config' => '0.01',
12634 'Log::Message::Handlers'=> undef,
12635 'Log::Message::Item' => undef,
12636 'Log::Message::Simple' => '0.06',
12637 'MIME::Base64' => '3.08',
12638 'MIME::QuotedPrint' => '3.08',
12639 'Math::BigFloat' => '1.60',
12640 'Math::BigFloat::Trace' => '0.01',
12641 'Math::BigInt' => '1.89_01',
12642 'Math::BigInt::Calc' => '0.52',
12643 'Math::BigInt::CalcEmu' => '0.05',
12644 'Math::BigInt::FastCalc'=> '0.19',
12645 'Math::BigInt::Trace' => '0.01',
12646 'Math::BigRat' => '0.24',
12647 'Math::Complex' => '1.56',
12648 'Math::Trig' => '1.2',
12649 'Memoize' => '1.01_03',
12650 'Memoize::AnyDBM_File' => '0.65',
12651 'Memoize::Expire' => '1.00',
12652 'Memoize::ExpireFile' => '1.01',
12653 'Memoize::ExpireTest' => '0.65',
12654 'Memoize::NDBM_File' => '0.65',
12655 'Memoize::SDBM_File' => '0.65',
12656 'Memoize::Storable' => '0.65',
12657 'Module::Build' => '0.3603',
12658 'Module::Build::Base' => '0.3603',
12659 'Module::Build::Compat' => '0.3603',
12660 'Module::Build::Config' => '0.3603',
12661 'Module::Build::ConfigData'=> undef,
12662 'Module::Build::Cookbook'=> '0.3603',
12663 'Module::Build::Dumper' => '0.3603',
12664 'Module::Build::ModuleInfo'=> '0.3603',
12665 'Module::Build::Notes' => '0.3603',
12666 'Module::Build::PPMMaker'=> '0.3603',
12667 'Module::Build::Platform::Amiga'=> '0.3603',
12668 'Module::Build::Platform::Default'=> '0.3603',
12669 'Module::Build::Platform::EBCDIC'=> '0.3603',
12670 'Module::Build::Platform::MPEiX'=> '0.3603',
12671 'Module::Build::Platform::MacOS'=> '0.3603',
12672 'Module::Build::Platform::RiscOS'=> '0.3603',
12673 'Module::Build::Platform::Unix'=> '0.3603',
12674 'Module::Build::Platform::VMS'=> '0.3603',
12675 'Module::Build::Platform::VOS'=> '0.3603',
12676 'Module::Build::Platform::Windows'=> '0.3603',
12677 'Module::Build::Platform::aix'=> '0.3603',
12678 'Module::Build::Platform::cygwin'=> '0.3603',
12679 'Module::Build::Platform::darwin'=> '0.3603',
12680 'Module::Build::Platform::os2'=> '0.3603',
12681 'Module::Build::PodParser'=> '0.3603',
12682 'Module::Build::Version'=> '0.77',
12683 'Module::Build::YAML' => '1.40',
12684 'Module::CoreList' => '2.25',
12685 'Module::Load' => '0.16',
12686 'Module::Load::Conditional'=> '0.34',
12687 'Module::Loaded' => '0.06',
12688 'Module::Pluggable' => '3.9',
12689 'Module::Pluggable::Object'=> '3.9',
12690 'Moped::Msg' => '0.01',
12691 'NDBM_File' => '1.08',
12692 'NEXT' => '0.64',
12693 'Net::Cmd' => '2.29',
12694 'Net::Config' => '1.11',
12695 'Net::Domain' => '2.20',
12696 'Net::FTP' => '2.77',
12697 'Net::FTP::A' => '1.18',
12698 'Net::FTP::E' => '0.01',
12699 'Net::FTP::I' => '1.12',
12700 'Net::FTP::L' => '0.01',
12701 'Net::FTP::dataconn' => '0.11',
12702 'Net::NNTP' => '2.24',
12703 'Net::Netrc' => '2.12',
12704 'Net::POP3' => '2.29',
12705 'Net::Ping' => '2.36',
12706 'Net::SMTP' => '2.31',
12707 'Net::Time' => '2.10',
12708 'Net::hostent' => '1.01',
12709 'Net::netent' => '1.00',
12710 'Net::protoent' => '1.00',
12711 'Net::servent' => '1.01',
12712 'O' => '1.01',
12713 'ODBM_File' => '1.07',
12714 'Object::Accessor' => '0.36',
12715 'Opcode' => '1.15',
12716 'POSIX' => '1.19',
12717 'Package::Constants' => '0.02',
12718 'Params::Check' => '0.26',
12719 'Parse::CPAN::Meta' => '1.40',
12720 'PerlIO' => '1.06',
12721 'PerlIO::encoding' => '0.12',
12722 'PerlIO::scalar' => '0.07',
12723 'PerlIO::via' => '0.09',
12724 'PerlIO::via::QuotedPrint'=> '0.06',
12725 'Pod::Checker' => '1.45',
12726 'Pod::Escapes' => '1.04',
12727 'Pod::Find' => '1.35',
12728 'Pod::Functions' => '1.03',
12729 'Pod::Html' => '1.09',
12730 'Pod::InputObjects' => '1.31',
12731 'Pod::LaTeX' => '0.58',
12732 'Pod::Man' => '2.22',
12733 'Pod::ParseLink' => '1.09',
12734 'Pod::ParseUtils' => '1.36',
12735 'Pod::Parser' => '1.37',
12736 'Pod::Perldoc' => '3.15_01',
12737 'Pod::Perldoc::BaseTo' => undef,
12738 'Pod::Perldoc::GetOptsOO'=> undef,
12739 'Pod::Perldoc::ToChecker'=> undef,
12740 'Pod::Perldoc::ToMan' => undef,
12741 'Pod::Perldoc::ToNroff' => undef,
12742 'Pod::Perldoc::ToPod' => undef,
12743 'Pod::Perldoc::ToRtf' => undef,
12744 'Pod::Perldoc::ToText' => undef,
12745 'Pod::Perldoc::ToTk' => undef,
12746 'Pod::Perldoc::ToXml' => undef,
12747 'Pod::PlainText' => '2.04',
12748 'Pod::Plainer' => '1.01',
12749 'Pod::Select' => '1.36',
12750 'Pod::Simple' => '3.13',
12751 'Pod::Simple::BlackBox' => '3.13',
12752 'Pod::Simple::Checker' => '3.13',
12753 'Pod::Simple::Debug' => '3.13',
12754 'Pod::Simple::DumpAsText'=> '3.13',
12755 'Pod::Simple::DumpAsXML'=> '3.13',
12756 'Pod::Simple::HTML' => '3.13',
12757 'Pod::Simple::HTMLBatch'=> '3.13',
12758 'Pod::Simple::HTMLLegacy'=> '5.01',
12759 'Pod::Simple::LinkSection'=> '3.13',
12760 'Pod::Simple::Methody' => '3.13',
12761 'Pod::Simple::Progress' => '3.13',
12762 'Pod::Simple::PullParser'=> '3.13',
12763 'Pod::Simple::PullParserEndToken'=> '3.13',
12764 'Pod::Simple::PullParserStartToken'=> '3.13',
12765 'Pod::Simple::PullParserTextToken'=> '3.13',
12766 'Pod::Simple::PullParserToken'=> '3.13',
12767 'Pod::Simple::RTF' => '3.13',
12768 'Pod::Simple::Search' => '3.13',
12769 'Pod::Simple::SimpleTree'=> '3.13',
12770 'Pod::Simple::Text' => '3.13',
12771 'Pod::Simple::TextContent'=> '3.13',
12772 'Pod::Simple::TiedOutFH'=> '3.13',
12773 'Pod::Simple::Transcode'=> '3.13',
12774 'Pod::Simple::TranscodeDumb'=> '3.13',
12775 'Pod::Simple::TranscodeSmart'=> '3.13',
12776 'Pod::Simple::XHTML' => '3.13',
12777 'Pod::Simple::XMLOutStream'=> '3.13',
12778 'Pod::Text' => '3.13',
12779 'Pod::Text::Color' => '2.05',
12780 'Pod::Text::Overstrike' => '2.03',
12781 'Pod::Text::Termcap' => '2.05',
12782 'Pod::Usage' => '1.36',
12783 'SDBM_File' => '1.06',
12784 'Safe' => '2.21',
12785 'Scalar::Util' => '1.22',
12786 'Scalar::Util::PP' => '1.22',
12787 'Search::Dict' => '1.02',
12788 'SelectSaver' => '1.02',
12789 'SelfLoader' => '1.17',
12790 'Shell' => '0.72_01',
12791 'Socket' => '1.85',
12792 'Storable' => '2.22',
12793 'Switch' => '2.16',
12794 'Symbol' => '1.07',
12795 'Sys::Hostname' => '1.11',
12796 'Sys::Syslog' => '0.27',
12797 'Sys::Syslog::win32::Win32'=> undef,
12798 'TAP::Base' => '3.17',
12799 'TAP::Formatter::Base' => '3.17',
12800 'TAP::Formatter::Color' => '3.17',
12801 'TAP::Formatter::Console'=> '3.17',
12802 'TAP::Formatter::Console::ParallelSession'=> '3.17',
12803 'TAP::Formatter::Console::Session'=> '3.17',
12804 'TAP::Formatter::File' => '3.17',
12805 'TAP::Formatter::File::Session'=> '3.17',
12806 'TAP::Formatter::Session'=> '3.17',
12807 'TAP::Harness' => '3.17',
12808 'TAP::Object' => '3.17',
12809 'TAP::Parser' => '3.17',
12810 'TAP::Parser::Aggregator'=> '3.17',
12811 'TAP::Parser::Grammar' => '3.17',
12812 'TAP::Parser::Iterator' => '3.17',
12813 'TAP::Parser::Iterator::Array'=> '3.17',
12814 'TAP::Parser::Iterator::Process'=> '3.17',
12815 'TAP::Parser::Iterator::Stream'=> '3.17',
12816 'TAP::Parser::IteratorFactory'=> '3.17',
12817 'TAP::Parser::Multiplexer'=> '3.17',
12818 'TAP::Parser::Result' => '3.17',
12819 'TAP::Parser::Result::Bailout'=> '3.17',
12820 'TAP::Parser::Result::Comment'=> '3.17',
12821 'TAP::Parser::Result::Plan'=> '3.17',
12822 'TAP::Parser::Result::Pragma'=> '3.17',
12823 'TAP::Parser::Result::Test'=> '3.17',
12824 'TAP::Parser::Result::Unknown'=> '3.17',
12825 'TAP::Parser::Result::Version'=> '3.17',
12826 'TAP::Parser::Result::YAML'=> '3.17',
12827 'TAP::Parser::ResultFactory'=> '3.17',
12828 'TAP::Parser::Scheduler'=> '3.17',
12829 'TAP::Parser::Scheduler::Job'=> '3.17',
12830 'TAP::Parser::Scheduler::Spinner'=> '3.17',
12831 'TAP::Parser::Source' => '3.17',
12832 'TAP::Parser::Source::Perl'=> '3.17',
12833 'TAP::Parser::Utils' => '3.17',
12834 'TAP::Parser::YAMLish::Reader'=> '3.17',
12835 'TAP::Parser::YAMLish::Writer'=> '3.17',
12836 'Term::ANSIColor' => '2.02',
12837 'Term::Cap' => '1.12',
12838 'Term::Complete' => '1.402',
12839 'Term::ReadLine' => '1.05',
12840 'Term::UI' => '0.20',
12841 'Term::UI::History' => undef,
12842 'Test' => '1.25_02',
12843 'Test::Builder' => '0.94',
12844 'Test::Builder::Module' => '0.94',
12845 'Test::Builder::Tester' => '1.18',
12846 'Test::Builder::Tester::Color'=> '1.18',
12847 'Test::Harness' => '3.17',
12848 'Test::More' => '0.94',
12849 'Test::Simple' => '0.94',
12850 'Text::Abbrev' => '1.01',
12851 'Text::Balanced' => '2.02',
12852 'Text::ParseWords' => '3.27',
12853 'Text::Soundex' => '3.03_01',
12854 'Text::Tabs' => '2009.0305',
12855 'Text::Wrap' => '2009.0305',
12856 'Thread' => '3.02',
12857 'Thread::Queue' => '2.11',
12858 'Thread::Semaphore' => '2.09',
12859 'Tie::Array' => '1.03',
12860 'Tie::File' => '0.97_02',
12861 'Tie::Handle' => '4.2',
12862 'Tie::Hash' => '1.03',
12863 'Tie::Hash::NamedCapture'=> '0.06',
12864 'Tie::Memoize' => '1.1',
12865 'Tie::RefHash' => '1.38',
12866 'Tie::Scalar' => '1.01',
12867 'Tie::StdHandle' => '4.2',
12868 'Tie::SubstrHash' => '1.00',
12869 'Time::HiRes' => '1.9719',
12870 'Time::Local' => '1.1901_01',
12871 'Time::Piece' => '1.15',
12872 'Time::Piece::Seconds' => undef,
12873 'Time::Seconds' => undef,
12874 'Time::gmtime' => '1.03',
12875 'Time::localtime' => '1.02',
12876 'Time::tm' => '1.00',
12877 'UNIVERSAL' => '1.06',
12878 'Unicode' => '5.2.0',
12879 'Unicode::Collate' => '0.52_01',
12880 'Unicode::Normalize' => '1.03',
12881 'Unicode::UCD' => '0.27',
12882 'User::grent' => '1.01',
12883 'User::pwent' => '1.00',
12884 'VMS::DCLsym' => '1.03',
12885 'VMS::Stdio' => '2.4',
12886 'Win32' => '0.39',
12887 'Win32API::File' => '0.1101',
12888 'Win32API::File::ExtUtils::Myconst2perl'=> '1',
12889 'Win32CORE' => '0.02',
12890 'XS::APItest' => '0.17',
12891 'XS::APItest::KeywordRPN'=> '0.003',
12892 'XS::Typemap' => '0.03',
12893 'XSLoader' => '0.10',
12894 'XSLoader::XSLoader' => '0.10',
12895 'attributes' => '0.12',
12896 'autodie' => '2.06_01',
12897 'autodie::exception' => '2.06_01',
12898 'autodie::exception::system'=> '2.06_01',
12899 'autodie::hints' => '2.06_01',
12900 'autouse' => '1.06',
12901 'base' => '2.15',
12902 'bigint' => '0.23',
12903 'bignum' => '0.23',
12904 'bigrat' => '0.23',
12905 'blib' => '1.04',
12906 'bytes' => '1.03',
12907 'charnames' => '1.07',
12908 'constant' => '1.20',
12909 'deprecate' => '0.01',
12910 'diagnostics' => '1.19',
12911 'encoding' => '2.6_01',
12912 'encoding::warnings' => '0.11',
12913 'feature' => '1.15',
12914 'fields' => '2.15',
12915 'filetest' => '1.02',
12916 'if' => '0.05',
12917 'inc::latest' => '0.3603',
12918 'integer' => '1.00',
12919 'less' => '0.03',
12920 'lib' => '0.62',
12921 'locale' => '1.00',
12922 'mro' => '1.02',
12923 'open' => '1.07',
12924 'ops' => '1.02',
12925 'overload' => '1.10',
12926 'overload::numbers' => undef,
12927 'overloading' => '0.01',
12928 'parent' => '0.223',
12929 're' => '0.11',
12930 'sigtrap' => '1.04',
12931 'sort' => '2.01',
12932 'strict' => '1.04',
12933 'subs' => '1.00',
12934 'threads' => '1.75',
12935 'threads::shared' => '1.32',
12936 'utf8' => '1.07',
12937 'vars' => '1.01',
12938 'version' => '0.81',
12939 'vmsish' => '1.02',
12940 'warnings' => '1.09',
12941 'warnings::register' => '1.01',
12944 5.011005 => {
12945 'AnyDBM_File' => '1.00',
12946 'App::Cpan' => '1.5701',
12947 'App::Prove' => '3.17',
12948 'App::Prove::State' => '3.17',
12949 'App::Prove::State::Result'=> '3.17',
12950 'App::Prove::State::Result::Test'=> '3.17',
12951 'Archive::Extract' => '0.38',
12952 'Archive::Tar' => '1.54',
12953 'Archive::Tar::Constant'=> '0.02',
12954 'Archive::Tar::File' => '0.02',
12955 'Attribute::Handlers' => '0.87',
12956 'AutoLoader' => '5.70',
12957 'AutoSplit' => '1.06',
12958 'B' => '1.23',
12959 'B::Concise' => '0.78',
12960 'B::Debug' => '1.12',
12961 'B::Deparse' => '0.94',
12962 'B::Lint' => '1.11_01',
12963 'B::Lint::Debug' => '0.01',
12964 'B::Showlex' => '1.02',
12965 'B::Terse' => '1.05',
12966 'B::Xref' => '1.02',
12967 'Benchmark' => '1.11',
12968 'CGI' => '3.48',
12969 'CGI::Apache' => '1.01',
12970 'CGI::Carp' => '3.45',
12971 'CGI::Cookie' => '1.29',
12972 'CGI::Fast' => '1.07',
12973 'CGI::Pretty' => '3.46',
12974 'CGI::Push' => '1.04',
12975 'CGI::Switch' => '1.01',
12976 'CGI::Util' => '3.48',
12977 'CPAN' => '1.94_56',
12978 'CPAN::Author' => '5.5',
12979 'CPAN::Bundle' => '5.5',
12980 'CPAN::CacheMgr' => '5.5',
12981 'CPAN::Complete' => '5.5',
12982 'CPAN::Debug' => '5.5001',
12983 'CPAN::DeferredCode' => '5.50',
12984 'CPAN::Distribution' => '1.9456',
12985 'CPAN::Distroprefs' => '6',
12986 'CPAN::Distrostatus' => '5.5',
12987 'CPAN::Exception::RecursiveDependency'=> '5.5',
12988 'CPAN::Exception::blocked_urllist'=> '1.0',
12989 'CPAN::Exception::yaml_not_installed'=> '5.5',
12990 'CPAN::FTP' => '5.5004',
12991 'CPAN::FTP::netrc' => '1.00',
12992 'CPAN::FirstTime' => '5.5301',
12993 'CPAN::HandleConfig' => '5.5001',
12994 'CPAN::Index' => '1.94',
12995 'CPAN::InfoObj' => '5.5',
12996 'CPAN::Kwalify' => '5.50',
12997 'CPAN::LWP::UserAgent' => '1.94',
12998 'CPAN::Mirrors' => '1.77',
12999 'CPAN::Module' => '5.5',
13000 'CPAN::Nox' => '5.50',
13001 'CPAN::Prompt' => '5.5',
13002 'CPAN::Queue' => '5.5',
13003 'CPAN::Shell' => '5.5001',
13004 'CPAN::Tarzip' => '5.5011',
13005 'CPAN::URL' => '5.5',
13006 'CPAN::Version' => '5.5',
13007 'CPANPLUS' => '0.90',
13008 'CPANPLUS::Backend' => undef,
13009 'CPANPLUS::Backend::RV' => undef,
13010 'CPANPLUS::Config' => undef,
13011 'CPANPLUS::Configure' => undef,
13012 'CPANPLUS::Configure::Setup'=> undef,
13013 'CPANPLUS::Dist' => undef,
13014 'CPANPLUS::Dist::Autobundle'=> undef,
13015 'CPANPLUS::Dist::Base' => undef,
13016 'CPANPLUS::Dist::Build' => '0.46',
13017 'CPANPLUS::Dist::Build::Constants'=> '0.46',
13018 'CPANPLUS::Dist::MM' => undef,
13019 'CPANPLUS::Dist::Sample'=> undef,
13020 'CPANPLUS::Error' => undef,
13021 'CPANPLUS::Internals' => '0.90',
13022 'CPANPLUS::Internals::Constants'=> undef,
13023 'CPANPLUS::Internals::Constants::Report'=> undef,
13024 'CPANPLUS::Internals::Extract'=> undef,
13025 'CPANPLUS::Internals::Fetch'=> undef,
13026 'CPANPLUS::Internals::Report'=> undef,
13027 'CPANPLUS::Internals::Search'=> undef,
13028 'CPANPLUS::Internals::Source'=> undef,
13029 'CPANPLUS::Internals::Source::Memory'=> undef,
13030 'CPANPLUS::Internals::Source::SQLite'=> undef,
13031 'CPANPLUS::Internals::Source::SQLite::Tie'=> undef,
13032 'CPANPLUS::Internals::Utils'=> undef,
13033 'CPANPLUS::Internals::Utils::Autoflush'=> undef,
13034 'CPANPLUS::Module' => undef,
13035 'CPANPLUS::Module::Author'=> undef,
13036 'CPANPLUS::Module::Author::Fake'=> undef,
13037 'CPANPLUS::Module::Checksums'=> undef,
13038 'CPANPLUS::Module::Fake'=> undef,
13039 'CPANPLUS::Module::Signature'=> undef,
13040 'CPANPLUS::Selfupdate' => undef,
13041 'CPANPLUS::Shell' => undef,
13042 'CPANPLUS::Shell::Classic'=> '0.0562',
13043 'CPANPLUS::Shell::Default'=> '0.90',
13044 'CPANPLUS::Shell::Default::Plugins::CustomSource'=> undef,
13045 'CPANPLUS::Shell::Default::Plugins::Remote'=> undef,
13046 'CPANPLUS::Shell::Default::Plugins::Source'=> undef,
13047 'Carp' => '1.15',
13048 'Carp::Heavy' => '1.15',
13049 'Class::ISA' => '0.36',
13050 'Class::Struct' => '0.63',
13051 'Compress::Raw::Bzip2' => '2.024',
13052 'Compress::Raw::Zlib' => '2.024',
13053 'Compress::Zlib' => '2.024',
13054 'Config' => undef,
13055 'Config::Extensions' => '0.01',
13056 'Cwd' => '3.31',
13057 'DB' => '1.02',
13058 'DBM_Filter' => '0.03',
13059 'DBM_Filter::compress' => '0.02',
13060 'DBM_Filter::encode' => '0.02',
13061 'DBM_Filter::int32' => '0.02',
13062 'DBM_Filter::null' => '0.02',
13063 'DBM_Filter::utf8' => '0.02',
13064 'DB_File' => '1.820',
13065 'Data::Dumper' => '2.125',
13066 'Devel::DProf' => '20080331.00',
13067 'Devel::DProf::V' => undef,
13068 'Devel::DProf::dprof::V'=> undef,
13069 'Devel::InnerPackage' => '0.3',
13070 'Devel::PPPort' => '3.19',
13071 'Devel::Peek' => '1.04',
13072 'Devel::SelfStubber' => '1.03',
13073 'Digest' => '1.16',
13074 'Digest::MD5' => '2.39',
13075 'Digest::SHA' => '5.47',
13076 'Digest::base' => '1.16',
13077 'Digest::file' => '1.16',
13078 'DirHandle' => '1.03',
13079 'Dumpvalue' => '1.13',
13080 'DynaLoader' => '1.10',
13081 'Encode' => '2.39',
13082 'Encode::Alias' => '2.12',
13083 'Encode::Byte' => '2.04',
13084 'Encode::CJKConstants' => '2.02',
13085 'Encode::CN' => '2.03',
13086 'Encode::CN::HZ' => '2.05',
13087 'Encode::Config' => '2.05',
13088 'Encode::EBCDIC' => '2.02',
13089 'Encode::Encoder' => '2.01',
13090 'Encode::Encoding' => '2.05',
13091 'Encode::GSM0338' => '2.01',
13092 'Encode::Guess' => '2.03',
13093 'Encode::JP' => '2.04',
13094 'Encode::JP::H2Z' => '2.02',
13095 'Encode::JP::JIS7' => '2.04',
13096 'Encode::KR' => '2.03',
13097 'Encode::KR::2022_KR' => '2.02',
13098 'Encode::MIME::Header' => '2.11',
13099 'Encode::MIME::Header::ISO_2022_JP'=> '1.03',
13100 'Encode::MIME::Name' => '1.01',
13101 'Encode::Symbol' => '2.02',
13102 'Encode::TW' => '2.03',
13103 'Encode::Unicode' => '2.07',
13104 'Encode::Unicode::UTF7' => '2.04',
13105 'English' => '1.04',
13106 'Env' => '1.01',
13107 'Errno' => '1.11',
13108 'Exporter' => '5.64_01',
13109 'Exporter::Heavy' => '5.64_01',
13110 'ExtUtils::CBuilder' => '0.27',
13111 'ExtUtils::CBuilder::Base'=> '0.27',
13112 'ExtUtils::CBuilder::Platform::Unix'=> '0.27',
13113 'ExtUtils::CBuilder::Platform::VMS'=> '0.27',
13114 'ExtUtils::CBuilder::Platform::Windows'=> '0.27',
13115 'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.27',
13116 'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.27',
13117 'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.27',
13118 'ExtUtils::CBuilder::Platform::aix'=> '0.27',
13119 'ExtUtils::CBuilder::Platform::cygwin'=> '0.27',
13120 'ExtUtils::CBuilder::Platform::darwin'=> '0.27',
13121 'ExtUtils::CBuilder::Platform::dec_osf'=> '0.27',
13122 'ExtUtils::CBuilder::Platform::os2'=> '0.27',
13123 'ExtUtils::Command' => '1.16',
13124 'ExtUtils::Command::MM' => '6.56',
13125 'ExtUtils::Constant' => '0.22',
13126 'ExtUtils::Constant::Base'=> '0.04',
13127 'ExtUtils::Constant::ProxySubs'=> '0.06',
13128 'ExtUtils::Constant::Utils'=> '0.02',
13129 'ExtUtils::Constant::XS'=> '0.03',
13130 'ExtUtils::Embed' => '1.28',
13131 'ExtUtils::Install' => '1.55',
13132 'ExtUtils::Installed' => '1.999_001',
13133 'ExtUtils::Liblist' => '6.56',
13134 'ExtUtils::Liblist::Kid'=> '6.56',
13135 'ExtUtils::MM' => '6.56',
13136 'ExtUtils::MM_AIX' => '6.56',
13137 'ExtUtils::MM_Any' => '6.56',
13138 'ExtUtils::MM_BeOS' => '6.56',
13139 'ExtUtils::MM_Cygwin' => '6.56',
13140 'ExtUtils::MM_DOS' => '6.56',
13141 'ExtUtils::MM_Darwin' => '6.56',
13142 'ExtUtils::MM_MacOS' => '6.56',
13143 'ExtUtils::MM_NW5' => '6.56',
13144 'ExtUtils::MM_OS2' => '6.56',
13145 'ExtUtils::MM_QNX' => '6.56',
13146 'ExtUtils::MM_UWIN' => '6.56',
13147 'ExtUtils::MM_Unix' => '6.56',
13148 'ExtUtils::MM_VMS' => '6.56',
13149 'ExtUtils::MM_VOS' => '6.56',
13150 'ExtUtils::MM_Win32' => '6.56',
13151 'ExtUtils::MM_Win95' => '6.56',
13152 'ExtUtils::MY' => '6.56',
13153 'ExtUtils::MakeMaker' => '6.56',
13154 'ExtUtils::MakeMaker::Config'=> '6.56',
13155 'ExtUtils::Manifest' => '1.57',
13156 'ExtUtils::Miniperl' => undef,
13157 'ExtUtils::Mkbootstrap' => '6.56',
13158 'ExtUtils::Mksymlists' => '6.56',
13159 'ExtUtils::Packlist' => '1.44',
13160 'ExtUtils::ParseXS' => '2.21',
13161 'ExtUtils::XSSymSet' => '1.1',
13162 'ExtUtils::testlib' => '6.56',
13163 'Fatal' => '2.06_01',
13164 'Fcntl' => '1.06',
13165 'File::Basename' => '2.78',
13166 'File::CheckTree' => '4.4',
13167 'File::Compare' => '1.1006',
13168 'File::Copy' => '2.17',
13169 'File::DosGlob' => '1.01',
13170 'File::Fetch' => '0.24',
13171 'File::Find' => '1.15',
13172 'File::Glob' => '1.07',
13173 'File::GlobMapper' => '1.000',
13174 'File::Path' => '2.08_01',
13175 'File::Spec' => '3.31',
13176 'File::Spec::Cygwin' => '3.30',
13177 'File::Spec::Epoc' => '3.30',
13178 'File::Spec::Functions' => '3.30',
13179 'File::Spec::Mac' => '3.30',
13180 'File::Spec::OS2' => '3.30',
13181 'File::Spec::Unix' => '3.30',
13182 'File::Spec::VMS' => '3.30',
13183 'File::Spec::Win32' => '3.30',
13184 'File::Temp' => '0.22',
13185 'File::stat' => '1.02',
13186 'FileCache' => '1.08',
13187 'FileHandle' => '2.02',
13188 'VMS::Filespec' => '1.12',
13189 'Filter::Simple' => '0.84',
13190 'Filter::Util::Call' => '1.08',
13191 'FindBin' => '1.50',
13192 'GDBM_File' => '1.10',
13193 'Getopt::Long' => '2.38',
13194 'Getopt::Std' => '1.06',
13195 'Hash::Util' => '0.07',
13196 'Hash::Util::FieldHash' => '1.04',
13197 'I18N::Collate' => '1.01',
13198 'I18N::LangTags' => '0.35',
13199 'I18N::LangTags::Detect'=> '1.04',
13200 'I18N::LangTags::List' => '0.35',
13201 'I18N::Langinfo' => '0.03',
13202 'IO' => '1.25_02',
13203 'IO::Compress::Adapter::Bzip2'=> '2.024',
13204 'IO::Compress::Adapter::Deflate'=> '2.024',
13205 'IO::Compress::Adapter::Identity'=> '2.024',
13206 'IO::Compress::Base' => '2.024',
13207 'IO::Compress::Base::Common'=> '2.024',
13208 'IO::Compress::Bzip2' => '2.024',
13209 'IO::Compress::Deflate' => '2.024',
13210 'IO::Compress::Gzip' => '2.024',
13211 'IO::Compress::Gzip::Constants'=> '2.024',
13212 'IO::Compress::RawDeflate'=> '2.024',
13213 'IO::Compress::Zip' => '2.024',
13214 'IO::Compress::Zip::Constants'=> '2.024',
13215 'IO::Compress::Zlib::Constants'=> '2.024',
13216 'IO::Compress::Zlib::Extra'=> '2.024',
13217 'IO::Dir' => '1.07',
13218 'IO::File' => '1.14',
13219 'IO::Handle' => '1.28',
13220 'IO::Pipe' => '1.13',
13221 'IO::Poll' => '0.07',
13222 'IO::Seekable' => '1.10',
13223 'IO::Select' => '1.17',
13224 'IO::Socket' => '1.31',
13225 'IO::Socket::INET' => '1.31',
13226 'IO::Socket::UNIX' => '1.23',
13227 'IO::Uncompress::Adapter::Bunzip2'=> '2.024',
13228 'IO::Uncompress::Adapter::Identity'=> '2.024',
13229 'IO::Uncompress::Adapter::Inflate'=> '2.024',
13230 'IO::Uncompress::AnyInflate'=> '2.024',
13231 'IO::Uncompress::AnyUncompress'=> '2.024',
13232 'IO::Uncompress::Base' => '2.024',
13233 'IO::Uncompress::Bunzip2'=> '2.024',
13234 'IO::Uncompress::Gunzip'=> '2.024',
13235 'IO::Uncompress::Inflate'=> '2.024',
13236 'IO::Uncompress::RawInflate'=> '2.024',
13237 'IO::Uncompress::Unzip' => '2.024',
13238 'IO::Zlib' => '1.10',
13239 'IPC::Cmd' => '0.54',
13240 'IPC::Msg' => '2.01',
13241 'IPC::Open2' => '1.03',
13242 'IPC::Open3' => '1.05',
13243 'IPC::Semaphore' => '2.01',
13244 'IPC::SharedMem' => '2.01',
13245 'IPC::SysV' => '2.01',
13246 'List::Util' => '1.22',
13247 'List::Util::PP' => '1.22',
13248 'List::Util::XS' => '1.22',
13249 'Locale::Constants' => '2.07',
13250 'Locale::Country' => '2.07',
13251 'Locale::Currency' => '2.07',
13252 'Locale::Language' => '2.07',
13253 'Locale::Maketext' => '1.14',
13254 'Locale::Maketext::Guts'=> '1.13',
13255 'Locale::Maketext::GutsLoader'=> '1.13',
13256 'Locale::Maketext::Simple'=> '0.21',
13257 'Locale::Script' => '2.07',
13258 'Log::Message' => '0.02',
13259 'Log::Message::Config' => '0.01',
13260 'Log::Message::Handlers'=> undef,
13261 'Log::Message::Item' => undef,
13262 'Log::Message::Simple' => '0.06',
13263 'MIME::Base64' => '3.08',
13264 'MIME::QuotedPrint' => '3.08',
13265 'Math::BigFloat' => '1.60',
13266 'Math::BigFloat::Trace' => '0.01',
13267 'Math::BigInt' => '1.89_01',
13268 'Math::BigInt::Calc' => '0.52',
13269 'Math::BigInt::CalcEmu' => '0.05',
13270 'Math::BigInt::FastCalc'=> '0.19',
13271 'Math::BigInt::Trace' => '0.01',
13272 'Math::BigRat' => '0.24',
13273 'Math::Complex' => '1.56',
13274 'Math::Trig' => '1.2',
13275 'Memoize' => '1.01_03',
13276 'Memoize::AnyDBM_File' => '0.65',
13277 'Memoize::Expire' => '1.00',
13278 'Memoize::ExpireFile' => '1.01',
13279 'Memoize::ExpireTest' => '0.65',
13280 'Memoize::NDBM_File' => '0.65',
13281 'Memoize::SDBM_File' => '0.65',
13282 'Memoize::Storable' => '0.65',
13283 'Module::Build' => '0.3603',
13284 'Module::Build::Base' => '0.3603',
13285 'Module::Build::Compat' => '0.3603',
13286 'Module::Build::Config' => '0.3603',
13287 'Module::Build::ConfigData'=> undef,
13288 'Module::Build::Cookbook'=> '0.3603',
13289 'Module::Build::Dumper' => '0.3603',
13290 'Module::Build::ModuleInfo'=> '0.3603',
13291 'Module::Build::Notes' => '0.3603',
13292 'Module::Build::PPMMaker'=> '0.3603',
13293 'Module::Build::Platform::Amiga'=> '0.3603',
13294 'Module::Build::Platform::Default'=> '0.3603',
13295 'Module::Build::Platform::EBCDIC'=> '0.3603',
13296 'Module::Build::Platform::MPEiX'=> '0.3603',
13297 'Module::Build::Platform::MacOS'=> '0.3603',
13298 'Module::Build::Platform::RiscOS'=> '0.3603',
13299 'Module::Build::Platform::Unix'=> '0.3603',
13300 'Module::Build::Platform::VMS'=> '0.3603',
13301 'Module::Build::Platform::VOS'=> '0.3603',
13302 'Module::Build::Platform::Windows'=> '0.3603',
13303 'Module::Build::Platform::aix'=> '0.3603',
13304 'Module::Build::Platform::cygwin'=> '0.3603',
13305 'Module::Build::Platform::darwin'=> '0.3603',
13306 'Module::Build::Platform::os2'=> '0.3603',
13307 'Module::Build::PodParser'=> '0.3603',
13308 'Module::Build::Version'=> '0.77',
13309 'Module::Build::YAML' => '1.40',
13310 'Module::CoreList' => '2.26',
13311 'Module::Load' => '0.16',
13312 'Module::Load::Conditional'=> '0.34',
13313 'Module::Loaded' => '0.06',
13314 'Module::Pluggable' => '3.9',
13315 'Module::Pluggable::Object'=> '3.9',
13316 'Moped::Msg' => '0.01',
13317 'NDBM_File' => '1.08',
13318 'NEXT' => '0.64',
13319 'Net::Cmd' => '2.29',
13320 'Net::Config' => '1.11',
13321 'Net::Domain' => '2.20',
13322 'Net::FTP' => '2.77',
13323 'Net::FTP::A' => '1.18',
13324 'Net::FTP::E' => '0.01',
13325 'Net::FTP::I' => '1.12',
13326 'Net::FTP::L' => '0.01',
13327 'Net::FTP::dataconn' => '0.11',
13328 'Net::NNTP' => '2.24',
13329 'Net::Netrc' => '2.12',
13330 'Net::POP3' => '2.29',
13331 'Net::Ping' => '2.36',
13332 'Net::SMTP' => '2.31',
13333 'Net::Time' => '2.10',
13334 'Net::hostent' => '1.01',
13335 'Net::netent' => '1.00',
13336 'Net::protoent' => '1.00',
13337 'Net::servent' => '1.01',
13338 'O' => '1.01',
13339 'ODBM_File' => '1.07',
13340 'Object::Accessor' => '0.36',
13341 'Opcode' => '1.15',
13342 'POSIX' => '1.19',
13343 'Package::Constants' => '0.02',
13344 'Params::Check' => '0.26',
13345 'Parse::CPAN::Meta' => '1.40',
13346 'PerlIO' => '1.06',
13347 'PerlIO::encoding' => '0.12',
13348 'PerlIO::scalar' => '0.07',
13349 'PerlIO::via' => '0.09',
13350 'PerlIO::via::QuotedPrint'=> '0.06',
13351 'Pod::Checker' => '1.45',
13352 'Pod::Escapes' => '1.04',
13353 'Pod::Find' => '1.35',
13354 'Pod::Functions' => '1.03',
13355 'Pod::Html' => '1.09',
13356 'Pod::InputObjects' => '1.31',
13357 'Pod::LaTeX' => '0.58',
13358 'Pod::Man' => '2.23',
13359 'Pod::ParseLink' => '1.10',
13360 'Pod::ParseUtils' => '1.36',
13361 'Pod::Parser' => '1.37',
13362 'Pod::Perldoc' => '3.15_02',
13363 'Pod::Perldoc::BaseTo' => undef,
13364 'Pod::Perldoc::GetOptsOO'=> undef,
13365 'Pod::Perldoc::ToChecker'=> undef,
13366 'Pod::Perldoc::ToMan' => undef,
13367 'Pod::Perldoc::ToNroff' => undef,
13368 'Pod::Perldoc::ToPod' => undef,
13369 'Pod::Perldoc::ToRtf' => undef,
13370 'Pod::Perldoc::ToText' => undef,
13371 'Pod::Perldoc::ToTk' => undef,
13372 'Pod::Perldoc::ToXml' => undef,
13373 'Pod::PlainText' => '2.04',
13374 'Pod::Plainer' => '1.02',
13375 'Pod::Select' => '1.36',
13376 'Pod::Simple' => '3.13',
13377 'Pod::Simple::BlackBox' => '3.13',
13378 'Pod::Simple::Checker' => '3.13',
13379 'Pod::Simple::Debug' => '3.13',
13380 'Pod::Simple::DumpAsText'=> '3.13',
13381 'Pod::Simple::DumpAsXML'=> '3.13',
13382 'Pod::Simple::HTML' => '3.13',
13383 'Pod::Simple::HTMLBatch'=> '3.13',
13384 'Pod::Simple::HTMLLegacy'=> '5.01',
13385 'Pod::Simple::LinkSection'=> '3.13',
13386 'Pod::Simple::Methody' => '3.13',
13387 'Pod::Simple::Progress' => '3.13',
13388 'Pod::Simple::PullParser'=> '3.13',
13389 'Pod::Simple::PullParserEndToken'=> '3.13',
13390 'Pod::Simple::PullParserStartToken'=> '3.13',
13391 'Pod::Simple::PullParserTextToken'=> '3.13',
13392 'Pod::Simple::PullParserToken'=> '3.13',
13393 'Pod::Simple::RTF' => '3.13',
13394 'Pod::Simple::Search' => '3.13',
13395 'Pod::Simple::SimpleTree'=> '3.13',
13396 'Pod::Simple::Text' => '3.13',
13397 'Pod::Simple::TextContent'=> '3.13',
13398 'Pod::Simple::TiedOutFH'=> '3.13',
13399 'Pod::Simple::Transcode'=> '3.13',
13400 'Pod::Simple::TranscodeDumb'=> '3.13',
13401 'Pod::Simple::TranscodeSmart'=> '3.13',
13402 'Pod::Simple::XHTML' => '3.13',
13403 'Pod::Simple::XMLOutStream'=> '3.13',
13404 'Pod::Text' => '3.14',
13405 'Pod::Text::Color' => '2.06',
13406 'Pod::Text::Overstrike' => '2.04',
13407 'Pod::Text::Termcap' => '2.06',
13408 'Pod::Usage' => '1.36',
13409 'SDBM_File' => '1.06',
13410 'Safe' => '2.22',
13411 'Scalar::Util' => '1.22',
13412 'Scalar::Util::PP' => '1.22',
13413 'Search::Dict' => '1.02',
13414 'SelectSaver' => '1.02',
13415 'SelfLoader' => '1.17',
13416 'Shell' => '0.72_01',
13417 'Socket' => '1.86',
13418 'Storable' => '2.22',
13419 'Switch' => '2.16',
13420 'Symbol' => '1.07',
13421 'Sys::Hostname' => '1.11',
13422 'Sys::Syslog' => '0.27',
13423 'Sys::Syslog::win32::Win32'=> undef,
13424 'TAP::Base' => '3.17',
13425 'TAP::Formatter::Base' => '3.17',
13426 'TAP::Formatter::Color' => '3.17',
13427 'TAP::Formatter::Console'=> '3.17',
13428 'TAP::Formatter::Console::ParallelSession'=> '3.17',
13429 'TAP::Formatter::Console::Session'=> '3.17',
13430 'TAP::Formatter::File' => '3.17',
13431 'TAP::Formatter::File::Session'=> '3.17',
13432 'TAP::Formatter::Session'=> '3.17',
13433 'TAP::Harness' => '3.17',
13434 'TAP::Object' => '3.17',
13435 'TAP::Parser' => '3.17',
13436 'TAP::Parser::Aggregator'=> '3.17',
13437 'TAP::Parser::Grammar' => '3.17',
13438 'TAP::Parser::Iterator' => '3.17',
13439 'TAP::Parser::Iterator::Array'=> '3.17',
13440 'TAP::Parser::Iterator::Process'=> '3.17',
13441 'TAP::Parser::Iterator::Stream'=> '3.17',
13442 'TAP::Parser::IteratorFactory'=> '3.17',
13443 'TAP::Parser::Multiplexer'=> '3.17',
13444 'TAP::Parser::Result' => '3.17',
13445 'TAP::Parser::Result::Bailout'=> '3.17',
13446 'TAP::Parser::Result::Comment'=> '3.17',
13447 'TAP::Parser::Result::Plan'=> '3.17',
13448 'TAP::Parser::Result::Pragma'=> '3.17',
13449 'TAP::Parser::Result::Test'=> '3.17',
13450 'TAP::Parser::Result::Unknown'=> '3.17',
13451 'TAP::Parser::Result::Version'=> '3.17',
13452 'TAP::Parser::Result::YAML'=> '3.17',
13453 'TAP::Parser::ResultFactory'=> '3.17',
13454 'TAP::Parser::Scheduler'=> '3.17',
13455 'TAP::Parser::Scheduler::Job'=> '3.17',
13456 'TAP::Parser::Scheduler::Spinner'=> '3.17',
13457 'TAP::Parser::Source' => '3.17',
13458 'TAP::Parser::Source::Perl'=> '3.17',
13459 'TAP::Parser::Utils' => '3.17',
13460 'TAP::Parser::YAMLish::Reader'=> '3.17',
13461 'TAP::Parser::YAMLish::Writer'=> '3.17',
13462 'Term::ANSIColor' => '2.02',
13463 'Term::Cap' => '1.12',
13464 'Term::Complete' => '1.402',
13465 'Term::ReadLine' => '1.05',
13466 'Term::UI' => '0.20',
13467 'Term::UI::History' => undef,
13468 'Test' => '1.25_02',
13469 'Test::Builder' => '0.94',
13470 'Test::Builder::Module' => '0.94',
13471 'Test::Builder::Tester' => '1.18',
13472 'Test::Builder::Tester::Color'=> '1.18',
13473 'Test::Harness' => '3.17',
13474 'Test::More' => '0.94',
13475 'Test::Simple' => '0.94',
13476 'Text::Abbrev' => '1.01',
13477 'Text::Balanced' => '2.02',
13478 'Text::ParseWords' => '3.27',
13479 'Text::Soundex' => '3.03_01',
13480 'Text::Tabs' => '2009.0305',
13481 'Text::Wrap' => '2009.0305',
13482 'Thread' => '3.02',
13483 'Thread::Queue' => '2.11',
13484 'Thread::Semaphore' => '2.09',
13485 'Tie::Array' => '1.03',
13486 'Tie::File' => '0.97_02',
13487 'Tie::Handle' => '4.2',
13488 'Tie::Hash' => '1.03',
13489 'Tie::Hash::NamedCapture'=> '0.06',
13490 'Tie::Memoize' => '1.1',
13491 'Tie::RefHash' => '1.38',
13492 'Tie::Scalar' => '1.01',
13493 'Tie::StdHandle' => '4.2',
13494 'Tie::SubstrHash' => '1.00',
13495 'Time::HiRes' => '1.9719',
13496 'Time::Local' => '1.1901_01',
13497 'Time::Piece' => '1.15',
13498 'Time::Piece::Seconds' => undef,
13499 'Time::Seconds' => undef,
13500 'Time::gmtime' => '1.03',
13501 'Time::localtime' => '1.02',
13502 'Time::tm' => '1.00',
13503 'UNIVERSAL' => '1.06',
13504 'Unicode' => '5.2.0',
13505 'Unicode::Collate' => '0.52_01',
13506 'Unicode::Normalize' => '1.03',
13507 'Unicode::UCD' => '0.27',
13508 'User::grent' => '1.01',
13509 'User::pwent' => '1.00',
13510 'VMS::DCLsym' => '1.03',
13511 'VMS::Stdio' => '2.4',
13512 'Win32' => '0.39',
13513 'Win32API::File' => '0.1101',
13514 'Win32API::File::ExtUtils::Myconst2perl'=> '1',
13515 'Win32CORE' => '0.02',
13516 'XS::APItest' => '0.17',
13517 'XS::APItest::KeywordRPN'=> '0.003',
13518 'XS::Typemap' => '0.03',
13519 'XSLoader' => '0.10',
13520 'XSLoader::XSLoader' => '0.10',
13521 'attributes' => '0.12',
13522 'autodie' => '2.06_01',
13523 'autodie::exception' => '2.06_01',
13524 'autodie::exception::system'=> '2.06_01',
13525 'autodie::hints' => '2.06_01',
13526 'autouse' => '1.06',
13527 'base' => '2.15',
13528 'bigint' => '0.23',
13529 'bignum' => '0.23',
13530 'bigrat' => '0.23',
13531 'blib' => '1.04',
13532 'bytes' => '1.03',
13533 'charnames' => '1.07',
13534 'constant' => '1.20',
13535 'deprecate' => '0.01',
13536 'diagnostics' => '1.19',
13537 'encoding' => '2.6_01',
13538 'encoding::warnings' => '0.11',
13539 'feature' => '1.15',
13540 'fields' => '2.15',
13541 'filetest' => '1.02',
13542 'if' => '0.05',
13543 'inc::latest' => '0.3603',
13544 'integer' => '1.00',
13545 'less' => '0.03',
13546 'lib' => '0.62',
13547 'locale' => '1.00',
13548 'mro' => '1.02',
13549 'open' => '1.07',
13550 'ops' => '1.02',
13551 'overload' => '1.10',
13552 'overload::numbers' => undef,
13553 'overloading' => '0.01',
13554 'parent' => '0.223',
13555 're' => '0.11',
13556 'sigtrap' => '1.04',
13557 'sort' => '2.01',
13558 'strict' => '1.04',
13559 'subs' => '1.00',
13560 'threads' => '1.75',
13561 'threads::shared' => '1.32',
13562 'utf8' => '1.07',
13563 'vars' => '1.01',
13564 'version' => '0.82',
13565 'vmsish' => '1.02',
13566 'warnings' => '1.09',
13567 'warnings::register' => '1.01',
13570 5.012000 => {
13571 'AnyDBM_File' => '1.00',
13572 'App::Cpan' => '1.5701',
13573 'App::Prove' => '3.17',
13574 'App::Prove::State' => '3.17',
13575 'App::Prove::State::Result'=> '3.17',
13576 'App::Prove::State::Result::Test'=> '3.17',
13577 'Archive::Extract' => '0.38',
13578 'Archive::Tar' => '1.54',
13579 'Archive::Tar::Constant'=> '0.02',
13580 'Archive::Tar::File' => '0.02',
13581 'Attribute::Handlers' => '0.87',
13582 'AutoLoader' => '5.70',
13583 'AutoSplit' => '1.06',
13584 'B' => '1.23',
13585 'B::Concise' => '0.78',
13586 'B::Debug' => '1.12',
13587 'B::Deparse' => '0.96',
13588 'B::Lint' => '1.11_01',
13589 'B::Lint::Debug' => '0.01',
13590 'B::Showlex' => '1.02',
13591 'B::Terse' => '1.05',
13592 'B::Xref' => '1.02',
13593 'Benchmark' => '1.11',
13594 'CGI' => '3.48',
13595 'CGI::Apache' => '1.01',
13596 'CGI::Carp' => '3.45',
13597 'CGI::Cookie' => '1.29',
13598 'CGI::Fast' => '1.07',
13599 'CGI::Pretty' => '3.46',
13600 'CGI::Push' => '1.04',
13601 'CGI::Switch' => '1.01',
13602 'CGI::Util' => '3.48',
13603 'CPAN' => '1.94_56',
13604 'CPAN::Author' => '5.5',
13605 'CPAN::Bundle' => '5.5',
13606 'CPAN::CacheMgr' => '5.5',
13607 'CPAN::Complete' => '5.5',
13608 'CPAN::Debug' => '5.5001',
13609 'CPAN::DeferredCode' => '5.50',
13610 'CPAN::Distribution' => '1.9456_01',
13611 'CPAN::Distroprefs' => '6',
13612 'CPAN::Distrostatus' => '5.5',
13613 'CPAN::Exception::RecursiveDependency'=> '5.5',
13614 'CPAN::Exception::blocked_urllist'=> '1.0',
13615 'CPAN::Exception::yaml_not_installed'=> '5.5',
13616 'CPAN::FTP' => '5.5004',
13617 'CPAN::FTP::netrc' => '1.00',
13618 'CPAN::FirstTime' => '5.5301',
13619 'CPAN::HandleConfig' => '5.5001',
13620 'CPAN::Index' => '1.94',
13621 'CPAN::InfoObj' => '5.5',
13622 'CPAN::Kwalify' => '5.50',
13623 'CPAN::LWP::UserAgent' => '1.94',
13624 'CPAN::Mirrors' => '1.77',
13625 'CPAN::Module' => '5.5',
13626 'CPAN::Nox' => '5.50',
13627 'CPAN::Prompt' => '5.5',
13628 'CPAN::Queue' => '5.5',
13629 'CPAN::Shell' => '5.5001',
13630 'CPAN::Tarzip' => '5.5011',
13631 'CPAN::URL' => '5.5',
13632 'CPAN::Version' => '5.5',
13633 'CPANPLUS' => '0.90',
13634 'CPANPLUS::Backend' => undef,
13635 'CPANPLUS::Backend::RV' => undef,
13636 'CPANPLUS::Config' => undef,
13637 'CPANPLUS::Configure' => undef,
13638 'CPANPLUS::Configure::Setup'=> undef,
13639 'CPANPLUS::Dist' => undef,
13640 'CPANPLUS::Dist::Autobundle'=> undef,
13641 'CPANPLUS::Dist::Base' => undef,
13642 'CPANPLUS::Dist::Build' => '0.46',
13643 'CPANPLUS::Dist::Build::Constants'=> '0.46',
13644 'CPANPLUS::Dist::MM' => undef,
13645 'CPANPLUS::Dist::Sample'=> undef,
13646 'CPANPLUS::Error' => undef,
13647 'CPANPLUS::Internals' => '0.90',
13648 'CPANPLUS::Internals::Constants'=> undef,
13649 'CPANPLUS::Internals::Constants::Report'=> undef,
13650 'CPANPLUS::Internals::Extract'=> undef,
13651 'CPANPLUS::Internals::Fetch'=> undef,
13652 'CPANPLUS::Internals::Report'=> undef,
13653 'CPANPLUS::Internals::Search'=> undef,
13654 'CPANPLUS::Internals::Source'=> undef,
13655 'CPANPLUS::Internals::Source::Memory'=> undef,
13656 'CPANPLUS::Internals::Source::SQLite'=> undef,
13657 'CPANPLUS::Internals::Source::SQLite::Tie'=> undef,
13658 'CPANPLUS::Internals::Utils'=> undef,
13659 'CPANPLUS::Internals::Utils::Autoflush'=> undef,
13660 'CPANPLUS::Module' => undef,
13661 'CPANPLUS::Module::Author'=> undef,
13662 'CPANPLUS::Module::Author::Fake'=> undef,
13663 'CPANPLUS::Module::Checksums'=> undef,
13664 'CPANPLUS::Module::Fake'=> undef,
13665 'CPANPLUS::Module::Signature'=> undef,
13666 'CPANPLUS::Selfupdate' => undef,
13667 'CPANPLUS::Shell' => undef,
13668 'CPANPLUS::Shell::Classic'=> '0.0562',
13669 'CPANPLUS::Shell::Default'=> '0.90',
13670 'CPANPLUS::Shell::Default::Plugins::CustomSource'=> undef,
13671 'CPANPLUS::Shell::Default::Plugins::Remote'=> undef,
13672 'CPANPLUS::Shell::Default::Plugins::Source'=> undef,
13673 'Carp' => '1.15',
13674 'Carp::Heavy' => '1.15',
13675 'Class::ISA' => '0.36',
13676 'Class::Struct' => '0.63',
13677 'Compress::Raw::Bzip2' => '2.024',
13678 'Compress::Raw::Zlib' => '2.024',
13679 'Compress::Zlib' => '2.024',
13680 'Config' => undef,
13681 'Config::Extensions' => '0.01',
13682 'Cwd' => '3.31',
13683 'DB' => '1.02',
13684 'DBM_Filter' => '0.03',
13685 'DBM_Filter::compress' => '0.02',
13686 'DBM_Filter::encode' => '0.02',
13687 'DBM_Filter::int32' => '0.02',
13688 'DBM_Filter::null' => '0.02',
13689 'DBM_Filter::utf8' => '0.02',
13690 'DB_File' => '1.820',
13691 'Data::Dumper' => '2.125',
13692 'Devel::DProf' => '20080331.00',
13693 'Devel::DProf::dprof::V'=> undef,
13694 'Devel::InnerPackage' => '0.3',
13695 'Devel::PPPort' => '3.19',
13696 'Devel::Peek' => '1.04',
13697 'Devel::SelfStubber' => '1.03',
13698 'Digest' => '1.16',
13699 'Digest::MD5' => '2.39',
13700 'Digest::SHA' => '5.47',
13701 'Digest::base' => '1.16',
13702 'Digest::file' => '1.16',
13703 'DirHandle' => '1.03',
13704 'Dumpvalue' => '1.13',
13705 'DynaLoader' => '1.10',
13706 'Encode' => '2.39',
13707 'Encode::Alias' => '2.12',
13708 'Encode::Byte' => '2.04',
13709 'Encode::CJKConstants' => '2.02',
13710 'Encode::CN' => '2.03',
13711 'Encode::CN::HZ' => '2.05',
13712 'Encode::Config' => '2.05',
13713 'Encode::EBCDIC' => '2.02',
13714 'Encode::Encoder' => '2.01',
13715 'Encode::Encoding' => '2.05',
13716 'Encode::GSM0338' => '2.01',
13717 'Encode::Guess' => '2.03',
13718 'Encode::JP' => '2.04',
13719 'Encode::JP::H2Z' => '2.02',
13720 'Encode::JP::JIS7' => '2.04',
13721 'Encode::KR' => '2.03',
13722 'Encode::KR::2022_KR' => '2.02',
13723 'Encode::MIME::Header' => '2.11',
13724 'Encode::MIME::Header::ISO_2022_JP'=> '1.03',
13725 'Encode::MIME::Name' => '1.01',
13726 'Encode::Symbol' => '2.02',
13727 'Encode::TW' => '2.03',
13728 'Encode::Unicode' => '2.07',
13729 'Encode::Unicode::UTF7' => '2.04',
13730 'English' => '1.04',
13731 'Env' => '1.01',
13732 'Errno' => '1.11',
13733 'Exporter' => '5.64_01',
13734 'Exporter::Heavy' => '5.64_01',
13735 'ExtUtils::CBuilder' => '0.27',
13736 'ExtUtils::CBuilder::Base'=> '0.27',
13737 'ExtUtils::CBuilder::Platform::Unix'=> '0.27',
13738 'ExtUtils::CBuilder::Platform::VMS'=> '0.27',
13739 'ExtUtils::CBuilder::Platform::Windows'=> '0.27',
13740 'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.27',
13741 'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.27',
13742 'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.27',
13743 'ExtUtils::CBuilder::Platform::aix'=> '0.27',
13744 'ExtUtils::CBuilder::Platform::cygwin'=> '0.27',
13745 'ExtUtils::CBuilder::Platform::darwin'=> '0.27',
13746 'ExtUtils::CBuilder::Platform::dec_osf'=> '0.27',
13747 'ExtUtils::CBuilder::Platform::os2'=> '0.27',
13748 'ExtUtils::Command' => '1.16',
13749 'ExtUtils::Command::MM' => '6.56',
13750 'ExtUtils::Constant' => '0.22',
13751 'ExtUtils::Constant::Base'=> '0.04',
13752 'ExtUtils::Constant::ProxySubs'=> '0.06',
13753 'ExtUtils::Constant::Utils'=> '0.02',
13754 'ExtUtils::Constant::XS'=> '0.03',
13755 'ExtUtils::Embed' => '1.28',
13756 'ExtUtils::Install' => '1.55',
13757 'ExtUtils::Installed' => '1.999_001',
13758 'ExtUtils::Liblist' => '6.56',
13759 'ExtUtils::Liblist::Kid'=> '6.56',
13760 'ExtUtils::MM' => '6.56',
13761 'ExtUtils::MM_AIX' => '6.56',
13762 'ExtUtils::MM_Any' => '6.56',
13763 'ExtUtils::MM_BeOS' => '6.56',
13764 'ExtUtils::MM_Cygwin' => '6.56',
13765 'ExtUtils::MM_DOS' => '6.56',
13766 'ExtUtils::MM_Darwin' => '6.56',
13767 'ExtUtils::MM_MacOS' => '6.56',
13768 'ExtUtils::MM_NW5' => '6.56',
13769 'ExtUtils::MM_OS2' => '6.56',
13770 'ExtUtils::MM_QNX' => '6.56',
13771 'ExtUtils::MM_UWIN' => '6.56',
13772 'ExtUtils::MM_Unix' => '6.56',
13773 'ExtUtils::MM_VMS' => '6.56',
13774 'ExtUtils::MM_VOS' => '6.56',
13775 'ExtUtils::MM_Win32' => '6.56',
13776 'ExtUtils::MM_Win95' => '6.56',
13777 'ExtUtils::MY' => '6.56',
13778 'ExtUtils::MakeMaker' => '6.56',
13779 'ExtUtils::MakeMaker::Config'=> '6.56',
13780 'ExtUtils::Manifest' => '1.57',
13781 'ExtUtils::Miniperl' => undef,
13782 'ExtUtils::Mkbootstrap' => '6.56',
13783 'ExtUtils::Mksymlists' => '6.56',
13784 'ExtUtils::Packlist' => '1.44',
13785 'ExtUtils::ParseXS' => '2.21',
13786 'ExtUtils::XSSymSet' => '1.1',
13787 'ExtUtils::testlib' => '6.56',
13788 'Fatal' => '2.06_01',
13789 'Fcntl' => '1.06',
13790 'File::Basename' => '2.78',
13791 'File::CheckTree' => '4.4',
13792 'File::Compare' => '1.1006',
13793 'File::Copy' => '2.17',
13794 'File::DosGlob' => '1.01',
13795 'File::Fetch' => '0.24',
13796 'File::Find' => '1.15',
13797 'File::Glob' => '1.07',
13798 'File::GlobMapper' => '1.000',
13799 'File::Path' => '2.08_01',
13800 'File::Spec' => '3.31',
13801 'File::Spec::Cygwin' => '3.30',
13802 'File::Spec::Epoc' => '3.30',
13803 'File::Spec::Functions' => '3.30',
13804 'File::Spec::Mac' => '3.30',
13805 'File::Spec::OS2' => '3.30',
13806 'File::Spec::Unix' => '3.30',
13807 'File::Spec::VMS' => '3.30',
13808 'File::Spec::Win32' => '3.30',
13809 'File::Temp' => '0.22',
13810 'File::stat' => '1.02',
13811 'FileCache' => '1.08',
13812 'FileHandle' => '2.02',
13813 'VMS::Filespec' => '1.12',
13814 'Filter::Simple' => '0.84',
13815 'Filter::Util::Call' => '1.08',
13816 'FindBin' => '1.50',
13817 'GDBM_File' => '1.10',
13818 'Getopt::Long' => '2.38',
13819 'Getopt::Std' => '1.06',
13820 'Hash::Util' => '0.07',
13821 'Hash::Util::FieldHash' => '1.04',
13822 'I18N::Collate' => '1.01',
13823 'I18N::LangTags' => '0.35',
13824 'I18N::LangTags::Detect'=> '1.04',
13825 'I18N::LangTags::List' => '0.35',
13826 'I18N::Langinfo' => '0.03',
13827 'IO' => '1.25_02',
13828 'IO::Compress::Adapter::Bzip2'=> '2.024',
13829 'IO::Compress::Adapter::Deflate'=> '2.024',
13830 'IO::Compress::Adapter::Identity'=> '2.024',
13831 'IO::Compress::Base' => '2.024',
13832 'IO::Compress::Base::Common'=> '2.024',
13833 'IO::Compress::Bzip2' => '2.024',
13834 'IO::Compress::Deflate' => '2.024',
13835 'IO::Compress::Gzip' => '2.024',
13836 'IO::Compress::Gzip::Constants'=> '2.024',
13837 'IO::Compress::RawDeflate'=> '2.024',
13838 'IO::Compress::Zip' => '2.024',
13839 'IO::Compress::Zip::Constants'=> '2.024',
13840 'IO::Compress::Zlib::Constants'=> '2.024',
13841 'IO::Compress::Zlib::Extra'=> '2.024',
13842 'IO::Dir' => '1.07',
13843 'IO::File' => '1.14',
13844 'IO::Handle' => '1.28',
13845 'IO::Pipe' => '1.13',
13846 'IO::Poll' => '0.07',
13847 'IO::Seekable' => '1.10',
13848 'IO::Select' => '1.17',
13849 'IO::Socket' => '1.31',
13850 'IO::Socket::INET' => '1.31',
13851 'IO::Socket::UNIX' => '1.23',
13852 'IO::Uncompress::Adapter::Bunzip2'=> '2.024',
13853 'IO::Uncompress::Adapter::Identity'=> '2.024',
13854 'IO::Uncompress::Adapter::Inflate'=> '2.024',
13855 'IO::Uncompress::AnyInflate'=> '2.024',
13856 'IO::Uncompress::AnyUncompress'=> '2.024',
13857 'IO::Uncompress::Base' => '2.024',
13858 'IO::Uncompress::Bunzip2'=> '2.024',
13859 'IO::Uncompress::Gunzip'=> '2.024',
13860 'IO::Uncompress::Inflate'=> '2.024',
13861 'IO::Uncompress::RawInflate'=> '2.024',
13862 'IO::Uncompress::Unzip' => '2.024',
13863 'IO::Zlib' => '1.10',
13864 'IPC::Cmd' => '0.54',
13865 'IPC::Msg' => '2.01',
13866 'IPC::Open2' => '1.03',
13867 'IPC::Open3' => '1.05',
13868 'IPC::Semaphore' => '2.01',
13869 'IPC::SharedMem' => '2.01',
13870 'IPC::SysV' => '2.01',
13871 'List::Util' => '1.22',
13872 'List::Util::PP' => '1.22',
13873 'List::Util::XS' => '1.22',
13874 'Locale::Constants' => '2.07',
13875 'Locale::Country' => '2.07',
13876 'Locale::Currency' => '2.07',
13877 'Locale::Language' => '2.07',
13878 'Locale::Maketext' => '1.14',
13879 'Locale::Maketext::Guts'=> '1.13',
13880 'Locale::Maketext::GutsLoader'=> '1.13',
13881 'Locale::Maketext::Simple'=> '0.21',
13882 'Locale::Script' => '2.07',
13883 'Log::Message' => '0.02',
13884 'Log::Message::Config' => '0.01',
13885 'Log::Message::Handlers'=> undef,
13886 'Log::Message::Item' => undef,
13887 'Log::Message::Simple' => '0.06',
13888 'MIME::Base64' => '3.08',
13889 'MIME::QuotedPrint' => '3.08',
13890 'Math::BigFloat' => '1.60',
13891 'Math::BigFloat::Trace' => '0.01',
13892 'Math::BigInt' => '1.89_01',
13893 'Math::BigInt::Calc' => '0.52',
13894 'Math::BigInt::CalcEmu' => '0.05',
13895 'Math::BigInt::FastCalc'=> '0.19',
13896 'Math::BigInt::Trace' => '0.01',
13897 'Math::BigRat' => '0.24',
13898 'Math::Complex' => '1.56',
13899 'Math::Trig' => '1.2',
13900 'Memoize' => '1.01_03',
13901 'Memoize::AnyDBM_File' => '0.65',
13902 'Memoize::Expire' => '1.00',
13903 'Memoize::ExpireFile' => '1.01',
13904 'Memoize::ExpireTest' => '0.65',
13905 'Memoize::NDBM_File' => '0.65',
13906 'Memoize::SDBM_File' => '0.65',
13907 'Memoize::Storable' => '0.65',
13908 'Module::Build' => '0.3603',
13909 'Module::Build::Base' => '0.3603',
13910 'Module::Build::Compat' => '0.3603',
13911 'Module::Build::Config' => '0.3603',
13912 'Module::Build::ConfigData'=> undef,
13913 'Module::Build::Cookbook'=> '0.3603',
13914 'Module::Build::Dumper' => '0.3603',
13915 'Module::Build::ModuleInfo'=> '0.3603',
13916 'Module::Build::Notes' => '0.3603',
13917 'Module::Build::PPMMaker'=> '0.3603',
13918 'Module::Build::Platform::Amiga'=> '0.3603',
13919 'Module::Build::Platform::Default'=> '0.3603',
13920 'Module::Build::Platform::EBCDIC'=> '0.3603',
13921 'Module::Build::Platform::MPEiX'=> '0.3603',
13922 'Module::Build::Platform::MacOS'=> '0.3603',
13923 'Module::Build::Platform::RiscOS'=> '0.3603',
13924 'Module::Build::Platform::Unix'=> '0.3603',
13925 'Module::Build::Platform::VMS'=> '0.3603',
13926 'Module::Build::Platform::VOS'=> '0.3603',
13927 'Module::Build::Platform::Windows'=> '0.3603',
13928 'Module::Build::Platform::aix'=> '0.3603',
13929 'Module::Build::Platform::cygwin'=> '0.3603',
13930 'Module::Build::Platform::darwin'=> '0.3603',
13931 'Module::Build::Platform::os2'=> '0.3603',
13932 'Module::Build::PodParser'=> '0.3603',
13933 'Module::Build::Version'=> '0.77',
13934 'Module::Build::YAML' => '1.40',
13935 'Module::CoreList' => '2.29',
13936 'Module::Load' => '0.16',
13937 'Module::Load::Conditional'=> '0.34',
13938 'Module::Loaded' => '0.06',
13939 'Module::Pluggable' => '3.9',
13940 'Module::Pluggable::Object'=> '3.9',
13941 'Moped::Msg' => '0.01',
13942 'NDBM_File' => '1.08',
13943 'NEXT' => '0.64',
13944 'Net::Cmd' => '2.29',
13945 'Net::Config' => '1.11',
13946 'Net::Domain' => '2.20',
13947 'Net::FTP' => '2.77',
13948 'Net::FTP::A' => '1.18',
13949 'Net::FTP::E' => '0.01',
13950 'Net::FTP::I' => '1.12',
13951 'Net::FTP::L' => '0.01',
13952 'Net::FTP::dataconn' => '0.11',
13953 'Net::NNTP' => '2.24',
13954 'Net::Netrc' => '2.12',
13955 'Net::POP3' => '2.29',
13956 'Net::Ping' => '2.36',
13957 'Net::SMTP' => '2.31',
13958 'Net::Time' => '2.10',
13959 'Net::hostent' => '1.01',
13960 'Net::netent' => '1.00',
13961 'Net::protoent' => '1.00',
13962 'Net::servent' => '1.01',
13963 'O' => '1.01',
13964 'ODBM_File' => '1.07',
13965 'Object::Accessor' => '0.36',
13966 'Opcode' => '1.15',
13967 'POSIX' => '1.19',
13968 'Package::Constants' => '0.02',
13969 'Params::Check' => '0.26',
13970 'Parse::CPAN::Meta' => '1.40',
13971 'PerlIO' => '1.06',
13972 'PerlIO::encoding' => '0.12',
13973 'PerlIO::scalar' => '0.07',
13974 'PerlIO::via' => '0.09',
13975 'PerlIO::via::QuotedPrint'=> '0.06',
13976 'Pod::Checker' => '1.45',
13977 'Pod::Escapes' => '1.04',
13978 'Pod::Find' => '1.35',
13979 'Pod::Functions' => '1.03',
13980 'Pod::Html' => '1.09',
13981 'Pod::InputObjects' => '1.31',
13982 'Pod::LaTeX' => '0.58',
13983 'Pod::Man' => '2.23',
13984 'Pod::ParseLink' => '1.10',
13985 'Pod::ParseUtils' => '1.36',
13986 'Pod::Parser' => '1.37',
13987 'Pod::Perldoc' => '3.15_02',
13988 'Pod::Perldoc::BaseTo' => undef,
13989 'Pod::Perldoc::GetOptsOO'=> undef,
13990 'Pod::Perldoc::ToChecker'=> undef,
13991 'Pod::Perldoc::ToMan' => undef,
13992 'Pod::Perldoc::ToNroff' => undef,
13993 'Pod::Perldoc::ToPod' => undef,
13994 'Pod::Perldoc::ToRtf' => undef,
13995 'Pod::Perldoc::ToText' => undef,
13996 'Pod::Perldoc::ToTk' => undef,
13997 'Pod::Perldoc::ToXml' => undef,
13998 'Pod::PlainText' => '2.04',
13999 'Pod::Plainer' => '1.02',
14000 'Pod::Select' => '1.36',
14001 'Pod::Simple' => '3.13',
14002 'Pod::Simple::BlackBox' => '3.13',
14003 'Pod::Simple::Checker' => '3.13',
14004 'Pod::Simple::Debug' => '3.13',
14005 'Pod::Simple::DumpAsText'=> '3.13',
14006 'Pod::Simple::DumpAsXML'=> '3.13',
14007 'Pod::Simple::HTML' => '3.13',
14008 'Pod::Simple::HTMLBatch'=> '3.13',
14009 'Pod::Simple::HTMLLegacy'=> '5.01',
14010 'Pod::Simple::LinkSection'=> '3.13',
14011 'Pod::Simple::Methody' => '3.13',
14012 'Pod::Simple::Progress' => '3.13',
14013 'Pod::Simple::PullParser'=> '3.13',
14014 'Pod::Simple::PullParserEndToken'=> '3.13',
14015 'Pod::Simple::PullParserStartToken'=> '3.13',
14016 'Pod::Simple::PullParserTextToken'=> '3.13',
14017 'Pod::Simple::PullParserToken'=> '3.13',
14018 'Pod::Simple::RTF' => '3.13',
14019 'Pod::Simple::Search' => '3.13',
14020 'Pod::Simple::SimpleTree'=> '3.13',
14021 'Pod::Simple::Text' => '3.13',
14022 'Pod::Simple::TextContent'=> '3.13',
14023 'Pod::Simple::TiedOutFH'=> '3.13',
14024 'Pod::Simple::Transcode'=> '3.13',
14025 'Pod::Simple::TranscodeDumb'=> '3.13',
14026 'Pod::Simple::TranscodeSmart'=> '3.13',
14027 'Pod::Simple::XHTML' => '3.13',
14028 'Pod::Simple::XMLOutStream'=> '3.13',
14029 'Pod::Text' => '3.14',
14030 'Pod::Text::Color' => '2.06',
14031 'Pod::Text::Overstrike' => '2.04',
14032 'Pod::Text::Termcap' => '2.06',
14033 'Pod::Usage' => '1.36',
14034 'SDBM_File' => '1.06',
14035 'Safe' => '2.25',
14036 'Scalar::Util' => '1.22',
14037 'Scalar::Util::PP' => '1.22',
14038 'Search::Dict' => '1.02',
14039 'SelectSaver' => '1.02',
14040 'SelfLoader' => '1.17',
14041 'Shell' => '0.72_01',
14042 'Socket' => '1.87',
14043 'Storable' => '2.22',
14044 'Switch' => '2.16',
14045 'Symbol' => '1.07',
14046 'Sys::Hostname' => '1.11',
14047 'Sys::Syslog' => '0.27',
14048 'Sys::Syslog::win32::Win32'=> undef,
14049 'TAP::Base' => '3.17',
14050 'TAP::Formatter::Base' => '3.17',
14051 'TAP::Formatter::Color' => '3.17',
14052 'TAP::Formatter::Console'=> '3.17',
14053 'TAP::Formatter::Console::ParallelSession'=> '3.17',
14054 'TAP::Formatter::Console::Session'=> '3.17',
14055 'TAP::Formatter::File' => '3.17',
14056 'TAP::Formatter::File::Session'=> '3.17',
14057 'TAP::Formatter::Session'=> '3.17',
14058 'TAP::Harness' => '3.17',
14059 'TAP::Object' => '3.17',
14060 'TAP::Parser' => '3.17',
14061 'TAP::Parser::Aggregator'=> '3.17',
14062 'TAP::Parser::Grammar' => '3.17',
14063 'TAP::Parser::Iterator' => '3.17',
14064 'TAP::Parser::Iterator::Array'=> '3.17',
14065 'TAP::Parser::Iterator::Process'=> '3.17',
14066 'TAP::Parser::Iterator::Stream'=> '3.17',
14067 'TAP::Parser::IteratorFactory'=> '3.17',
14068 'TAP::Parser::Multiplexer'=> '3.17',
14069 'TAP::Parser::Result' => '3.17',
14070 'TAP::Parser::Result::Bailout'=> '3.17',
14071 'TAP::Parser::Result::Comment'=> '3.17',
14072 'TAP::Parser::Result::Plan'=> '3.17',
14073 'TAP::Parser::Result::Pragma'=> '3.17',
14074 'TAP::Parser::Result::Test'=> '3.17',
14075 'TAP::Parser::Result::Unknown'=> '3.17',
14076 'TAP::Parser::Result::Version'=> '3.17',
14077 'TAP::Parser::Result::YAML'=> '3.17',
14078 'TAP::Parser::ResultFactory'=> '3.17',
14079 'TAP::Parser::Scheduler'=> '3.17',
14080 'TAP::Parser::Scheduler::Job'=> '3.17',
14081 'TAP::Parser::Scheduler::Spinner'=> '3.17',
14082 'TAP::Parser::Source' => '3.17',
14083 'TAP::Parser::Source::Perl'=> '3.17',
14084 'TAP::Parser::Utils' => '3.17',
14085 'TAP::Parser::YAMLish::Reader'=> '3.17',
14086 'TAP::Parser::YAMLish::Writer'=> '3.17',
14087 'Term::ANSIColor' => '2.02',
14088 'Term::Cap' => '1.12',
14089 'Term::Complete' => '1.402',
14090 'Term::ReadLine' => '1.05',
14091 'Term::UI' => '0.20',
14092 'Term::UI::History' => undef,
14093 'Test' => '1.25_02',
14094 'Test::Builder' => '0.94',
14095 'Test::Builder::Module' => '0.94',
14096 'Test::Builder::Tester' => '1.18',
14097 'Test::Builder::Tester::Color'=> '1.18',
14098 'Test::Harness' => '3.17',
14099 'Test::More' => '0.94',
14100 'Test::Simple' => '0.94',
14101 'Text::Abbrev' => '1.01',
14102 'Text::Balanced' => '2.02',
14103 'Text::ParseWords' => '3.27',
14104 'Text::Soundex' => '3.03_01',
14105 'Text::Tabs' => '2009.0305',
14106 'Text::Wrap' => '2009.0305',
14107 'Thread' => '3.02',
14108 'Thread::Queue' => '2.11',
14109 'Thread::Semaphore' => '2.09',
14110 'Tie::Array' => '1.03',
14111 'Tie::File' => '0.97_02',
14112 'Tie::Handle' => '4.2',
14113 'Tie::Hash' => '1.03',
14114 'Tie::Hash::NamedCapture'=> '0.06',
14115 'Tie::Memoize' => '1.1',
14116 'Tie::RefHash' => '1.38',
14117 'Tie::Scalar' => '1.02',
14118 'Tie::StdHandle' => '4.2',
14119 'Tie::SubstrHash' => '1.00',
14120 'Time::HiRes' => '1.9719',
14121 'Time::Local' => '1.1901_01',
14122 'Time::Piece' => '1.15_01',
14123 'Time::Piece::Seconds' => undef,
14124 'Time::Seconds' => undef,
14125 'Time::gmtime' => '1.03',
14126 'Time::localtime' => '1.02',
14127 'Time::tm' => '1.00',
14128 'UNIVERSAL' => '1.06',
14129 'Unicode' => '5.2.0',
14130 'Unicode::Collate' => '0.52_01',
14131 'Unicode::Normalize' => '1.03',
14132 'Unicode::UCD' => '0.27',
14133 'User::grent' => '1.01',
14134 'User::pwent' => '1.00',
14135 'VMS::DCLsym' => '1.03',
14136 'VMS::Stdio' => '2.4',
14137 'Win32' => '0.39',
14138 'Win32API::File' => '0.1101',
14139 'Win32API::File::ExtUtils::Myconst2perl'=> '1',
14140 'Win32CORE' => '0.02',
14141 'XS::APItest' => '0.17',
14142 'XS::APItest::KeywordRPN'=> '0.003',
14143 'XS::Typemap' => '0.03',
14144 'XSLoader' => '0.10',
14145 'XSLoader::XSLoader' => '0.10',
14146 'attributes' => '0.12',
14147 'autodie' => '2.06_01',
14148 'autodie::exception' => '2.06_01',
14149 'autodie::exception::system'=> '2.06_01',
14150 'autodie::hints' => '2.06_01',
14151 'autouse' => '1.06',
14152 'base' => '2.15',
14153 'bigint' => '0.23',
14154 'bignum' => '0.23',
14155 'bigrat' => '0.23',
14156 'blib' => '1.04',
14157 'bytes' => '1.04',
14158 'charnames' => '1.07',
14159 'constant' => '1.20',
14160 'deprecate' => '0.01',
14161 'diagnostics' => '1.19',
14162 'encoding' => '2.6_01',
14163 'encoding::warnings' => '0.11',
14164 'feature' => '1.16',
14165 'fields' => '2.15',
14166 'filetest' => '1.02',
14167 'if' => '0.05',
14168 'inc::latest' => '0.3603',
14169 'integer' => '1.00',
14170 'less' => '0.03',
14171 'lib' => '0.62',
14172 'locale' => '1.00',
14173 'mro' => '1.02',
14174 'open' => '1.07',
14175 'ops' => '1.02',
14176 'overload' => '1.10',
14177 'overload::numbers' => undef,
14178 'overloading' => '0.01',
14179 'parent' => '0.223',
14180 're' => '0.11',
14181 'sigtrap' => '1.04',
14182 'sort' => '2.01',
14183 'strict' => '1.04',
14184 'subs' => '1.00',
14185 'threads' => '1.75',
14186 'threads::shared' => '1.32',
14187 'utf8' => '1.08',
14188 'vars' => '1.01',
14189 'version' => '0.82',
14190 'vmsish' => '1.02',
14191 'warnings' => '1.09',
14192 'warnings::register' => '1.01',
14195 5.013000 => {
14196 'AnyDBM_File' => '1.00',
14197 'App::Cpan' => '1.5701',
14198 'App::Prove' => '3.17',
14199 'App::Prove::State' => '3.17',
14200 'App::Prove::State::Result'=> '3.17',
14201 'App::Prove::State::Result::Test'=> '3.17',
14202 'Archive::Extract' => '0.38',
14203 'Archive::Tar' => '1.54',
14204 'Archive::Tar::Constant'=> '0.02',
14205 'Archive::Tar::File' => '0.02',
14206 'Attribute::Handlers' => '0.87',
14207 'AutoLoader' => '5.70',
14208 'AutoSplit' => '1.06',
14209 'B' => '1.23',
14210 'B::Concise' => '0.78',
14211 'B::Debug' => '1.12',
14212 'B::Deparse' => '0.96',
14213 'B::Lint' => '1.11_01',
14214 'B::Lint::Debug' => '0.01',
14215 'B::Showlex' => '1.02',
14216 'B::Terse' => '1.05',
14217 'B::Xref' => '1.02',
14218 'Benchmark' => '1.11',
14219 'CGI' => '3.49',
14220 'CGI::Apache' => '1.01',
14221 'CGI::Carp' => '3.45',
14222 'CGI::Cookie' => '1.29',
14223 'CGI::Fast' => '1.08',
14224 'CGI::Pretty' => '3.46',
14225 'CGI::Push' => '1.04',
14226 'CGI::Switch' => '1.01',
14227 'CGI::Util' => '3.48',
14228 'CPAN' => '1.94_56',
14229 'CPAN::Author' => '5.5',
14230 'CPAN::Bundle' => '5.5',
14231 'CPAN::CacheMgr' => '5.5',
14232 'CPAN::Complete' => '5.5',
14233 'CPAN::Debug' => '5.5001',
14234 'CPAN::DeferredCode' => '5.50',
14235 'CPAN::Distribution' => '1.9456_01',
14236 'CPAN::Distroprefs' => '6',
14237 'CPAN::Distrostatus' => '5.5',
14238 'CPAN::Exception::RecursiveDependency'=> '5.5',
14239 'CPAN::Exception::blocked_urllist'=> '1.0',
14240 'CPAN::Exception::yaml_not_installed'=> '5.5',
14241 'CPAN::FTP' => '5.5004',
14242 'CPAN::FTP::netrc' => '1.00',
14243 'CPAN::FirstTime' => '5.5301',
14244 'CPAN::HandleConfig' => '5.5001',
14245 'CPAN::Index' => '1.94',
14246 'CPAN::InfoObj' => '5.5',
14247 'CPAN::Kwalify' => '5.50',
14248 'CPAN::LWP::UserAgent' => '1.94',
14249 'CPAN::Mirrors' => '1.77',
14250 'CPAN::Module' => '5.5',
14251 'CPAN::Nox' => '5.50',
14252 'CPAN::Prompt' => '5.5',
14253 'CPAN::Queue' => '5.5',
14254 'CPAN::Shell' => '5.5001',
14255 'CPAN::Tarzip' => '5.5011',
14256 'CPAN::URL' => '5.5',
14257 'CPAN::Version' => '5.5',
14258 'CPANPLUS' => '0.90',
14259 'CPANPLUS::Backend' => undef,
14260 'CPANPLUS::Backend::RV' => undef,
14261 'CPANPLUS::Config' => undef,
14262 'CPANPLUS::Configure' => undef,
14263 'CPANPLUS::Configure::Setup'=> undef,
14264 'CPANPLUS::Dist' => undef,
14265 'CPANPLUS::Dist::Autobundle'=> undef,
14266 'CPANPLUS::Dist::Base' => undef,
14267 'CPANPLUS::Dist::Build' => '0.46',
14268 'CPANPLUS::Dist::Build::Constants'=> '0.46',
14269 'CPANPLUS::Dist::MM' => undef,
14270 'CPANPLUS::Dist::Sample'=> undef,
14271 'CPANPLUS::Error' => undef,
14272 'CPANPLUS::Internals' => '0.90',
14273 'CPANPLUS::Internals::Constants'=> undef,
14274 'CPANPLUS::Internals::Constants::Report'=> undef,
14275 'CPANPLUS::Internals::Extract'=> undef,
14276 'CPANPLUS::Internals::Fetch'=> undef,
14277 'CPANPLUS::Internals::Report'=> undef,
14278 'CPANPLUS::Internals::Search'=> undef,
14279 'CPANPLUS::Internals::Source'=> undef,
14280 'CPANPLUS::Internals::Source::Memory'=> undef,
14281 'CPANPLUS::Internals::Source::SQLite'=> undef,
14282 'CPANPLUS::Internals::Source::SQLite::Tie'=> undef,
14283 'CPANPLUS::Internals::Utils'=> undef,
14284 'CPANPLUS::Internals::Utils::Autoflush'=> undef,
14285 'CPANPLUS::Module' => undef,
14286 'CPANPLUS::Module::Author'=> undef,
14287 'CPANPLUS::Module::Author::Fake'=> undef,
14288 'CPANPLUS::Module::Checksums'=> undef,
14289 'CPANPLUS::Module::Fake'=> undef,
14290 'CPANPLUS::Module::Signature'=> undef,
14291 'CPANPLUS::Selfupdate' => undef,
14292 'CPANPLUS::Shell' => undef,
14293 'CPANPLUS::Shell::Classic'=> '0.0562',
14294 'CPANPLUS::Shell::Default'=> '0.90',
14295 'CPANPLUS::Shell::Default::Plugins::CustomSource'=> undef,
14296 'CPANPLUS::Shell::Default::Plugins::Remote'=> undef,
14297 'CPANPLUS::Shell::Default::Plugins::Source'=> undef,
14298 'Carp' => '1.15',
14299 'Carp::Heavy' => '1.15',
14300 'Class::ISA' => '0.36',
14301 'Class::Struct' => '0.63',
14302 'Compress::Raw::Bzip2' => '2.024',
14303 'Compress::Raw::Zlib' => '2.024',
14304 'Compress::Zlib' => '2.024',
14305 'Config' => undef,
14306 'Config::Extensions' => '0.01',
14307 'Cwd' => '3.31',
14308 'DB' => '1.02',
14309 'DBM_Filter' => '0.03',
14310 'DBM_Filter::compress' => '0.02',
14311 'DBM_Filter::encode' => '0.02',
14312 'DBM_Filter::int32' => '0.02',
14313 'DBM_Filter::null' => '0.02',
14314 'DBM_Filter::utf8' => '0.02',
14315 'DB_File' => '1.820',
14316 'Data::Dumper' => '2.126',
14317 'Devel::DProf' => '20080331.00',
14318 'Devel::DProf::dprof::V'=> undef,
14319 'Devel::InnerPackage' => '0.3',
14320 'Devel::PPPort' => '3.19',
14321 'Devel::Peek' => '1.04',
14322 'Devel::SelfStubber' => '1.03',
14323 'Digest' => '1.16',
14324 'Digest::MD5' => '2.39',
14325 'Digest::SHA' => '5.47',
14326 'Digest::base' => '1.16',
14327 'Digest::file' => '1.16',
14328 'DirHandle' => '1.03',
14329 'Dumpvalue' => '1.13',
14330 'DynaLoader' => '1.10',
14331 'Encode' => '2.39',
14332 'Encode::Alias' => '2.12',
14333 'Encode::Byte' => '2.04',
14334 'Encode::CJKConstants' => '2.02',
14335 'Encode::CN' => '2.03',
14336 'Encode::CN::HZ' => '2.05',
14337 'Encode::Config' => '2.05',
14338 'Encode::EBCDIC' => '2.02',
14339 'Encode::Encoder' => '2.01',
14340 'Encode::Encoding' => '2.05',
14341 'Encode::GSM0338' => '2.01',
14342 'Encode::Guess' => '2.03',
14343 'Encode::JP' => '2.04',
14344 'Encode::JP::H2Z' => '2.02',
14345 'Encode::JP::JIS7' => '2.04',
14346 'Encode::KR' => '2.03',
14347 'Encode::KR::2022_KR' => '2.02',
14348 'Encode::MIME::Header' => '2.11',
14349 'Encode::MIME::Header::ISO_2022_JP'=> '1.03',
14350 'Encode::MIME::Name' => '1.01',
14351 'Encode::Symbol' => '2.02',
14352 'Encode::TW' => '2.03',
14353 'Encode::Unicode' => '2.07',
14354 'Encode::Unicode::UTF7' => '2.04',
14355 'English' => '1.04',
14356 'Env' => '1.01',
14357 'Errno' => '1.11',
14358 'Exporter' => '5.64_01',
14359 'Exporter::Heavy' => '5.64_01',
14360 'ExtUtils::CBuilder' => '0.27',
14361 'ExtUtils::CBuilder::Base'=> '0.27',
14362 'ExtUtils::CBuilder::Platform::Unix'=> '0.27',
14363 'ExtUtils::CBuilder::Platform::VMS'=> '0.27',
14364 'ExtUtils::CBuilder::Platform::Windows'=> '0.27',
14365 'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.27',
14366 'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.27',
14367 'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.27',
14368 'ExtUtils::CBuilder::Platform::aix'=> '0.27',
14369 'ExtUtils::CBuilder::Platform::cygwin'=> '0.27',
14370 'ExtUtils::CBuilder::Platform::darwin'=> '0.27',
14371 'ExtUtils::CBuilder::Platform::dec_osf'=> '0.27',
14372 'ExtUtils::CBuilder::Platform::os2'=> '0.27',
14373 'ExtUtils::Command' => '1.16',
14374 'ExtUtils::Command::MM' => '6.56',
14375 'ExtUtils::Constant' => '0.22',
14376 'ExtUtils::Constant::Base'=> '0.04',
14377 'ExtUtils::Constant::ProxySubs'=> '0.06',
14378 'ExtUtils::Constant::Utils'=> '0.02',
14379 'ExtUtils::Constant::XS'=> '0.03',
14380 'ExtUtils::Embed' => '1.28',
14381 'ExtUtils::Install' => '1.55',
14382 'ExtUtils::Installed' => '1.999_001',
14383 'ExtUtils::Liblist' => '6.56',
14384 'ExtUtils::Liblist::Kid'=> '6.56',
14385 'ExtUtils::MM' => '6.56',
14386 'ExtUtils::MM_AIX' => '6.56',
14387 'ExtUtils::MM_Any' => '6.56',
14388 'ExtUtils::MM_BeOS' => '6.56',
14389 'ExtUtils::MM_Cygwin' => '6.56',
14390 'ExtUtils::MM_DOS' => '6.56',
14391 'ExtUtils::MM_Darwin' => '6.56',
14392 'ExtUtils::MM_MacOS' => '6.56',
14393 'ExtUtils::MM_NW5' => '6.56',
14394 'ExtUtils::MM_OS2' => '6.56',
14395 'ExtUtils::MM_QNX' => '6.56',
14396 'ExtUtils::MM_UWIN' => '6.56',
14397 'ExtUtils::MM_Unix' => '6.5601',
14398 'ExtUtils::MM_VMS' => '6.56',
14399 'ExtUtils::MM_VOS' => '6.56',
14400 'ExtUtils::MM_Win32' => '6.56',
14401 'ExtUtils::MM_Win95' => '6.56',
14402 'ExtUtils::MY' => '6.56',
14403 'ExtUtils::MakeMaker' => '6.5601',
14404 'ExtUtils::MakeMaker::Config'=> '6.56',
14405 'ExtUtils::Manifest' => '1.57',
14406 'ExtUtils::Miniperl' => undef,
14407 'ExtUtils::Mkbootstrap' => '6.56',
14408 'ExtUtils::Mksymlists' => '6.56',
14409 'ExtUtils::Packlist' => '1.44',
14410 'ExtUtils::ParseXS' => '2.21',
14411 'ExtUtils::XSSymSet' => '1.1',
14412 'ExtUtils::testlib' => '6.56',
14413 'Fatal' => '2.06_01',
14414 'Fcntl' => '1.06',
14415 'File::Basename' => '2.78',
14416 'File::CheckTree' => '4.4',
14417 'File::Compare' => '1.1006',
14418 'File::Copy' => '2.18',
14419 'File::DosGlob' => '1.01',
14420 'File::Fetch' => '0.24',
14421 'File::Find' => '1.15',
14422 'File::Glob' => '1.07',
14423 'File::GlobMapper' => '1.000',
14424 'File::Path' => '2.08_01',
14425 'File::Spec' => '3.31',
14426 'File::Spec::Cygwin' => '3.30',
14427 'File::Spec::Epoc' => '3.30',
14428 'File::Spec::Functions' => '3.30',
14429 'File::Spec::Mac' => '3.30',
14430 'File::Spec::OS2' => '3.30',
14431 'File::Spec::Unix' => '3.30',
14432 'File::Spec::VMS' => '3.30',
14433 'File::Spec::Win32' => '3.30',
14434 'File::Temp' => '0.22',
14435 'File::stat' => '1.02',
14436 'FileCache' => '1.08',
14437 'FileHandle' => '2.02',
14438 'VMS::Filespec' => '1.12',
14439 'Filter::Simple' => '0.84',
14440 'Filter::Util::Call' => '1.08',
14441 'FindBin' => '1.50',
14442 'GDBM_File' => '1.10',
14443 'Getopt::Long' => '2.38',
14444 'Getopt::Std' => '1.06',
14445 'Hash::Util' => '0.07',
14446 'Hash::Util::FieldHash' => '1.04',
14447 'I18N::Collate' => '1.01',
14448 'I18N::LangTags' => '0.35',
14449 'I18N::LangTags::Detect'=> '1.04',
14450 'I18N::LangTags::List' => '0.35',
14451 'I18N::Langinfo' => '0.03',
14452 'IO' => '1.25_02',
14453 'IO::Compress::Adapter::Bzip2'=> '2.024',
14454 'IO::Compress::Adapter::Deflate'=> '2.024',
14455 'IO::Compress::Adapter::Identity'=> '2.024',
14456 'IO::Compress::Base' => '2.024',
14457 'IO::Compress::Base::Common'=> '2.024',
14458 'IO::Compress::Bzip2' => '2.024',
14459 'IO::Compress::Deflate' => '2.024',
14460 'IO::Compress::Gzip' => '2.024',
14461 'IO::Compress::Gzip::Constants'=> '2.024',
14462 'IO::Compress::RawDeflate'=> '2.024',
14463 'IO::Compress::Zip' => '2.024',
14464 'IO::Compress::Zip::Constants'=> '2.024',
14465 'IO::Compress::Zlib::Constants'=> '2.024',
14466 'IO::Compress::Zlib::Extra'=> '2.024',
14467 'IO::Dir' => '1.07',
14468 'IO::File' => '1.14',
14469 'IO::Handle' => '1.28',
14470 'IO::Pipe' => '1.13',
14471 'IO::Poll' => '0.07',
14472 'IO::Seekable' => '1.10',
14473 'IO::Select' => '1.17',
14474 'IO::Socket' => '1.31',
14475 'IO::Socket::INET' => '1.31',
14476 'IO::Socket::UNIX' => '1.23',
14477 'IO::Uncompress::Adapter::Bunzip2'=> '2.024',
14478 'IO::Uncompress::Adapter::Identity'=> '2.024',
14479 'IO::Uncompress::Adapter::Inflate'=> '2.024',
14480 'IO::Uncompress::AnyInflate'=> '2.024',
14481 'IO::Uncompress::AnyUncompress'=> '2.024',
14482 'IO::Uncompress::Base' => '2.024',
14483 'IO::Uncompress::Bunzip2'=> '2.024',
14484 'IO::Uncompress::Gunzip'=> '2.024',
14485 'IO::Uncompress::Inflate'=> '2.024',
14486 'IO::Uncompress::RawInflate'=> '2.024',
14487 'IO::Uncompress::Unzip' => '2.024',
14488 'IO::Zlib' => '1.10',
14489 'IPC::Cmd' => '0.54',
14490 'IPC::Msg' => '2.01',
14491 'IPC::Open2' => '1.03',
14492 'IPC::Open3' => '1.06',
14493 'IPC::Semaphore' => '2.01',
14494 'IPC::SharedMem' => '2.01',
14495 'IPC::SysV' => '2.01',
14496 'List::Util' => '1.22',
14497 'List::Util::PP' => '1.22',
14498 'List::Util::XS' => '1.22',
14499 'Locale::Constants' => '2.07',
14500 'Locale::Country' => '2.07',
14501 'Locale::Currency' => '2.07',
14502 'Locale::Language' => '2.07',
14503 'Locale::Maketext' => '1.14',
14504 'Locale::Maketext::Guts'=> '1.13',
14505 'Locale::Maketext::GutsLoader'=> '1.13',
14506 'Locale::Maketext::Simple'=> '0.21',
14507 'Locale::Script' => '2.07',
14508 'Log::Message' => '0.02',
14509 'Log::Message::Config' => '0.01',
14510 'Log::Message::Handlers'=> undef,
14511 'Log::Message::Item' => undef,
14512 'Log::Message::Simple' => '0.06',
14513 'MIME::Base64' => '3.09',
14514 'MIME::QuotedPrint' => '3.09',
14515 'Math::BigFloat' => '1.60',
14516 'Math::BigFloat::Trace' => '0.01',
14517 'Math::BigInt' => '1.89_01',
14518 'Math::BigInt::Calc' => '0.52',
14519 'Math::BigInt::CalcEmu' => '0.05',
14520 'Math::BigInt::FastCalc'=> '0.19',
14521 'Math::BigInt::Trace' => '0.01',
14522 'Math::BigRat' => '0.24',
14523 'Math::Complex' => '1.56',
14524 'Math::Trig' => '1.2',
14525 'Memoize' => '1.01_03',
14526 'Memoize::AnyDBM_File' => '0.65',
14527 'Memoize::Expire' => '1.00',
14528 'Memoize::ExpireFile' => '1.01',
14529 'Memoize::ExpireTest' => '0.65',
14530 'Memoize::NDBM_File' => '0.65',
14531 'Memoize::SDBM_File' => '0.65',
14532 'Memoize::Storable' => '0.65',
14533 'Module::Build' => '0.3603',
14534 'Module::Build::Base' => '0.3603',
14535 'Module::Build::Compat' => '0.3603',
14536 'Module::Build::Config' => '0.3603',
14537 'Module::Build::ConfigData'=> undef,
14538 'Module::Build::Cookbook'=> '0.3603',
14539 'Module::Build::Dumper' => '0.3603',
14540 'Module::Build::ModuleInfo'=> '0.3603',
14541 'Module::Build::Notes' => '0.3603',
14542 'Module::Build::PPMMaker'=> '0.3603',
14543 'Module::Build::Platform::Amiga'=> '0.3603',
14544 'Module::Build::Platform::Default'=> '0.3603',
14545 'Module::Build::Platform::EBCDIC'=> '0.3603',
14546 'Module::Build::Platform::MPEiX'=> '0.3603',
14547 'Module::Build::Platform::MacOS'=> '0.3603',
14548 'Module::Build::Platform::RiscOS'=> '0.3603',
14549 'Module::Build::Platform::Unix'=> '0.3603',
14550 'Module::Build::Platform::VMS'=> '0.3603',
14551 'Module::Build::Platform::VOS'=> '0.3603',
14552 'Module::Build::Platform::Windows'=> '0.3603',
14553 'Module::Build::Platform::aix'=> '0.3603',
14554 'Module::Build::Platform::cygwin'=> '0.3603',
14555 'Module::Build::Platform::darwin'=> '0.3603',
14556 'Module::Build::Platform::os2'=> '0.3603',
14557 'Module::Build::PodParser'=> '0.3603',
14558 'Module::Build::Version'=> '0.77',
14559 'Module::Build::YAML' => '1.40',
14560 'Module::CoreList' => '2.31',
14561 'Module::Load' => '0.16',
14562 'Module::Load::Conditional'=> '0.34',
14563 'Module::Loaded' => '0.06',
14564 'Module::Pluggable' => '3.9',
14565 'Module::Pluggable::Object'=> '3.9',
14566 'Moped::Msg' => '0.01',
14567 'NDBM_File' => '1.08',
14568 'NEXT' => '0.64',
14569 'Net::Cmd' => '2.29',
14570 'Net::Config' => '1.11',
14571 'Net::Domain' => '2.20',
14572 'Net::FTP' => '2.77',
14573 'Net::FTP::A' => '1.18',
14574 'Net::FTP::E' => '0.01',
14575 'Net::FTP::I' => '1.12',
14576 'Net::FTP::L' => '0.01',
14577 'Net::FTP::dataconn' => '0.11',
14578 'Net::NNTP' => '2.24',
14579 'Net::Netrc' => '2.12',
14580 'Net::POP3' => '2.29',
14581 'Net::Ping' => '2.36',
14582 'Net::SMTP' => '2.31',
14583 'Net::Time' => '2.10',
14584 'Net::hostent' => '1.01',
14585 'Net::netent' => '1.00',
14586 'Net::protoent' => '1.00',
14587 'Net::servent' => '1.01',
14588 'O' => '1.01',
14589 'ODBM_File' => '1.07',
14590 'Object::Accessor' => '0.36',
14591 'Opcode' => '1.15',
14592 'POSIX' => '1.19',
14593 'Package::Constants' => '0.02',
14594 'Params::Check' => '0.26',
14595 'Parse::CPAN::Meta' => '1.40',
14596 'PerlIO' => '1.06',
14597 'PerlIO::encoding' => '0.12',
14598 'PerlIO::scalar' => '0.07',
14599 'PerlIO::via' => '0.09',
14600 'PerlIO::via::QuotedPrint'=> '0.06',
14601 'Pod::Checker' => '1.45',
14602 'Pod::Escapes' => '1.04',
14603 'Pod::Find' => '1.35',
14604 'Pod::Functions' => '1.04',
14605 'Pod::Html' => '1.09',
14606 'Pod::InputObjects' => '1.31',
14607 'Pod::LaTeX' => '0.58',
14608 'Pod::Man' => '2.23',
14609 'Pod::ParseLink' => '1.10',
14610 'Pod::ParseUtils' => '1.36',
14611 'Pod::Parser' => '1.37',
14612 'Pod::Perldoc' => '3.15_02',
14613 'Pod::Perldoc::BaseTo' => undef,
14614 'Pod::Perldoc::GetOptsOO'=> undef,
14615 'Pod::Perldoc::ToChecker'=> undef,
14616 'Pod::Perldoc::ToMan' => undef,
14617 'Pod::Perldoc::ToNroff' => undef,
14618 'Pod::Perldoc::ToPod' => undef,
14619 'Pod::Perldoc::ToRtf' => undef,
14620 'Pod::Perldoc::ToText' => undef,
14621 'Pod::Perldoc::ToTk' => undef,
14622 'Pod::Perldoc::ToXml' => undef,
14623 'Pod::PlainText' => '2.04',
14624 'Pod::Plainer' => '1.02',
14625 'Pod::Select' => '1.36',
14626 'Pod::Simple' => '3.13',
14627 'Pod::Simple::BlackBox' => '3.13',
14628 'Pod::Simple::Checker' => '3.13',
14629 'Pod::Simple::Debug' => '3.13',
14630 'Pod::Simple::DumpAsText'=> '3.13',
14631 'Pod::Simple::DumpAsXML'=> '3.13',
14632 'Pod::Simple::HTML' => '3.13',
14633 'Pod::Simple::HTMLBatch'=> '3.13',
14634 'Pod::Simple::HTMLLegacy'=> '5.01',
14635 'Pod::Simple::LinkSection'=> '3.13',
14636 'Pod::Simple::Methody' => '3.13',
14637 'Pod::Simple::Progress' => '3.13',
14638 'Pod::Simple::PullParser'=> '3.13',
14639 'Pod::Simple::PullParserEndToken'=> '3.13',
14640 'Pod::Simple::PullParserStartToken'=> '3.13',
14641 'Pod::Simple::PullParserTextToken'=> '3.13',
14642 'Pod::Simple::PullParserToken'=> '3.13',
14643 'Pod::Simple::RTF' => '3.13',
14644 'Pod::Simple::Search' => '3.13',
14645 'Pod::Simple::SimpleTree'=> '3.13',
14646 'Pod::Simple::Text' => '3.13',
14647 'Pod::Simple::TextContent'=> '3.13',
14648 'Pod::Simple::TiedOutFH'=> '3.13',
14649 'Pod::Simple::Transcode'=> '3.13',
14650 'Pod::Simple::TranscodeDumb'=> '3.13',
14651 'Pod::Simple::TranscodeSmart'=> '3.13',
14652 'Pod::Simple::XHTML' => '3.13',
14653 'Pod::Simple::XMLOutStream'=> '3.13',
14654 'Pod::Text' => '3.14',
14655 'Pod::Text::Color' => '2.06',
14656 'Pod::Text::Overstrike' => '2.04',
14657 'Pod::Text::Termcap' => '2.06',
14658 'Pod::Usage' => '1.36',
14659 'SDBM_File' => '1.06',
14660 'Safe' => '2.25',
14661 'Scalar::Util' => '1.22',
14662 'Scalar::Util::PP' => '1.22',
14663 'Search::Dict' => '1.02',
14664 'SelectSaver' => '1.02',
14665 'SelfLoader' => '1.17',
14666 'Shell' => '0.72_01',
14667 'Socket' => '1.87',
14668 'Storable' => '2.22',
14669 'Switch' => '2.16',
14670 'Symbol' => '1.07',
14671 'Sys::Hostname' => '1.11',
14672 'Sys::Syslog' => '0.27',
14673 'Sys::Syslog::win32::Win32'=> undef,
14674 'TAP::Base' => '3.17',
14675 'TAP::Formatter::Base' => '3.17',
14676 'TAP::Formatter::Color' => '3.17',
14677 'TAP::Formatter::Console'=> '3.17',
14678 'TAP::Formatter::Console::ParallelSession'=> '3.17',
14679 'TAP::Formatter::Console::Session'=> '3.17',
14680 'TAP::Formatter::File' => '3.17',
14681 'TAP::Formatter::File::Session'=> '3.17',
14682 'TAP::Formatter::Session'=> '3.17',
14683 'TAP::Harness' => '3.17',
14684 'TAP::Object' => '3.17',
14685 'TAP::Parser' => '3.17',
14686 'TAP::Parser::Aggregator'=> '3.17',
14687 'TAP::Parser::Grammar' => '3.17',
14688 'TAP::Parser::Iterator' => '3.17',
14689 'TAP::Parser::Iterator::Array'=> '3.17',
14690 'TAP::Parser::Iterator::Process'=> '3.17',
14691 'TAP::Parser::Iterator::Stream'=> '3.17',
14692 'TAP::Parser::IteratorFactory'=> '3.17',
14693 'TAP::Parser::Multiplexer'=> '3.17',
14694 'TAP::Parser::Result' => '3.17',
14695 'TAP::Parser::Result::Bailout'=> '3.17',
14696 'TAP::Parser::Result::Comment'=> '3.17',
14697 'TAP::Parser::Result::Plan'=> '3.17',
14698 'TAP::Parser::Result::Pragma'=> '3.17',
14699 'TAP::Parser::Result::Test'=> '3.17',
14700 'TAP::Parser::Result::Unknown'=> '3.17',
14701 'TAP::Parser::Result::Version'=> '3.17',
14702 'TAP::Parser::Result::YAML'=> '3.17',
14703 'TAP::Parser::ResultFactory'=> '3.17',
14704 'TAP::Parser::Scheduler'=> '3.17',
14705 'TAP::Parser::Scheduler::Job'=> '3.17',
14706 'TAP::Parser::Scheduler::Spinner'=> '3.17',
14707 'TAP::Parser::Source' => '3.17',
14708 'TAP::Parser::Source::Perl'=> '3.17',
14709 'TAP::Parser::Utils' => '3.17',
14710 'TAP::Parser::YAMLish::Reader'=> '3.17',
14711 'TAP::Parser::YAMLish::Writer'=> '3.17',
14712 'Term::ANSIColor' => '2.02',
14713 'Term::Cap' => '1.12',
14714 'Term::Complete' => '1.402',
14715 'Term::ReadLine' => '1.05',
14716 'Term::UI' => '0.20',
14717 'Term::UI::History' => undef,
14718 'Test' => '1.25_02',
14719 'Test::Builder' => '0.94',
14720 'Test::Builder::Module' => '0.94',
14721 'Test::Builder::Tester' => '1.18',
14722 'Test::Builder::Tester::Color'=> '1.18',
14723 'Test::Harness' => '3.17',
14724 'Test::More' => '0.94',
14725 'Test::Simple' => '0.94',
14726 'Text::Abbrev' => '1.01',
14727 'Text::Balanced' => '2.02',
14728 'Text::ParseWords' => '3.27',
14729 'Text::Soundex' => '3.03_01',
14730 'Text::Tabs' => '2009.0305',
14731 'Text::Wrap' => '2009.0305',
14732 'Thread' => '3.02',
14733 'Thread::Queue' => '2.11',
14734 'Thread::Semaphore' => '2.09',
14735 'Tie::Array' => '1.03',
14736 'Tie::File' => '0.97_02',
14737 'Tie::Handle' => '4.2',
14738 'Tie::Hash' => '1.03',
14739 'Tie::Hash::NamedCapture'=> '0.06',
14740 'Tie::Memoize' => '1.1',
14741 'Tie::RefHash' => '1.38',
14742 'Tie::Scalar' => '1.02',
14743 'Tie::StdHandle' => '4.2',
14744 'Tie::SubstrHash' => '1.00',
14745 'Time::HiRes' => '1.9719',
14746 'Time::Local' => '1.1901_01',
14747 'Time::Piece' => '1.15_01',
14748 'Time::Piece::Seconds' => undef,
14749 'Time::Seconds' => undef,
14750 'Time::gmtime' => '1.03',
14751 'Time::localtime' => '1.02',
14752 'Time::tm' => '1.00',
14753 'UNIVERSAL' => '1.06',
14754 'Unicode' => '5.2.0',
14755 'Unicode::Collate' => '0.52_01',
14756 'Unicode::Normalize' => '1.03',
14757 'Unicode::UCD' => '0.27',
14758 'User::grent' => '1.01',
14759 'User::pwent' => '1.00',
14760 'VMS::DCLsym' => '1.03',
14761 'VMS::Stdio' => '2.4',
14762 'Win32' => '0.39',
14763 'Win32API::File' => '0.1101',
14764 'Win32API::File::ExtUtils::Myconst2perl'=> '1',
14765 'Win32CORE' => '0.02',
14766 'XS::APItest' => '0.18',
14767 'XS::APItest::KeywordRPN'=> '0.004',
14768 'XS::Typemap' => '0.03',
14769 'XSLoader' => '0.10',
14770 'XSLoader::XSLoader' => '0.10',
14771 'attributes' => '0.12',
14772 'autodie' => '2.06_01',
14773 'autodie::exception' => '2.06_01',
14774 'autodie::exception::system'=> '2.06_01',
14775 'autodie::hints' => '2.06_01',
14776 'autouse' => '1.06',
14777 'base' => '2.15',
14778 'bigint' => '0.23',
14779 'bignum' => '0.23',
14780 'bigrat' => '0.23',
14781 'blib' => '1.04',
14782 'bytes' => '1.04',
14783 'charnames' => '1.07',
14784 'constant' => '1.20',
14785 'deprecate' => '0.01',
14786 'diagnostics' => '1.19',
14787 'encoding' => '2.6_01',
14788 'encoding::warnings' => '0.11',
14789 'feature' => '1.17',
14790 'fields' => '2.15',
14791 'filetest' => '1.02',
14792 'if' => '0.05',
14793 'inc::latest' => '0.3603',
14794 'integer' => '1.00',
14795 'less' => '0.03',
14796 'lib' => '0.62',
14797 'locale' => '1.00',
14798 'mro' => '1.02',
14799 'open' => '1.07',
14800 'ops' => '1.02',
14801 'overload' => '1.10',
14802 'overload::numbers' => undef,
14803 'overloading' => '0.01',
14804 'parent' => '0.223',
14805 're' => '0.11',
14806 'sigtrap' => '1.04',
14807 'sort' => '2.01',
14808 'strict' => '1.04',
14809 'subs' => '1.00',
14810 'threads' => '1.77_01',
14811 'threads::shared' => '1.33',
14812 'utf8' => '1.08',
14813 'vars' => '1.01',
14814 'version' => '0.82',
14815 'vmsish' => '1.02',
14816 'warnings' => '1.09',
14817 'warnings::register' => '1.01',
14820 5.012001 => {
14821 'AnyDBM_File' => '1.00',
14822 'App::Cpan' => '1.5701',
14823 'App::Prove' => '3.17',
14824 'App::Prove::State' => '3.17',
14825 'App::Prove::State::Result'=> '3.17',
14826 'App::Prove::State::Result::Test'=> '3.17',
14827 'Archive::Extract' => '0.38',
14828 'Archive::Tar' => '1.54',
14829 'Archive::Tar::Constant'=> '0.02',
14830 'Archive::Tar::File' => '0.02',
14831 'Attribute::Handlers' => '0.87',
14832 'AutoLoader' => '5.70',
14833 'AutoSplit' => '1.06',
14834 'B' => '1.23',
14835 'B::Concise' => '0.78',
14836 'B::Debug' => '1.12',
14837 'B::Deparse' => '0.97',
14838 'B::Lint' => '1.11_01',
14839 'B::Lint::Debug' => '0.01',
14840 'B::Showlex' => '1.02',
14841 'B::Terse' => '1.05',
14842 'B::Xref' => '1.02',
14843 'Benchmark' => '1.11',
14844 'CGI' => '3.49',
14845 'CGI::Apache' => '1.01',
14846 'CGI::Carp' => '3.45',
14847 'CGI::Cookie' => '1.29',
14848 'CGI::Fast' => '1.08',
14849 'CGI::Pretty' => '3.46',
14850 'CGI::Push' => '1.04',
14851 'CGI::Switch' => '1.01',
14852 'CGI::Util' => '3.48',
14853 'CPAN' => '1.94_56',
14854 'CPAN::Author' => '5.5',
14855 'CPAN::Bundle' => '5.5',
14856 'CPAN::CacheMgr' => '5.5',
14857 'CPAN::Complete' => '5.5',
14858 'CPAN::Debug' => '5.5001',
14859 'CPAN::DeferredCode' => '5.50',
14860 'CPAN::Distribution' => '1.9456_01',
14861 'CPAN::Distroprefs' => '6',
14862 'CPAN::Distrostatus' => '5.5',
14863 'CPAN::Exception::RecursiveDependency'=> '5.5',
14864 'CPAN::Exception::blocked_urllist'=> '1.0',
14865 'CPAN::Exception::yaml_not_installed'=> '5.5',
14866 'CPAN::FTP' => '5.5004',
14867 'CPAN::FTP::netrc' => '1.00',
14868 'CPAN::FirstTime' => '5.5301',
14869 'CPAN::HandleConfig' => '5.5001',
14870 'CPAN::Index' => '1.94',
14871 'CPAN::InfoObj' => '5.5',
14872 'CPAN::Kwalify' => '5.50',
14873 'CPAN::LWP::UserAgent' => '1.94',
14874 'CPAN::Mirrors' => '1.77',
14875 'CPAN::Module' => '5.5',
14876 'CPAN::Nox' => '5.50',
14877 'CPAN::Prompt' => '5.5',
14878 'CPAN::Queue' => '5.5',
14879 'CPAN::Shell' => '5.5001',
14880 'CPAN::Tarzip' => '5.5011',
14881 'CPAN::URL' => '5.5',
14882 'CPAN::Version' => '5.5',
14883 'CPANPLUS' => '0.90',
14884 'CPANPLUS::Backend' => undef,
14885 'CPANPLUS::Backend::RV' => undef,
14886 'CPANPLUS::Config' => undef,
14887 'CPANPLUS::Configure' => undef,
14888 'CPANPLUS::Configure::Setup'=> undef,
14889 'CPANPLUS::Dist' => undef,
14890 'CPANPLUS::Dist::Autobundle'=> undef,
14891 'CPANPLUS::Dist::Base' => undef,
14892 'CPANPLUS::Dist::Build' => '0.46',
14893 'CPANPLUS::Dist::Build::Constants'=> '0.46',
14894 'CPANPLUS::Dist::MM' => undef,
14895 'CPANPLUS::Dist::Sample'=> undef,
14896 'CPANPLUS::Error' => undef,
14897 'CPANPLUS::Internals' => '0.90',
14898 'CPANPLUS::Internals::Constants'=> undef,
14899 'CPANPLUS::Internals::Constants::Report'=> undef,
14900 'CPANPLUS::Internals::Extract'=> undef,
14901 'CPANPLUS::Internals::Fetch'=> undef,
14902 'CPANPLUS::Internals::Report'=> undef,
14903 'CPANPLUS::Internals::Search'=> undef,
14904 'CPANPLUS::Internals::Source'=> undef,
14905 'CPANPLUS::Internals::Source::Memory'=> undef,
14906 'CPANPLUS::Internals::Source::SQLite'=> undef,
14907 'CPANPLUS::Internals::Source::SQLite::Tie'=> undef,
14908 'CPANPLUS::Internals::Utils'=> undef,
14909 'CPANPLUS::Internals::Utils::Autoflush'=> undef,
14910 'CPANPLUS::Module' => undef,
14911 'CPANPLUS::Module::Author'=> undef,
14912 'CPANPLUS::Module::Author::Fake'=> undef,
14913 'CPANPLUS::Module::Checksums'=> undef,
14914 'CPANPLUS::Module::Fake'=> undef,
14915 'CPANPLUS::Module::Signature'=> undef,
14916 'CPANPLUS::Selfupdate' => undef,
14917 'CPANPLUS::Shell' => undef,
14918 'CPANPLUS::Shell::Classic'=> '0.0562',
14919 'CPANPLUS::Shell::Default'=> '0.90',
14920 'CPANPLUS::Shell::Default::Plugins::CustomSource'=> undef,
14921 'CPANPLUS::Shell::Default::Plugins::Remote'=> undef,
14922 'CPANPLUS::Shell::Default::Plugins::Source'=> undef,
14923 'Carp' => '1.16',
14924 'Carp::Heavy' => '1.16',
14925 'Class::ISA' => '0.36',
14926 'Class::Struct' => '0.63',
14927 'Compress::Raw::Bzip2' => '2.024',
14928 'Compress::Raw::Zlib' => '2.024',
14929 'Compress::Zlib' => '2.024',
14930 'Config' => undef,
14931 'Config::Extensions' => '0.01',
14932 'Cwd' => '3.31',
14933 'DB' => '1.02',
14934 'DBM_Filter' => '0.03',
14935 'DBM_Filter::compress' => '0.02',
14936 'DBM_Filter::encode' => '0.02',
14937 'DBM_Filter::int32' => '0.02',
14938 'DBM_Filter::null' => '0.02',
14939 'DBM_Filter::utf8' => '0.02',
14940 'DB_File' => '1.820',
14941 'Data::Dumper' => '2.125',
14942 'Devel::DProf' => '20080331.00',
14943 'Devel::DProf::dprof::V'=> undef,
14944 'Devel::InnerPackage' => '0.3',
14945 'Devel::PPPort' => '3.19',
14946 'Devel::Peek' => '1.04',
14947 'Devel::SelfStubber' => '1.03',
14948 'Digest' => '1.16',
14949 'Digest::MD5' => '2.39',
14950 'Digest::SHA' => '5.47',
14951 'Digest::base' => '1.16',
14952 'Digest::file' => '1.16',
14953 'DirHandle' => '1.03',
14954 'Dumpvalue' => '1.13',
14955 'DynaLoader' => '1.10',
14956 'Encode' => '2.39',
14957 'Encode::Alias' => '2.12',
14958 'Encode::Byte' => '2.04',
14959 'Encode::CJKConstants' => '2.02',
14960 'Encode::CN' => '2.03',
14961 'Encode::CN::HZ' => '2.05',
14962 'Encode::Config' => '2.05',
14963 'Encode::EBCDIC' => '2.02',
14964 'Encode::Encoder' => '2.01',
14965 'Encode::Encoding' => '2.05',
14966 'Encode::GSM0338' => '2.01',
14967 'Encode::Guess' => '2.03',
14968 'Encode::JP' => '2.04',
14969 'Encode::JP::H2Z' => '2.02',
14970 'Encode::JP::JIS7' => '2.04',
14971 'Encode::KR' => '2.03',
14972 'Encode::KR::2022_KR' => '2.02',
14973 'Encode::MIME::Header' => '2.11',
14974 'Encode::MIME::Header::ISO_2022_JP'=> '1.03',
14975 'Encode::MIME::Name' => '1.01',
14976 'Encode::Symbol' => '2.02',
14977 'Encode::TW' => '2.03',
14978 'Encode::Unicode' => '2.07',
14979 'Encode::Unicode::UTF7' => '2.04',
14980 'English' => '1.04',
14981 'Env' => '1.01',
14982 'Errno' => '1.11',
14983 'Exporter' => '5.64_01',
14984 'Exporter::Heavy' => '5.64_01',
14985 'ExtUtils::CBuilder' => '0.27',
14986 'ExtUtils::CBuilder::Base'=> '0.27',
14987 'ExtUtils::CBuilder::Platform::Unix'=> '0.27',
14988 'ExtUtils::CBuilder::Platform::VMS'=> '0.27',
14989 'ExtUtils::CBuilder::Platform::Windows'=> '0.27',
14990 'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.27',
14991 'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.27',
14992 'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.27',
14993 'ExtUtils::CBuilder::Platform::aix'=> '0.27',
14994 'ExtUtils::CBuilder::Platform::cygwin'=> '0.27',
14995 'ExtUtils::CBuilder::Platform::darwin'=> '0.27',
14996 'ExtUtils::CBuilder::Platform::dec_osf'=> '0.27',
14997 'ExtUtils::CBuilder::Platform::os2'=> '0.27',
14998 'ExtUtils::Command' => '1.16',
14999 'ExtUtils::Command::MM' => '6.56',
15000 'ExtUtils::Constant' => '0.22',
15001 'ExtUtils::Constant::Base'=> '0.04',
15002 'ExtUtils::Constant::ProxySubs'=> '0.06',
15003 'ExtUtils::Constant::Utils'=> '0.02',
15004 'ExtUtils::Constant::XS'=> '0.03',
15005 'ExtUtils::Embed' => '1.28',
15006 'ExtUtils::Install' => '1.55',
15007 'ExtUtils::Installed' => '1.999_001',
15008 'ExtUtils::Liblist' => '6.56',
15009 'ExtUtils::Liblist::Kid'=> '6.56',
15010 'ExtUtils::MM' => '6.56',
15011 'ExtUtils::MM_AIX' => '6.56',
15012 'ExtUtils::MM_Any' => '6.56',
15013 'ExtUtils::MM_BeOS' => '6.56',
15014 'ExtUtils::MM_Cygwin' => '6.56',
15015 'ExtUtils::MM_DOS' => '6.56',
15016 'ExtUtils::MM_Darwin' => '6.56',
15017 'ExtUtils::MM_MacOS' => '6.56',
15018 'ExtUtils::MM_NW5' => '6.56',
15019 'ExtUtils::MM_OS2' => '6.56',
15020 'ExtUtils::MM_QNX' => '6.56',
15021 'ExtUtils::MM_UWIN' => '6.56',
15022 'ExtUtils::MM_Unix' => '6.56',
15023 'ExtUtils::MM_VMS' => '6.56',
15024 'ExtUtils::MM_VOS' => '6.56',
15025 'ExtUtils::MM_Win32' => '6.56',
15026 'ExtUtils::MM_Win95' => '6.56',
15027 'ExtUtils::MY' => '6.56',
15028 'ExtUtils::MakeMaker' => '6.56',
15029 'ExtUtils::MakeMaker::Config'=> '6.56',
15030 'ExtUtils::Manifest' => '1.57',
15031 'ExtUtils::Miniperl' => undef,
15032 'ExtUtils::Mkbootstrap' => '6.56',
15033 'ExtUtils::Mksymlists' => '6.56',
15034 'ExtUtils::Packlist' => '1.44',
15035 'ExtUtils::ParseXS' => '2.21',
15036 'ExtUtils::XSSymSet' => '1.1',
15037 'ExtUtils::testlib' => '6.56',
15038 'Fatal' => '2.06_01',
15039 'Fcntl' => '1.06',
15040 'File::Basename' => '2.78',
15041 'File::CheckTree' => '4.4',
15042 'File::Compare' => '1.1006',
15043 'File::Copy' => '2.18',
15044 'File::DosGlob' => '1.01',
15045 'File::Fetch' => '0.24',
15046 'File::Find' => '1.15',
15047 'File::Glob' => '1.07',
15048 'File::GlobMapper' => '1.000',
15049 'File::Path' => '2.08_01',
15050 'File::Spec' => '3.31',
15051 'File::Spec::Cygwin' => '3.30',
15052 'File::Spec::Epoc' => '3.30',
15053 'File::Spec::Functions' => '3.30',
15054 'File::Spec::Mac' => '3.30',
15055 'File::Spec::OS2' => '3.30',
15056 'File::Spec::Unix' => '3.30',
15057 'File::Spec::VMS' => '3.30',
15058 'File::Spec::Win32' => '3.30',
15059 'File::Temp' => '0.22',
15060 'File::stat' => '1.02',
15061 'FileCache' => '1.08',
15062 'FileHandle' => '2.02',
15063 'VMS::Filespec' => '1.12',
15064 'Filter::Simple' => '0.84',
15065 'Filter::Util::Call' => '1.08',
15066 'FindBin' => '1.50',
15067 'GDBM_File' => '1.10',
15068 'Getopt::Long' => '2.38',
15069 'Getopt::Std' => '1.06',
15070 'Hash::Util' => '0.07',
15071 'Hash::Util::FieldHash' => '1.04',
15072 'I18N::Collate' => '1.01',
15073 'I18N::LangTags' => '0.35',
15074 'I18N::LangTags::Detect'=> '1.04',
15075 'I18N::LangTags::List' => '0.35',
15076 'I18N::Langinfo' => '0.03',
15077 'IO' => '1.25_02',
15078 'IO::Compress::Adapter::Bzip2'=> '2.024',
15079 'IO::Compress::Adapter::Deflate'=> '2.024',
15080 'IO::Compress::Adapter::Identity'=> '2.024',
15081 'IO::Compress::Base' => '2.024',
15082 'IO::Compress::Base::Common'=> '2.024',
15083 'IO::Compress::Bzip2' => '2.024',
15084 'IO::Compress::Deflate' => '2.024',
15085 'IO::Compress::Gzip' => '2.024',
15086 'IO::Compress::Gzip::Constants'=> '2.024',
15087 'IO::Compress::RawDeflate'=> '2.024',
15088 'IO::Compress::Zip' => '2.024',
15089 'IO::Compress::Zip::Constants'=> '2.024',
15090 'IO::Compress::Zlib::Constants'=> '2.024',
15091 'IO::Compress::Zlib::Extra'=> '2.024',
15092 'IO::Dir' => '1.07',
15093 'IO::File' => '1.14',
15094 'IO::Handle' => '1.28',
15095 'IO::Pipe' => '1.13',
15096 'IO::Poll' => '0.07',
15097 'IO::Seekable' => '1.10',
15098 'IO::Select' => '1.17',
15099 'IO::Socket' => '1.31',
15100 'IO::Socket::INET' => '1.31',
15101 'IO::Socket::UNIX' => '1.23',
15102 'IO::Uncompress::Adapter::Bunzip2'=> '2.024',
15103 'IO::Uncompress::Adapter::Identity'=> '2.024',
15104 'IO::Uncompress::Adapter::Inflate'=> '2.024',
15105 'IO::Uncompress::AnyInflate'=> '2.024',
15106 'IO::Uncompress::AnyUncompress'=> '2.024',
15107 'IO::Uncompress::Base' => '2.024',
15108 'IO::Uncompress::Bunzip2'=> '2.024',
15109 'IO::Uncompress::Gunzip'=> '2.024',
15110 'IO::Uncompress::Inflate'=> '2.024',
15111 'IO::Uncompress::RawInflate'=> '2.024',
15112 'IO::Uncompress::Unzip' => '2.024',
15113 'IO::Zlib' => '1.10',
15114 'IPC::Cmd' => '0.54',
15115 'IPC::Msg' => '2.01',
15116 'IPC::Open2' => '1.03',
15117 'IPC::Open3' => '1.05',
15118 'IPC::Semaphore' => '2.01',
15119 'IPC::SharedMem' => '2.01',
15120 'IPC::SysV' => '2.01',
15121 'List::Util' => '1.22',
15122 'List::Util::PP' => '1.22',
15123 'List::Util::XS' => '1.22',
15124 'Locale::Constants' => '2.07',
15125 'Locale::Country' => '2.07',
15126 'Locale::Currency' => '2.07',
15127 'Locale::Language' => '2.07',
15128 'Locale::Maketext' => '1.14',
15129 'Locale::Maketext::Guts'=> '1.13',
15130 'Locale::Maketext::GutsLoader'=> '1.13',
15131 'Locale::Maketext::Simple'=> '0.21',
15132 'Locale::Script' => '2.07',
15133 'Log::Message' => '0.02',
15134 'Log::Message::Config' => '0.01',
15135 'Log::Message::Handlers'=> undef,
15136 'Log::Message::Item' => undef,
15137 'Log::Message::Simple' => '0.06',
15138 'MIME::Base64' => '3.08',
15139 'MIME::QuotedPrint' => '3.08',
15140 'Math::BigFloat' => '1.60',
15141 'Math::BigFloat::Trace' => '0.01',
15142 'Math::BigInt' => '1.89_01',
15143 'Math::BigInt::Calc' => '0.52',
15144 'Math::BigInt::CalcEmu' => '0.05',
15145 'Math::BigInt::FastCalc'=> '0.19',
15146 'Math::BigInt::Trace' => '0.01',
15147 'Math::BigRat' => '0.24',
15148 'Math::Complex' => '1.56',
15149 'Math::Trig' => '1.2',
15150 'Memoize' => '1.01_03',
15151 'Memoize::AnyDBM_File' => '0.65',
15152 'Memoize::Expire' => '1.00',
15153 'Memoize::ExpireFile' => '1.01',
15154 'Memoize::ExpireTest' => '0.65',
15155 'Memoize::NDBM_File' => '0.65',
15156 'Memoize::SDBM_File' => '0.65',
15157 'Memoize::Storable' => '0.65',
15158 'Module::Build' => '0.3603',
15159 'Module::Build::Base' => '0.3603',
15160 'Module::Build::Compat' => '0.3603',
15161 'Module::Build::Config' => '0.3603',
15162 'Module::Build::ConfigData'=> undef,
15163 'Module::Build::Cookbook'=> '0.3603',
15164 'Module::Build::Dumper' => '0.3603',
15165 'Module::Build::ModuleInfo'=> '0.3603',
15166 'Module::Build::Notes' => '0.3603',
15167 'Module::Build::PPMMaker'=> '0.3603',
15168 'Module::Build::Platform::Amiga'=> '0.3603',
15169 'Module::Build::Platform::Default'=> '0.3603',
15170 'Module::Build::Platform::EBCDIC'=> '0.3603',
15171 'Module::Build::Platform::MPEiX'=> '0.3603',
15172 'Module::Build::Platform::MacOS'=> '0.3603',
15173 'Module::Build::Platform::RiscOS'=> '0.3603',
15174 'Module::Build::Platform::Unix'=> '0.3603',
15175 'Module::Build::Platform::VMS'=> '0.3603',
15176 'Module::Build::Platform::VOS'=> '0.3603',
15177 'Module::Build::Platform::Windows'=> '0.3603',
15178 'Module::Build::Platform::aix'=> '0.3603',
15179 'Module::Build::Platform::cygwin'=> '0.3603',
15180 'Module::Build::Platform::darwin'=> '0.3603',
15181 'Module::Build::Platform::os2'=> '0.3603',
15182 'Module::Build::PodParser'=> '0.3603',
15183 'Module::Build::Version'=> '0.77',
15184 'Module::Build::YAML' => '1.40',
15185 'Module::CoreList' => '2.32',
15186 'Module::Load' => '0.16',
15187 'Module::Load::Conditional'=> '0.34',
15188 'Module::Loaded' => '0.06',
15189 'Module::Pluggable' => '3.9',
15190 'Module::Pluggable::Object'=> '3.9',
15191 'Moped::Msg' => '0.01',
15192 'NDBM_File' => '1.08',
15193 'NEXT' => '0.64',
15194 'Net::Cmd' => '2.29',
15195 'Net::Config' => '1.11',
15196 'Net::Domain' => '2.20',
15197 'Net::FTP' => '2.77',
15198 'Net::FTP::A' => '1.18',
15199 'Net::FTP::E' => '0.01',
15200 'Net::FTP::I' => '1.12',
15201 'Net::FTP::L' => '0.01',
15202 'Net::FTP::dataconn' => '0.11',
15203 'Net::NNTP' => '2.24',
15204 'Net::Netrc' => '2.12',
15205 'Net::POP3' => '2.29',
15206 'Net::Ping' => '2.36',
15207 'Net::SMTP' => '2.31',
15208 'Net::Time' => '2.10',
15209 'Net::hostent' => '1.01',
15210 'Net::netent' => '1.00',
15211 'Net::protoent' => '1.00',
15212 'Net::servent' => '1.01',
15213 'O' => '1.01',
15214 'ODBM_File' => '1.07',
15215 'Object::Accessor' => '0.36',
15216 'Opcode' => '1.15',
15217 'POSIX' => '1.19',
15218 'Package::Constants' => '0.02',
15219 'Params::Check' => '0.26',
15220 'Parse::CPAN::Meta' => '1.40',
15221 'PerlIO' => '1.06',
15222 'PerlIO::encoding' => '0.12',
15223 'PerlIO::scalar' => '0.07',
15224 'PerlIO::via' => '0.09',
15225 'PerlIO::via::QuotedPrint'=> '0.06',
15226 'Pod::Checker' => '1.45',
15227 'Pod::Escapes' => '1.04',
15228 'Pod::Find' => '1.35',
15229 'Pod::Functions' => '1.04',
15230 'Pod::Html' => '1.09',
15231 'Pod::InputObjects' => '1.31',
15232 'Pod::LaTeX' => '0.58',
15233 'Pod::Man' => '2.23',
15234 'Pod::ParseLink' => '1.10',
15235 'Pod::ParseUtils' => '1.36',
15236 'Pod::Parser' => '1.37',
15237 'Pod::Perldoc' => '3.15_02',
15238 'Pod::Perldoc::BaseTo' => undef,
15239 'Pod::Perldoc::GetOptsOO'=> undef,
15240 'Pod::Perldoc::ToChecker'=> undef,
15241 'Pod::Perldoc::ToMan' => undef,
15242 'Pod::Perldoc::ToNroff' => undef,
15243 'Pod::Perldoc::ToPod' => undef,
15244 'Pod::Perldoc::ToRtf' => undef,
15245 'Pod::Perldoc::ToText' => undef,
15246 'Pod::Perldoc::ToTk' => undef,
15247 'Pod::Perldoc::ToXml' => undef,
15248 'Pod::PlainText' => '2.04',
15249 'Pod::Plainer' => '1.02',
15250 'Pod::Select' => '1.36',
15251 'Pod::Simple' => '3.14',
15252 'Pod::Simple::BlackBox' => '3.14',
15253 'Pod::Simple::Checker' => '3.14',
15254 'Pod::Simple::Debug' => '3.14',
15255 'Pod::Simple::DumpAsText'=> '3.14',
15256 'Pod::Simple::DumpAsXML'=> '3.14',
15257 'Pod::Simple::HTML' => '3.14',
15258 'Pod::Simple::HTMLBatch'=> '3.14',
15259 'Pod::Simple::HTMLLegacy'=> '5.01',
15260 'Pod::Simple::LinkSection'=> '3.14',
15261 'Pod::Simple::Methody' => '3.14',
15262 'Pod::Simple::Progress' => '3.14',
15263 'Pod::Simple::PullParser'=> '3.14',
15264 'Pod::Simple::PullParserEndToken'=> '3.14',
15265 'Pod::Simple::PullParserStartToken'=> '3.14',
15266 'Pod::Simple::PullParserTextToken'=> '3.14',
15267 'Pod::Simple::PullParserToken'=> '3.14',
15268 'Pod::Simple::RTF' => '3.14',
15269 'Pod::Simple::Search' => '3.14',
15270 'Pod::Simple::SimpleTree'=> '3.14',
15271 'Pod::Simple::Text' => '3.14',
15272 'Pod::Simple::TextContent'=> '3.14',
15273 'Pod::Simple::TiedOutFH'=> '3.14',
15274 'Pod::Simple::Transcode'=> '3.14',
15275 'Pod::Simple::TranscodeDumb'=> '3.14',
15276 'Pod::Simple::TranscodeSmart'=> '3.14',
15277 'Pod::Simple::XHTML' => '3.14',
15278 'Pod::Simple::XMLOutStream'=> '3.14',
15279 'Pod::Text' => '3.14',
15280 'Pod::Text::Color' => '2.06',
15281 'Pod::Text::Overstrike' => '2.04',
15282 'Pod::Text::Termcap' => '2.06',
15283 'Pod::Usage' => '1.36',
15284 'SDBM_File' => '1.06',
15285 'Safe' => '2.27',
15286 'Scalar::Util' => '1.22',
15287 'Scalar::Util::PP' => '1.22',
15288 'Search::Dict' => '1.02',
15289 'SelectSaver' => '1.02',
15290 'SelfLoader' => '1.17',
15291 'Shell' => '0.72_01',
15292 'Socket' => '1.87',
15293 'Storable' => '2.22',
15294 'Switch' => '2.16',
15295 'Symbol' => '1.07',
15296 'Sys::Hostname' => '1.11',
15297 'Sys::Syslog' => '0.27',
15298 'Sys::Syslog::win32::Win32'=> undef,
15299 'TAP::Base' => '3.17',
15300 'TAP::Formatter::Base' => '3.17',
15301 'TAP::Formatter::Color' => '3.17',
15302 'TAP::Formatter::Console'=> '3.17',
15303 'TAP::Formatter::Console::ParallelSession'=> '3.17',
15304 'TAP::Formatter::Console::Session'=> '3.17',
15305 'TAP::Formatter::File' => '3.17',
15306 'TAP::Formatter::File::Session'=> '3.17',
15307 'TAP::Formatter::Session'=> '3.17',
15308 'TAP::Harness' => '3.17',
15309 'TAP::Object' => '3.17',
15310 'TAP::Parser' => '3.17',
15311 'TAP::Parser::Aggregator'=> '3.17',
15312 'TAP::Parser::Grammar' => '3.17',
15313 'TAP::Parser::Iterator' => '3.17',
15314 'TAP::Parser::Iterator::Array'=> '3.17',
15315 'TAP::Parser::Iterator::Process'=> '3.17',
15316 'TAP::Parser::Iterator::Stream'=> '3.17',
15317 'TAP::Parser::IteratorFactory'=> '3.17',
15318 'TAP::Parser::Multiplexer'=> '3.17',
15319 'TAP::Parser::Result' => '3.17',
15320 'TAP::Parser::Result::Bailout'=> '3.17',
15321 'TAP::Parser::Result::Comment'=> '3.17',
15322 'TAP::Parser::Result::Plan'=> '3.17',
15323 'TAP::Parser::Result::Pragma'=> '3.17',
15324 'TAP::Parser::Result::Test'=> '3.17',
15325 'TAP::Parser::Result::Unknown'=> '3.17',
15326 'TAP::Parser::Result::Version'=> '3.17',
15327 'TAP::Parser::Result::YAML'=> '3.17',
15328 'TAP::Parser::ResultFactory'=> '3.17',
15329 'TAP::Parser::Scheduler'=> '3.17',
15330 'TAP::Parser::Scheduler::Job'=> '3.17',
15331 'TAP::Parser::Scheduler::Spinner'=> '3.17',
15332 'TAP::Parser::Source' => '3.17',
15333 'TAP::Parser::Source::Perl'=> '3.17',
15334 'TAP::Parser::Utils' => '3.17',
15335 'TAP::Parser::YAMLish::Reader'=> '3.17',
15336 'TAP::Parser::YAMLish::Writer'=> '3.17',
15337 'Term::ANSIColor' => '2.02',
15338 'Term::Cap' => '1.12',
15339 'Term::Complete' => '1.402',
15340 'Term::ReadLine' => '1.05',
15341 'Term::UI' => '0.20',
15342 'Term::UI::History' => undef,
15343 'Test' => '1.25_02',
15344 'Test::Builder' => '0.94',
15345 'Test::Builder::Module' => '0.94',
15346 'Test::Builder::Tester' => '1.18',
15347 'Test::Builder::Tester::Color'=> '1.18',
15348 'Test::Harness' => '3.17',
15349 'Test::More' => '0.94',
15350 'Test::Simple' => '0.94',
15351 'Text::Abbrev' => '1.01',
15352 'Text::Balanced' => '2.02',
15353 'Text::ParseWords' => '3.27',
15354 'Text::Soundex' => '3.03_01',
15355 'Text::Tabs' => '2009.0305',
15356 'Text::Wrap' => '2009.0305',
15357 'Thread' => '3.02',
15358 'Thread::Queue' => '2.11',
15359 'Thread::Semaphore' => '2.09',
15360 'Tie::Array' => '1.03',
15361 'Tie::File' => '0.97_02',
15362 'Tie::Handle' => '4.2',
15363 'Tie::Hash' => '1.03',
15364 'Tie::Hash::NamedCapture'=> '0.06',
15365 'Tie::Memoize' => '1.1',
15366 'Tie::RefHash' => '1.38',
15367 'Tie::Scalar' => '1.02',
15368 'Tie::StdHandle' => '4.2',
15369 'Tie::SubstrHash' => '1.00',
15370 'Time::HiRes' => '1.9719',
15371 'Time::Local' => '1.1901_01',
15372 'Time::Piece' => '1.15_01',
15373 'Time::Piece::Seconds' => undef,
15374 'Time::Seconds' => undef,
15375 'Time::gmtime' => '1.03',
15376 'Time::localtime' => '1.02',
15377 'Time::tm' => '1.00',
15378 'UNIVERSAL' => '1.06',
15379 'Unicode' => '5.2.0',
15380 'Unicode::Collate' => '0.52_01',
15381 'Unicode::Normalize' => '1.03',
15382 'Unicode::UCD' => '0.27',
15383 'User::grent' => '1.01',
15384 'User::pwent' => '1.00',
15385 'VMS::DCLsym' => '1.03',
15386 'VMS::Stdio' => '2.4',
15387 'Win32' => '0.39',
15388 'Win32API::File' => '0.1101',
15389 'Win32API::File::ExtUtils::Myconst2perl'=> '1',
15390 'Win32CORE' => '0.02',
15391 'XS::APItest' => '0.17',
15392 'XS::APItest::KeywordRPN'=> '0.003',
15393 'XS::Typemap' => '0.03',
15394 'XSLoader' => '0.10',
15395 'XSLoader::XSLoader' => '0.10',
15396 'attributes' => '0.12',
15397 'autodie' => '2.06_01',
15398 'autodie::exception' => '2.06_01',
15399 'autodie::exception::system'=> '2.06_01',
15400 'autodie::hints' => '2.06_01',
15401 'autouse' => '1.06',
15402 'base' => '2.15',
15403 'bigint' => '0.23',
15404 'bignum' => '0.23',
15405 'bigrat' => '0.23',
15406 'blib' => '1.04',
15407 'bytes' => '1.04',
15408 'charnames' => '1.07',
15409 'constant' => '1.20',
15410 'deprecate' => '0.01',
15411 'diagnostics' => '1.19',
15412 'encoding' => '2.6_01',
15413 'encoding::warnings' => '0.11',
15414 'feature' => '1.16',
15415 'fields' => '2.15',
15416 'filetest' => '1.02',
15417 'if' => '0.05',
15418 'inc::latest' => '0.3603',
15419 'integer' => '1.00',
15420 'less' => '0.03',
15421 'lib' => '0.62',
15422 'locale' => '1.00',
15423 'mro' => '1.02',
15424 'open' => '1.07',
15425 'ops' => '1.02',
15426 'overload' => '1.10',
15427 'overload::numbers' => undef,
15428 'overloading' => '0.01',
15429 'parent' => '0.223',
15430 're' => '0.11',
15431 'sigtrap' => '1.04',
15432 'sort' => '2.01',
15433 'strict' => '1.04',
15434 'subs' => '1.00',
15435 'threads' => '1.75',
15436 'threads::shared' => '1.32',
15437 'utf8' => '1.08',
15438 'vars' => '1.01',
15439 'version' => '0.82',
15440 'vmsish' => '1.02',
15441 'warnings' => '1.09',
15442 'warnings::register' => '1.01',
15445 5.013001 => {
15446 'AnyDBM_File' => '1.00',
15447 'App::Cpan' => '1.5701',
15448 'App::Prove' => '3.17',
15449 'App::Prove::State' => '3.17',
15450 'App::Prove::State::Result'=> '3.17',
15451 'App::Prove::State::Result::Test'=> '3.17',
15452 'Archive::Extract' => '0.38',
15453 'Archive::Tar' => '1.54',
15454 'Archive::Tar::Constant'=> '0.02',
15455 'Archive::Tar::File' => '0.02',
15456 'Attribute::Handlers' => '0.87',
15457 'AutoLoader' => '5.70',
15458 'AutoSplit' => '1.06',
15459 'B' => '1.23',
15460 'B::Concise' => '0.78',
15461 'B::Debug' => '1.12',
15462 'B::Deparse' => '0.97',
15463 'B::Lint' => '1.11_01',
15464 'B::Lint::Debug' => '0.01',
15465 'B::Showlex' => '1.02',
15466 'B::Terse' => '1.05',
15467 'B::Xref' => '1.02',
15468 'Benchmark' => '1.11',
15469 'CGI' => '3.49',
15470 'CGI::Apache' => '1.01',
15471 'CGI::Carp' => '3.45',
15472 'CGI::Cookie' => '1.29',
15473 'CGI::Fast' => '1.08',
15474 'CGI::Pretty' => '3.46',
15475 'CGI::Push' => '1.04',
15476 'CGI::Switch' => '1.01',
15477 'CGI::Util' => '3.48',
15478 'CPAN' => '1.94_56',
15479 'CPAN::Author' => '5.5',
15480 'CPAN::Bundle' => '5.5',
15481 'CPAN::CacheMgr' => '5.5',
15482 'CPAN::Complete' => '5.5',
15483 'CPAN::Debug' => '5.5001',
15484 'CPAN::DeferredCode' => '5.50',
15485 'CPAN::Distribution' => '1.9456_01',
15486 'CPAN::Distroprefs' => '6',
15487 'CPAN::Distrostatus' => '5.5',
15488 'CPAN::Exception::RecursiveDependency'=> '5.5',
15489 'CPAN::Exception::blocked_urllist'=> '1.0',
15490 'CPAN::Exception::yaml_not_installed'=> '5.5',
15491 'CPAN::FTP' => '5.5004',
15492 'CPAN::FTP::netrc' => '1.00',
15493 'CPAN::FirstTime' => '5.5301',
15494 'CPAN::HandleConfig' => '5.5001',
15495 'CPAN::Index' => '1.94',
15496 'CPAN::InfoObj' => '5.5',
15497 'CPAN::Kwalify' => '5.50',
15498 'CPAN::LWP::UserAgent' => '1.94',
15499 'CPAN::Mirrors' => '1.77',
15500 'CPAN::Module' => '5.5',
15501 'CPAN::Nox' => '5.50',
15502 'CPAN::Prompt' => '5.5',
15503 'CPAN::Queue' => '5.5',
15504 'CPAN::Shell' => '5.5001',
15505 'CPAN::Tarzip' => '5.5011',
15506 'CPAN::URL' => '5.5',
15507 'CPAN::Version' => '5.5',
15508 'CPANPLUS' => '0.90',
15509 'CPANPLUS::Backend' => undef,
15510 'CPANPLUS::Backend::RV' => undef,
15511 'CPANPLUS::Config' => undef,
15512 'CPANPLUS::Configure' => undef,
15513 'CPANPLUS::Configure::Setup'=> undef,
15514 'CPANPLUS::Dist' => undef,
15515 'CPANPLUS::Dist::Autobundle'=> undef,
15516 'CPANPLUS::Dist::Base' => undef,
15517 'CPANPLUS::Dist::Build' => '0.46',
15518 'CPANPLUS::Dist::Build::Constants'=> '0.46',
15519 'CPANPLUS::Dist::MM' => undef,
15520 'CPANPLUS::Dist::Sample'=> undef,
15521 'CPANPLUS::Error' => undef,
15522 'CPANPLUS::Internals' => '0.90',
15523 'CPANPLUS::Internals::Constants'=> undef,
15524 'CPANPLUS::Internals::Constants::Report'=> undef,
15525 'CPANPLUS::Internals::Extract'=> undef,
15526 'CPANPLUS::Internals::Fetch'=> undef,
15527 'CPANPLUS::Internals::Report'=> undef,
15528 'CPANPLUS::Internals::Search'=> undef,
15529 'CPANPLUS::Internals::Source'=> undef,
15530 'CPANPLUS::Internals::Source::Memory'=> undef,
15531 'CPANPLUS::Internals::Source::SQLite'=> undef,
15532 'CPANPLUS::Internals::Source::SQLite::Tie'=> undef,
15533 'CPANPLUS::Internals::Utils'=> undef,
15534 'CPANPLUS::Internals::Utils::Autoflush'=> undef,
15535 'CPANPLUS::Module' => undef,
15536 'CPANPLUS::Module::Author'=> undef,
15537 'CPANPLUS::Module::Author::Fake'=> undef,
15538 'CPANPLUS::Module::Checksums'=> undef,
15539 'CPANPLUS::Module::Fake'=> undef,
15540 'CPANPLUS::Module::Signature'=> undef,
15541 'CPANPLUS::Selfupdate' => undef,
15542 'CPANPLUS::Shell' => undef,
15543 'CPANPLUS::Shell::Classic'=> '0.0562',
15544 'CPANPLUS::Shell::Default'=> '0.90',
15545 'CPANPLUS::Shell::Default::Plugins::CustomSource'=> undef,
15546 'CPANPLUS::Shell::Default::Plugins::Remote'=> undef,
15547 'CPANPLUS::Shell::Default::Plugins::Source'=> undef,
15548 'Carp' => '1.16',
15549 'Carp::Heavy' => '1.16',
15550 'Class::Struct' => '0.63',
15551 'Compress::Raw::Bzip2' => '2.024',
15552 'Compress::Raw::Zlib' => '2.024',
15553 'Compress::Zlib' => '2.024',
15554 'Config' => undef,
15555 'Config::Extensions' => '0.01',
15556 'Cwd' => '3.31',
15557 'DB' => '1.02',
15558 'DBM_Filter' => '0.03',
15559 'DBM_Filter::compress' => '0.02',
15560 'DBM_Filter::encode' => '0.02',
15561 'DBM_Filter::int32' => '0.02',
15562 'DBM_Filter::null' => '0.02',
15563 'DBM_Filter::utf8' => '0.02',
15564 'DB_File' => '1.820',
15565 'Data::Dumper' => '2.126',
15566 'Devel::DProf' => '20080331.00',
15567 'Devel::DProf::dprof::V'=> undef,
15568 'Devel::InnerPackage' => '0.3',
15569 'Devel::PPPort' => '3.19',
15570 'Devel::Peek' => '1.04',
15571 'Devel::SelfStubber' => '1.03',
15572 'Digest' => '1.16',
15573 'Digest::MD5' => '2.39',
15574 'Digest::SHA' => '5.47',
15575 'Digest::base' => '1.16',
15576 'Digest::file' => '1.16',
15577 'DirHandle' => '1.03',
15578 'Dumpvalue' => '1.14',
15579 'DynaLoader' => '1.10',
15580 'Encode' => '2.39',
15581 'Encode::Alias' => '2.12',
15582 'Encode::Byte' => '2.04',
15583 'Encode::CJKConstants' => '2.02',
15584 'Encode::CN' => '2.03',
15585 'Encode::CN::HZ' => '2.05',
15586 'Encode::Config' => '2.05',
15587 'Encode::EBCDIC' => '2.02',
15588 'Encode::Encoder' => '2.01',
15589 'Encode::Encoding' => '2.05',
15590 'Encode::GSM0338' => '2.01',
15591 'Encode::Guess' => '2.03',
15592 'Encode::JP' => '2.04',
15593 'Encode::JP::H2Z' => '2.02',
15594 'Encode::JP::JIS7' => '2.04',
15595 'Encode::KR' => '2.03',
15596 'Encode::KR::2022_KR' => '2.02',
15597 'Encode::MIME::Header' => '2.11',
15598 'Encode::MIME::Header::ISO_2022_JP'=> '1.03',
15599 'Encode::MIME::Name' => '1.01',
15600 'Encode::Symbol' => '2.02',
15601 'Encode::TW' => '2.03',
15602 'Encode::Unicode' => '2.07',
15603 'Encode::Unicode::UTF7' => '2.04',
15604 'English' => '1.04',
15605 'Env' => '1.01',
15606 'Errno' => '1.12',
15607 'Exporter' => '5.64_01',
15608 'Exporter::Heavy' => '5.64_01',
15609 'ExtUtils::CBuilder' => '0.27',
15610 'ExtUtils::CBuilder::Base'=> '0.27',
15611 'ExtUtils::CBuilder::Platform::Unix'=> '0.27',
15612 'ExtUtils::CBuilder::Platform::VMS'=> '0.27',
15613 'ExtUtils::CBuilder::Platform::Windows'=> '0.27',
15614 'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.27',
15615 'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.27',
15616 'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.27',
15617 'ExtUtils::CBuilder::Platform::aix'=> '0.27',
15618 'ExtUtils::CBuilder::Platform::cygwin'=> '0.27',
15619 'ExtUtils::CBuilder::Platform::darwin'=> '0.27',
15620 'ExtUtils::CBuilder::Platform::dec_osf'=> '0.27',
15621 'ExtUtils::CBuilder::Platform::os2'=> '0.27',
15622 'ExtUtils::Command' => '1.16',
15623 'ExtUtils::Command::MM' => '6.56',
15624 'ExtUtils::Constant' => '0.22',
15625 'ExtUtils::Constant::Base'=> '0.04',
15626 'ExtUtils::Constant::ProxySubs'=> '0.06',
15627 'ExtUtils::Constant::Utils'=> '0.02',
15628 'ExtUtils::Constant::XS'=> '0.03',
15629 'ExtUtils::Embed' => '1.28',
15630 'ExtUtils::Install' => '1.55',
15631 'ExtUtils::Installed' => '1.999_001',
15632 'ExtUtils::Liblist' => '6.56',
15633 'ExtUtils::Liblist::Kid'=> '6.56',
15634 'ExtUtils::MM' => '6.56',
15635 'ExtUtils::MM_AIX' => '6.56',
15636 'ExtUtils::MM_Any' => '6.56',
15637 'ExtUtils::MM_BeOS' => '6.56',
15638 'ExtUtils::MM_Cygwin' => '6.56',
15639 'ExtUtils::MM_DOS' => '6.56',
15640 'ExtUtils::MM_Darwin' => '6.56',
15641 'ExtUtils::MM_MacOS' => '6.56',
15642 'ExtUtils::MM_NW5' => '6.56',
15643 'ExtUtils::MM_OS2' => '6.56',
15644 'ExtUtils::MM_QNX' => '6.56',
15645 'ExtUtils::MM_UWIN' => '6.56',
15646 'ExtUtils::MM_Unix' => '6.5601',
15647 'ExtUtils::MM_VMS' => '6.56',
15648 'ExtUtils::MM_VOS' => '6.56',
15649 'ExtUtils::MM_Win32' => '6.56',
15650 'ExtUtils::MM_Win95' => '6.56',
15651 'ExtUtils::MY' => '6.56',
15652 'ExtUtils::MakeMaker' => '6.5601',
15653 'ExtUtils::MakeMaker::Config'=> '6.56',
15654 'ExtUtils::Manifest' => '1.57',
15655 'ExtUtils::Miniperl' => undef,
15656 'ExtUtils::Mkbootstrap' => '6.56',
15657 'ExtUtils::Mksymlists' => '6.56',
15658 'ExtUtils::Packlist' => '1.44',
15659 'ExtUtils::ParseXS' => '2.2205',
15660 'ExtUtils::XSSymSet' => '1.1',
15661 'ExtUtils::testlib' => '6.56',
15662 'Fatal' => '2.06_01',
15663 'Fcntl' => '1.06',
15664 'File::Basename' => '2.78',
15665 'File::CheckTree' => '4.4',
15666 'File::Compare' => '1.1006',
15667 'File::Copy' => '2.18',
15668 'File::DosGlob' => '1.01',
15669 'File::Fetch' => '0.24',
15670 'File::Find' => '1.16',
15671 'File::Glob' => '1.07',
15672 'File::GlobMapper' => '1.000',
15673 'File::Path' => '2.08_01',
15674 'File::Spec' => '3.31',
15675 'File::Spec::Cygwin' => '3.30',
15676 'File::Spec::Epoc' => '3.30',
15677 'File::Spec::Functions' => '3.30',
15678 'File::Spec::Mac' => '3.30',
15679 'File::Spec::OS2' => '3.30',
15680 'File::Spec::Unix' => '3.30',
15681 'File::Spec::VMS' => '3.30',
15682 'File::Spec::Win32' => '3.30',
15683 'File::Temp' => '0.22',
15684 'File::stat' => '1.02',
15685 'FileCache' => '1.08',
15686 'FileHandle' => '2.02',
15687 'VMS::Filespec' => '1.12',
15688 'Filter::Simple' => '0.84',
15689 'Filter::Util::Call' => '1.08',
15690 'FindBin' => '1.50',
15691 'GDBM_File' => '1.10',
15692 'Getopt::Long' => '2.38',
15693 'Getopt::Std' => '1.06',
15694 'Hash::Util' => '0.07',
15695 'Hash::Util::FieldHash' => '1.04',
15696 'I18N::Collate' => '1.01',
15697 'I18N::LangTags' => '0.35',
15698 'I18N::LangTags::Detect'=> '1.04',
15699 'I18N::LangTags::List' => '0.35',
15700 'I18N::Langinfo' => '0.03',
15701 'IO' => '1.25_02',
15702 'IO::Compress::Adapter::Bzip2'=> '2.024',
15703 'IO::Compress::Adapter::Deflate'=> '2.024',
15704 'IO::Compress::Adapter::Identity'=> '2.024',
15705 'IO::Compress::Base' => '2.024',
15706 'IO::Compress::Base::Common'=> '2.024',
15707 'IO::Compress::Bzip2' => '2.024',
15708 'IO::Compress::Deflate' => '2.024',
15709 'IO::Compress::Gzip' => '2.024',
15710 'IO::Compress::Gzip::Constants'=> '2.024',
15711 'IO::Compress::RawDeflate'=> '2.024',
15712 'IO::Compress::Zip' => '2.024',
15713 'IO::Compress::Zip::Constants'=> '2.024',
15714 'IO::Compress::Zlib::Constants'=> '2.024',
15715 'IO::Compress::Zlib::Extra'=> '2.024',
15716 'IO::Dir' => '1.07',
15717 'IO::File' => '1.14',
15718 'IO::Handle' => '1.28',
15719 'IO::Pipe' => '1.13',
15720 'IO::Poll' => '0.07',
15721 'IO::Seekable' => '1.10',
15722 'IO::Select' => '1.17',
15723 'IO::Socket' => '1.31',
15724 'IO::Socket::INET' => '1.31',
15725 'IO::Socket::UNIX' => '1.23',
15726 'IO::Uncompress::Adapter::Bunzip2'=> '2.024',
15727 'IO::Uncompress::Adapter::Identity'=> '2.024',
15728 'IO::Uncompress::Adapter::Inflate'=> '2.024',
15729 'IO::Uncompress::AnyInflate'=> '2.024',
15730 'IO::Uncompress::AnyUncompress'=> '2.024',
15731 'IO::Uncompress::Base' => '2.024',
15732 'IO::Uncompress::Bunzip2'=> '2.024',
15733 'IO::Uncompress::Gunzip'=> '2.024',
15734 'IO::Uncompress::Inflate'=> '2.024',
15735 'IO::Uncompress::RawInflate'=> '2.024',
15736 'IO::Uncompress::Unzip' => '2.024',
15737 'IO::Zlib' => '1.10',
15738 'IPC::Cmd' => '0.58',
15739 'IPC::Msg' => '2.01',
15740 'IPC::Open2' => '1.03',
15741 'IPC::Open3' => '1.06',
15742 'IPC::Semaphore' => '2.01',
15743 'IPC::SharedMem' => '2.01',
15744 'IPC::SysV' => '2.01',
15745 'List::Util' => '1.23',
15746 'List::Util::PP' => '1.23',
15747 'List::Util::XS' => '1.23',
15748 'Locale::Codes' => '3.12',
15749 'Locale::Codes::Country'=> '3.12',
15750 'Locale::Codes::Currency'=> '3.12',
15751 'Locale::Codes::Language'=> '3.12',
15752 'Locale::Codes::Script' => '3.12',
15753 'Locale::Constants' => '3.12',
15754 'Locale::Country' => '3.12',
15755 'Locale::Currency' => '3.12',
15756 'Locale::Language' => '3.12',
15757 'Locale::Maketext' => '1.14',
15758 'Locale::Maketext::Guts'=> '1.13',
15759 'Locale::Maketext::GutsLoader'=> '1.13',
15760 'Locale::Maketext::Simple'=> '0.21',
15761 'Locale::Script' => '3.12',
15762 'Log::Message' => '0.02',
15763 'Log::Message::Config' => '0.01',
15764 'Log::Message::Handlers'=> undef,
15765 'Log::Message::Item' => undef,
15766 'Log::Message::Simple' => '0.06',
15767 'MIME::Base64' => '3.09',
15768 'MIME::QuotedPrint' => '3.09',
15769 'Math::BigFloat' => '1.60',
15770 'Math::BigFloat::Trace' => '0.01',
15771 'Math::BigInt' => '1.89_01',
15772 'Math::BigInt::Calc' => '0.52',
15773 'Math::BigInt::CalcEmu' => '0.05',
15774 'Math::BigInt::FastCalc'=> '0.19',
15775 'Math::BigInt::Trace' => '0.01',
15776 'Math::BigRat' => '0.24',
15777 'Math::Complex' => '1.56',
15778 'Math::Trig' => '1.2',
15779 'Memoize' => '1.01_03',
15780 'Memoize::AnyDBM_File' => '0.65',
15781 'Memoize::Expire' => '1.00',
15782 'Memoize::ExpireFile' => '1.01',
15783 'Memoize::ExpireTest' => '0.65',
15784 'Memoize::NDBM_File' => '0.65',
15785 'Memoize::SDBM_File' => '0.65',
15786 'Memoize::Storable' => '0.65',
15787 'Module::Build' => '0.3603',
15788 'Module::Build::Base' => '0.3603',
15789 'Module::Build::Compat' => '0.3603',
15790 'Module::Build::Config' => '0.3603',
15791 'Module::Build::ConfigData'=> undef,
15792 'Module::Build::Cookbook'=> '0.3603',
15793 'Module::Build::Dumper' => '0.3603',
15794 'Module::Build::ModuleInfo'=> '0.3603',
15795 'Module::Build::Notes' => '0.3603',
15796 'Module::Build::PPMMaker'=> '0.3603',
15797 'Module::Build::Platform::Amiga'=> '0.3603',
15798 'Module::Build::Platform::Default'=> '0.3603',
15799 'Module::Build::Platform::EBCDIC'=> '0.3603',
15800 'Module::Build::Platform::MPEiX'=> '0.3603',
15801 'Module::Build::Platform::MacOS'=> '0.3603',
15802 'Module::Build::Platform::RiscOS'=> '0.3603',
15803 'Module::Build::Platform::Unix'=> '0.3603',
15804 'Module::Build::Platform::VMS'=> '0.3603',
15805 'Module::Build::Platform::VOS'=> '0.3603',
15806 'Module::Build::Platform::Windows'=> '0.3603',
15807 'Module::Build::Platform::aix'=> '0.3603',
15808 'Module::Build::Platform::cygwin'=> '0.360301',
15809 'Module::Build::Platform::darwin'=> '0.3603',
15810 'Module::Build::Platform::os2'=> '0.3603',
15811 'Module::Build::PodParser'=> '0.3603',
15812 'Module::Build::Version'=> '0.77',
15813 'Module::Build::YAML' => '1.40',
15814 'Module::CoreList' => '2.34',
15815 'Module::Load' => '0.16',
15816 'Module::Load::Conditional'=> '0.38',
15817 'Module::Loaded' => '0.06',
15818 'Module::Pluggable' => '3.9',
15819 'Module::Pluggable::Object'=> '3.9',
15820 'Moped::Msg' => '0.01',
15821 'NDBM_File' => '1.08',
15822 'NEXT' => '0.64',
15823 'Net::Cmd' => '2.29',
15824 'Net::Config' => '1.11',
15825 'Net::Domain' => '2.20',
15826 'Net::FTP' => '2.77',
15827 'Net::FTP::A' => '1.18',
15828 'Net::FTP::E' => '0.01',
15829 'Net::FTP::I' => '1.12',
15830 'Net::FTP::L' => '0.01',
15831 'Net::FTP::dataconn' => '0.11',
15832 'Net::NNTP' => '2.24',
15833 'Net::Netrc' => '2.12',
15834 'Net::POP3' => '2.29',
15835 'Net::Ping' => '2.36',
15836 'Net::SMTP' => '2.31',
15837 'Net::Time' => '2.10',
15838 'Net::hostent' => '1.01',
15839 'Net::netent' => '1.00',
15840 'Net::protoent' => '1.00',
15841 'Net::servent' => '1.01',
15842 'O' => '1.01',
15843 'ODBM_File' => '1.07',
15844 'Object::Accessor' => '0.36',
15845 'Opcode' => '1.15',
15846 'POSIX' => '1.19',
15847 'Package::Constants' => '0.02',
15848 'Params::Check' => '0.26',
15849 'Parse::CPAN::Meta' => '1.40',
15850 'PerlIO' => '1.06',
15851 'PerlIO::encoding' => '0.12',
15852 'PerlIO::scalar' => '0.08',
15853 'PerlIO::via' => '0.09',
15854 'PerlIO::via::QuotedPrint'=> '0.06',
15855 'Pod::Checker' => '1.45',
15856 'Pod::Escapes' => '1.04',
15857 'Pod::Find' => '1.35',
15858 'Pod::Functions' => '1.04',
15859 'Pod::Html' => '1.09',
15860 'Pod::InputObjects' => '1.31',
15861 'Pod::LaTeX' => '0.58',
15862 'Pod::Man' => '2.23',
15863 'Pod::ParseLink' => '1.10',
15864 'Pod::ParseUtils' => '1.36',
15865 'Pod::Parser' => '1.37',
15866 'Pod::Perldoc' => '3.15_02',
15867 'Pod::Perldoc::BaseTo' => undef,
15868 'Pod::Perldoc::GetOptsOO'=> undef,
15869 'Pod::Perldoc::ToChecker'=> undef,
15870 'Pod::Perldoc::ToMan' => undef,
15871 'Pod::Perldoc::ToNroff' => undef,
15872 'Pod::Perldoc::ToPod' => undef,
15873 'Pod::Perldoc::ToRtf' => undef,
15874 'Pod::Perldoc::ToText' => undef,
15875 'Pod::Perldoc::ToTk' => undef,
15876 'Pod::Perldoc::ToXml' => undef,
15877 'Pod::PlainText' => '2.04',
15878 'Pod::Select' => '1.36',
15879 'Pod::Simple' => '3.14',
15880 'Pod::Simple::BlackBox' => '3.14',
15881 'Pod::Simple::Checker' => '3.14',
15882 'Pod::Simple::Debug' => '3.14',
15883 'Pod::Simple::DumpAsText'=> '3.14',
15884 'Pod::Simple::DumpAsXML'=> '3.14',
15885 'Pod::Simple::HTML' => '3.14',
15886 'Pod::Simple::HTMLBatch'=> '3.14',
15887 'Pod::Simple::HTMLLegacy'=> '5.01',
15888 'Pod::Simple::LinkSection'=> '3.14',
15889 'Pod::Simple::Methody' => '3.14',
15890 'Pod::Simple::Progress' => '3.14',
15891 'Pod::Simple::PullParser'=> '3.14',
15892 'Pod::Simple::PullParserEndToken'=> '3.14',
15893 'Pod::Simple::PullParserStartToken'=> '3.14',
15894 'Pod::Simple::PullParserTextToken'=> '3.14',
15895 'Pod::Simple::PullParserToken'=> '3.14',
15896 'Pod::Simple::RTF' => '3.14',
15897 'Pod::Simple::Search' => '3.14',
15898 'Pod::Simple::SimpleTree'=> '3.14',
15899 'Pod::Simple::Text' => '3.14',
15900 'Pod::Simple::TextContent'=> '3.14',
15901 'Pod::Simple::TiedOutFH'=> '3.14',
15902 'Pod::Simple::Transcode'=> '3.14',
15903 'Pod::Simple::TranscodeDumb'=> '3.14',
15904 'Pod::Simple::TranscodeSmart'=> '3.14',
15905 'Pod::Simple::XHTML' => '3.14',
15906 'Pod::Simple::XMLOutStream'=> '3.14',
15907 'Pod::Text' => '3.14',
15908 'Pod::Text::Color' => '2.06',
15909 'Pod::Text::Overstrike' => '2.04',
15910 'Pod::Text::Termcap' => '2.06',
15911 'Pod::Usage' => '1.36',
15912 'SDBM_File' => '1.06',
15913 'Safe' => '2.27',
15914 'Scalar::Util' => '1.23',
15915 'Scalar::Util::PP' => '1.23',
15916 'Search::Dict' => '1.02',
15917 'SelectSaver' => '1.02',
15918 'SelfLoader' => '1.17',
15919 'Shell' => '0.72_01',
15920 'Socket' => '1.88',
15921 'Storable' => '2.22',
15922 'Symbol' => '1.07',
15923 'Sys::Hostname' => '1.11',
15924 'Sys::Syslog' => '0.27',
15925 'Sys::Syslog::win32::Win32'=> undef,
15926 'TAP::Base' => '3.17',
15927 'TAP::Formatter::Base' => '3.17',
15928 'TAP::Formatter::Color' => '3.17',
15929 'TAP::Formatter::Console'=> '3.17',
15930 'TAP::Formatter::Console::ParallelSession'=> '3.17',
15931 'TAP::Formatter::Console::Session'=> '3.17',
15932 'TAP::Formatter::File' => '3.17',
15933 'TAP::Formatter::File::Session'=> '3.17',
15934 'TAP::Formatter::Session'=> '3.17',
15935 'TAP::Harness' => '3.17',
15936 'TAP::Object' => '3.17',
15937 'TAP::Parser' => '3.17',
15938 'TAP::Parser::Aggregator'=> '3.17',
15939 'TAP::Parser::Grammar' => '3.17',
15940 'TAP::Parser::Iterator' => '3.17',
15941 'TAP::Parser::Iterator::Array'=> '3.17',
15942 'TAP::Parser::Iterator::Process'=> '3.17',
15943 'TAP::Parser::Iterator::Stream'=> '3.17',
15944 'TAP::Parser::IteratorFactory'=> '3.17',
15945 'TAP::Parser::Multiplexer'=> '3.17',
15946 'TAP::Parser::Result' => '3.17',
15947 'TAP::Parser::Result::Bailout'=> '3.17',
15948 'TAP::Parser::Result::Comment'=> '3.17',
15949 'TAP::Parser::Result::Plan'=> '3.17',
15950 'TAP::Parser::Result::Pragma'=> '3.17',
15951 'TAP::Parser::Result::Test'=> '3.17',
15952 'TAP::Parser::Result::Unknown'=> '3.17',
15953 'TAP::Parser::Result::Version'=> '3.17',
15954 'TAP::Parser::Result::YAML'=> '3.17',
15955 'TAP::Parser::ResultFactory'=> '3.17',
15956 'TAP::Parser::Scheduler'=> '3.17',
15957 'TAP::Parser::Scheduler::Job'=> '3.17',
15958 'TAP::Parser::Scheduler::Spinner'=> '3.17',
15959 'TAP::Parser::Source' => '3.17',
15960 'TAP::Parser::Source::Perl'=> '3.17',
15961 'TAP::Parser::Utils' => '3.17',
15962 'TAP::Parser::YAMLish::Reader'=> '3.17',
15963 'TAP::Parser::YAMLish::Writer'=> '3.17',
15964 'Term::ANSIColor' => '2.02',
15965 'Term::Cap' => '1.12',
15966 'Term::Complete' => '1.402',
15967 'Term::ReadLine' => '1.06',
15968 'Term::UI' => '0.20',
15969 'Term::UI::History' => undef,
15970 'Test' => '1.25_02',
15971 'Test::Builder' => '0.94',
15972 'Test::Builder::Module' => '0.94',
15973 'Test::Builder::Tester' => '1.18',
15974 'Test::Builder::Tester::Color'=> '1.18',
15975 'Test::Harness' => '3.17',
15976 'Test::More' => '0.94',
15977 'Test::Simple' => '0.94',
15978 'Text::Abbrev' => '1.01',
15979 'Text::Balanced' => '2.02',
15980 'Text::ParseWords' => '3.27',
15981 'Text::Soundex' => '3.03_01',
15982 'Text::Tabs' => '2009.0305',
15983 'Text::Wrap' => '2009.0305',
15984 'Thread' => '3.02',
15985 'Thread::Queue' => '2.11',
15986 'Thread::Semaphore' => '2.09',
15987 'Tie::Array' => '1.03',
15988 'Tie::File' => '0.97_02',
15989 'Tie::Handle' => '4.2',
15990 'Tie::Hash' => '1.03',
15991 'Tie::Hash::NamedCapture'=> '0.06',
15992 'Tie::Memoize' => '1.1',
15993 'Tie::RefHash' => '1.38',
15994 'Tie::Scalar' => '1.02',
15995 'Tie::StdHandle' => '4.2',
15996 'Tie::SubstrHash' => '1.00',
15997 'Time::HiRes' => '1.9719',
15998 'Time::Local' => '1.1901_01',
15999 'Time::Piece' => '1.15_01',
16000 'Time::Piece::Seconds' => undef,
16001 'Time::Seconds' => undef,
16002 'Time::gmtime' => '1.03',
16003 'Time::localtime' => '1.02',
16004 'Time::tm' => '1.00',
16005 'UNIVERSAL' => '1.06',
16006 'Unicode' => '5.2.0',
16007 'Unicode::Collate' => '0.52_01',
16008 'Unicode::Normalize' => '1.03',
16009 'Unicode::UCD' => '0.28',
16010 'User::grent' => '1.01',
16011 'User::pwent' => '1.00',
16012 'VMS::DCLsym' => '1.03',
16013 'VMS::Stdio' => '2.4',
16014 'Win32' => '0.39',
16015 'Win32API::File' => '0.1101',
16016 'Win32API::File::ExtUtils::Myconst2perl'=> '1',
16017 'Win32CORE' => '0.02',
16018 'XS::APItest' => '0.19',
16019 'XS::APItest::KeywordRPN'=> '0.004',
16020 'XS::Typemap' => '0.03',
16021 'XSLoader' => '0.10',
16022 'XSLoader::XSLoader' => '0.10',
16023 'attributes' => '0.12',
16024 'autodie' => '2.06_01',
16025 'autodie::exception' => '2.06_01',
16026 'autodie::exception::system'=> '2.06_01',
16027 'autodie::hints' => '2.06_01',
16028 'autouse' => '1.06',
16029 'base' => '2.15',
16030 'bigint' => '0.23',
16031 'bignum' => '0.23',
16032 'bigrat' => '0.23',
16033 'blib' => '1.04',
16034 'bytes' => '1.04',
16035 'charnames' => '1.08',
16036 'constant' => '1.20',
16037 'deprecate' => '0.01',
16038 'diagnostics' => '1.19',
16039 'encoding' => '2.6_01',
16040 'encoding::warnings' => '0.11',
16041 'feature' => '1.17',
16042 'fields' => '2.15',
16043 'filetest' => '1.02',
16044 'if' => '0.05',
16045 'inc::latest' => '0.3603',
16046 'integer' => '1.00',
16047 'less' => '0.03',
16048 'lib' => '0.62',
16049 'locale' => '1.00',
16050 'mro' => '1.02',
16051 'open' => '1.07',
16052 'ops' => '1.02',
16053 'overload' => '1.10',
16054 'overload::numbers' => undef,
16055 'overloading' => '0.01',
16056 'parent' => '0.223',
16057 're' => '0.11',
16058 'sigtrap' => '1.04',
16059 'sort' => '2.01',
16060 'strict' => '1.04',
16061 'subs' => '1.00',
16062 'threads' => '1.77_01',
16063 'threads::shared' => '1.33',
16064 'utf8' => '1.08',
16065 'vars' => '1.01',
16066 'version' => '0.82',
16067 'vmsish' => '1.02',
16068 'warnings' => '1.09',
16069 'warnings::register' => '1.01',
16071 5.013002 => {
16072 'AnyDBM_File' => '1.00',
16073 'App::Cpan' => '1.5701',
16074 'App::Prove' => '3.17',
16075 'App::Prove::State' => '3.17',
16076 'App::Prove::State::Result'=> '3.17',
16077 'App::Prove::State::Result::Test'=> '3.17',
16078 'Archive::Extract' => '0.38',
16079 'Archive::Tar' => '1.54',
16080 'Archive::Tar::Constant'=> '0.02',
16081 'Archive::Tar::File' => '0.02',
16082 'Attribute::Handlers' => '0.87',
16083 'AutoLoader' => '5.70',
16084 'AutoSplit' => '1.06',
16085 'B' => '1.23',
16086 'B::Concise' => '0.79',
16087 'B::Debug' => '1.12',
16088 'B::Deparse' => '0.98',
16089 'B::Lint' => '1.11_01',
16090 'B::Lint::Debug' => '0.01',
16091 'B::Showlex' => '1.02',
16092 'B::Terse' => '1.05',
16093 'B::Xref' => '1.02',
16094 'Benchmark' => '1.11',
16095 'CGI' => '3.49',
16096 'CGI::Apache' => '1.01',
16097 'CGI::Carp' => '3.45',
16098 'CGI::Cookie' => '1.29',
16099 'CGI::Fast' => '1.08',
16100 'CGI::Pretty' => '3.46',
16101 'CGI::Push' => '1.04',
16102 'CGI::Switch' => '1.01',
16103 'CGI::Util' => '3.48',
16104 'CPAN' => '1.94_57',
16105 'CPAN::Author' => '5.5',
16106 'CPAN::Bundle' => '5.5',
16107 'CPAN::CacheMgr' => '5.5',
16108 'CPAN::Complete' => '5.5',
16109 'CPAN::Debug' => '5.5001',
16110 'CPAN::DeferredCode' => '5.50',
16111 'CPAN::Distribution' => '1.9600',
16112 'CPAN::Distroprefs' => '6',
16113 'CPAN::Distrostatus' => '5.5',
16114 'CPAN::Exception::RecursiveDependency'=> '5.5',
16115 'CPAN::Exception::blocked_urllist'=> '1.0',
16116 'CPAN::Exception::yaml_not_installed'=> '5.5',
16117 'CPAN::FTP' => '5.5004',
16118 'CPAN::FTP::netrc' => '1.00',
16119 'CPAN::FirstTime' => '5.5301',
16120 'CPAN::HandleConfig' => '5.5001',
16121 'CPAN::Index' => '1.94',
16122 'CPAN::InfoObj' => '5.5',
16123 'CPAN::Kwalify' => '5.50',
16124 'CPAN::LWP::UserAgent' => '1.94',
16125 'CPAN::Mirrors' => '1.77',
16126 'CPAN::Module' => '5.5',
16127 'CPAN::Nox' => '5.50',
16128 'CPAN::Prompt' => '5.5',
16129 'CPAN::Queue' => '5.5',
16130 'CPAN::Shell' => '5.5001',
16131 'CPAN::Tarzip' => '5.5011',
16132 'CPAN::URL' => '5.5',
16133 'CPAN::Version' => '5.5',
16134 'CPANPLUS' => '0.90',
16135 'CPANPLUS::Backend' => undef,
16136 'CPANPLUS::Backend::RV' => undef,
16137 'CPANPLUS::Config' => undef,
16138 'CPANPLUS::Configure' => undef,
16139 'CPANPLUS::Configure::Setup'=> undef,
16140 'CPANPLUS::Dist' => undef,
16141 'CPANPLUS::Dist::Autobundle'=> undef,
16142 'CPANPLUS::Dist::Base' => undef,
16143 'CPANPLUS::Dist::Build' => '0.46',
16144 'CPANPLUS::Dist::Build::Constants'=> '0.46',
16145 'CPANPLUS::Dist::MM' => undef,
16146 'CPANPLUS::Dist::Sample'=> undef,
16147 'CPANPLUS::Error' => undef,
16148 'CPANPLUS::Internals' => '0.90',
16149 'CPANPLUS::Internals::Constants'=> undef,
16150 'CPANPLUS::Internals::Constants::Report'=> undef,
16151 'CPANPLUS::Internals::Extract'=> undef,
16152 'CPANPLUS::Internals::Fetch'=> undef,
16153 'CPANPLUS::Internals::Report'=> undef,
16154 'CPANPLUS::Internals::Search'=> undef,
16155 'CPANPLUS::Internals::Source'=> undef,
16156 'CPANPLUS::Internals::Source::Memory'=> undef,
16157 'CPANPLUS::Internals::Source::SQLite'=> undef,
16158 'CPANPLUS::Internals::Source::SQLite::Tie'=> undef,
16159 'CPANPLUS::Internals::Utils'=> undef,
16160 'CPANPLUS::Internals::Utils::Autoflush'=> undef,
16161 'CPANPLUS::Module' => undef,
16162 'CPANPLUS::Module::Author'=> undef,
16163 'CPANPLUS::Module::Author::Fake'=> undef,
16164 'CPANPLUS::Module::Checksums'=> undef,
16165 'CPANPLUS::Module::Fake'=> undef,
16166 'CPANPLUS::Module::Signature'=> undef,
16167 'CPANPLUS::Selfupdate' => undef,
16168 'CPANPLUS::Shell' => undef,
16169 'CPANPLUS::Shell::Classic'=> '0.0562',
16170 'CPANPLUS::Shell::Default'=> '0.90',
16171 'CPANPLUS::Shell::Default::Plugins::CustomSource'=> undef,
16172 'CPANPLUS::Shell::Default::Plugins::Remote'=> undef,
16173 'CPANPLUS::Shell::Default::Plugins::Source'=> undef,
16174 'Carp' => '1.16',
16175 'Carp::Heavy' => '1.16',
16176 'Class::Struct' => '0.63',
16177 'Compress::Raw::Bzip2' => '2.024',
16178 'Compress::Raw::Zlib' => '2.024',
16179 'Compress::Zlib' => '2.024',
16180 'Config' => undef,
16181 'Config::Extensions' => '0.01',
16182 'Cwd' => '3.31',
16183 'DB' => '1.02',
16184 'DBM_Filter' => '0.03',
16185 'DBM_Filter::compress' => '0.02',
16186 'DBM_Filter::encode' => '0.02',
16187 'DBM_Filter::int32' => '0.02',
16188 'DBM_Filter::null' => '0.02',
16189 'DBM_Filter::utf8' => '0.02',
16190 'DB_File' => '1.820',
16191 'Data::Dumper' => '2.126',
16192 'Devel::DProf' => '20080331.00',
16193 'Devel::DProf::dprof::V'=> undef,
16194 'Devel::InnerPackage' => '0.3',
16195 'Devel::PPPort' => '3.19',
16196 'Devel::Peek' => '1.04',
16197 'Devel::SelfStubber' => '1.03',
16198 'Digest' => '1.16',
16199 'Digest::MD5' => '2.39',
16200 'Digest::SHA' => '5.47',
16201 'Digest::base' => '1.16',
16202 'Digest::file' => '1.16',
16203 'DirHandle' => '1.03',
16204 'Dumpvalue' => '1.14',
16205 'DynaLoader' => '1.10',
16206 'Encode' => '2.39',
16207 'Encode::Alias' => '2.12',
16208 'Encode::Byte' => '2.04',
16209 'Encode::CJKConstants' => '2.02',
16210 'Encode::CN' => '2.03',
16211 'Encode::CN::HZ' => '2.05',
16212 'Encode::Config' => '2.05',
16213 'Encode::EBCDIC' => '2.02',
16214 'Encode::Encoder' => '2.01',
16215 'Encode::Encoding' => '2.05',
16216 'Encode::GSM0338' => '2.01',
16217 'Encode::Guess' => '2.03',
16218 'Encode::JP' => '2.04',
16219 'Encode::JP::H2Z' => '2.02',
16220 'Encode::JP::JIS7' => '2.04',
16221 'Encode::KR' => '2.03',
16222 'Encode::KR::2022_KR' => '2.02',
16223 'Encode::MIME::Header' => '2.11',
16224 'Encode::MIME::Header::ISO_2022_JP'=> '1.03',
16225 'Encode::MIME::Name' => '1.01',
16226 'Encode::Symbol' => '2.02',
16227 'Encode::TW' => '2.03',
16228 'Encode::Unicode' => '2.07',
16229 'Encode::Unicode::UTF7' => '2.04',
16230 'English' => '1.04',
16231 'Env' => '1.01',
16232 'Errno' => '1.12',
16233 'Exporter' => '5.64_02',
16234 'Exporter::Heavy' => '5.64_02',
16235 'ExtUtils::CBuilder' => '0.27',
16236 'ExtUtils::CBuilder::Base'=> '0.27',
16237 'ExtUtils::CBuilder::Platform::Unix'=> '0.27',
16238 'ExtUtils::CBuilder::Platform::VMS'=> '0.27',
16239 'ExtUtils::CBuilder::Platform::Windows'=> '0.27',
16240 'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.27',
16241 'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.27',
16242 'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.27',
16243 'ExtUtils::CBuilder::Platform::aix'=> '0.27',
16244 'ExtUtils::CBuilder::Platform::cygwin'=> '0.27',
16245 'ExtUtils::CBuilder::Platform::darwin'=> '0.27',
16246 'ExtUtils::CBuilder::Platform::dec_osf'=> '0.27',
16247 'ExtUtils::CBuilder::Platform::os2'=> '0.27',
16248 'ExtUtils::Command' => '1.16',
16249 'ExtUtils::Command::MM' => '6.56',
16250 'ExtUtils::Constant' => '0.22',
16251 'ExtUtils::Constant::Base'=> '0.04',
16252 'ExtUtils::Constant::ProxySubs'=> '0.06',
16253 'ExtUtils::Constant::Utils'=> '0.02',
16254 'ExtUtils::Constant::XS'=> '0.03',
16255 'ExtUtils::Embed' => '1.28',
16256 'ExtUtils::Install' => '1.55',
16257 'ExtUtils::Installed' => '1.999_001',
16258 'ExtUtils::Liblist' => '6.56',
16259 'ExtUtils::Liblist::Kid'=> '6.56',
16260 'ExtUtils::MM' => '6.56',
16261 'ExtUtils::MM_AIX' => '6.56',
16262 'ExtUtils::MM_Any' => '6.56',
16263 'ExtUtils::MM_BeOS' => '6.56',
16264 'ExtUtils::MM_Cygwin' => '6.56',
16265 'ExtUtils::MM_DOS' => '6.56',
16266 'ExtUtils::MM_Darwin' => '6.56',
16267 'ExtUtils::MM_MacOS' => '6.56',
16268 'ExtUtils::MM_NW5' => '6.56',
16269 'ExtUtils::MM_OS2' => '6.56',
16270 'ExtUtils::MM_QNX' => '6.56',
16271 'ExtUtils::MM_UWIN' => '6.56',
16272 'ExtUtils::MM_Unix' => '6.5601',
16273 'ExtUtils::MM_VMS' => '6.56',
16274 'ExtUtils::MM_VOS' => '6.56',
16275 'ExtUtils::MM_Win32' => '6.56',
16276 'ExtUtils::MM_Win95' => '6.56',
16277 'ExtUtils::MY' => '6.56',
16278 'ExtUtils::MakeMaker' => '6.5601',
16279 'ExtUtils::MakeMaker::Config'=> '6.56',
16280 'ExtUtils::Manifest' => '1.57',
16281 'ExtUtils::Miniperl' => undef,
16282 'ExtUtils::Mkbootstrap' => '6.56',
16283 'ExtUtils::Mksymlists' => '6.56',
16284 'ExtUtils::Packlist' => '1.44',
16285 'ExtUtils::ParseXS' => '2.2205',
16286 'ExtUtils::XSSymSet' => '1.1',
16287 'ExtUtils::testlib' => '6.56',
16288 'Fatal' => '2.06_01',
16289 'Fcntl' => '1.06',
16290 'File::Basename' => '2.78',
16291 'File::CheckTree' => '4.4',
16292 'File::Compare' => '1.1006',
16293 'File::Copy' => '2.19',
16294 'File::DosGlob' => '1.01',
16295 'File::Fetch' => '0.24',
16296 'File::Find' => '1.16',
16297 'File::Glob' => '1.07',
16298 'File::GlobMapper' => '1.000',
16299 'File::Path' => '2.08_01',
16300 'File::Spec' => '3.31',
16301 'File::Spec::Cygwin' => '3.30',
16302 'File::Spec::Epoc' => '3.30',
16303 'File::Spec::Functions' => '3.30',
16304 'File::Spec::Mac' => '3.30',
16305 'File::Spec::OS2' => '3.30',
16306 'File::Spec::Unix' => '3.30',
16307 'File::Spec::VMS' => '3.30',
16308 'File::Spec::Win32' => '3.30',
16309 'File::Temp' => '0.22',
16310 'File::stat' => '1.02',
16311 'FileCache' => '1.08',
16312 'FileHandle' => '2.02',
16313 'VMS::Filespec' => '1.12',
16314 'Filter::Simple' => '0.84',
16315 'Filter::Util::Call' => '1.08',
16316 'FindBin' => '1.50',
16317 'GDBM_File' => '1.10',
16318 'Getopt::Long' => '2.38',
16319 'Getopt::Std' => '1.06',
16320 'Hash::Util' => '0.08',
16321 'Hash::Util::FieldHash' => '1.04',
16322 'I18N::Collate' => '1.01',
16323 'I18N::LangTags' => '0.35',
16324 'I18N::LangTags::Detect'=> '1.04',
16325 'I18N::LangTags::List' => '0.35',
16326 'I18N::Langinfo' => '0.03',
16327 'IO' => '1.25_02',
16328 'IO::Compress::Adapter::Bzip2'=> '2.024',
16329 'IO::Compress::Adapter::Deflate'=> '2.024',
16330 'IO::Compress::Adapter::Identity'=> '2.024',
16331 'IO::Compress::Base' => '2.024',
16332 'IO::Compress::Base::Common'=> '2.024',
16333 'IO::Compress::Bzip2' => '2.024',
16334 'IO::Compress::Deflate' => '2.024',
16335 'IO::Compress::Gzip' => '2.024',
16336 'IO::Compress::Gzip::Constants'=> '2.024',
16337 'IO::Compress::RawDeflate'=> '2.024',
16338 'IO::Compress::Zip' => '2.024',
16339 'IO::Compress::Zip::Constants'=> '2.024',
16340 'IO::Compress::Zlib::Constants'=> '2.024',
16341 'IO::Compress::Zlib::Extra'=> '2.024',
16342 'IO::Dir' => '1.07',
16343 'IO::File' => '1.14',
16344 'IO::Handle' => '1.28',
16345 'IO::Pipe' => '1.13',
16346 'IO::Poll' => '0.07',
16347 'IO::Seekable' => '1.10',
16348 'IO::Select' => '1.17',
16349 'IO::Socket' => '1.32',
16350 'IO::Socket::INET' => '1.31',
16351 'IO::Socket::UNIX' => '1.23',
16352 'IO::Uncompress::Adapter::Bunzip2'=> '2.024',
16353 'IO::Uncompress::Adapter::Identity'=> '2.024',
16354 'IO::Uncompress::Adapter::Inflate'=> '2.024',
16355 'IO::Uncompress::AnyInflate'=> '2.024',
16356 'IO::Uncompress::AnyUncompress'=> '2.024',
16357 'IO::Uncompress::Base' => '2.024',
16358 'IO::Uncompress::Bunzip2'=> '2.024',
16359 'IO::Uncompress::Gunzip'=> '2.024',
16360 'IO::Uncompress::Inflate'=> '2.024',
16361 'IO::Uncompress::RawInflate'=> '2.024',
16362 'IO::Uncompress::Unzip' => '2.024',
16363 'IO::Zlib' => '1.10',
16364 'IPC::Cmd' => '0.58',
16365 'IPC::Msg' => '2.01',
16366 'IPC::Open2' => '1.03',
16367 'IPC::Open3' => '1.06',
16368 'IPC::Semaphore' => '2.01',
16369 'IPC::SharedMem' => '2.01',
16370 'IPC::SysV' => '2.01',
16371 'List::Util' => '1.23',
16372 'List::Util::PP' => '1.23',
16373 'List::Util::XS' => '1.23',
16374 'Locale::Codes' => '3.13',
16375 'Locale::Codes::Country'=> '3.13',
16376 'Locale::Codes::Currency'=> '3.13',
16377 'Locale::Codes::Language'=> '3.13',
16378 'Locale::Codes::Script' => '3.13',
16379 'Locale::Constants' => '3.13',
16380 'Locale::Country' => '3.13',
16381 'Locale::Currency' => '3.13',
16382 'Locale::Language' => '3.13',
16383 'Locale::Maketext' => '1.14',
16384 'Locale::Maketext::Guts'=> '1.13',
16385 'Locale::Maketext::GutsLoader'=> '1.13',
16386 'Locale::Maketext::Simple'=> '0.21',
16387 'Locale::Script' => '3.13',
16388 'Log::Message' => '0.02',
16389 'Log::Message::Config' => '0.01',
16390 'Log::Message::Handlers'=> undef,
16391 'Log::Message::Item' => undef,
16392 'Log::Message::Simple' => '0.06',
16393 'MIME::Base64' => '3.09',
16394 'MIME::QuotedPrint' => '3.09',
16395 'Math::BigFloat' => '1.60',
16396 'Math::BigFloat::Trace' => '0.01',
16397 'Math::BigInt' => '1.89_01',
16398 'Math::BigInt::Calc' => '0.52',
16399 'Math::BigInt::CalcEmu' => '0.05',
16400 'Math::BigInt::FastCalc'=> '0.19',
16401 'Math::BigInt::Trace' => '0.01',
16402 'Math::BigRat' => '0.24',
16403 'Math::Complex' => '1.56',
16404 'Math::Trig' => '1.2',
16405 'Memoize' => '1.01_03',
16406 'Memoize::AnyDBM_File' => '0.65',
16407 'Memoize::Expire' => '1.00',
16408 'Memoize::ExpireFile' => '1.01',
16409 'Memoize::ExpireTest' => '0.65',
16410 'Memoize::NDBM_File' => '0.65',
16411 'Memoize::SDBM_File' => '0.65',
16412 'Memoize::Storable' => '0.65',
16413 'Module::Build' => '0.3603',
16414 'Module::Build::Base' => '0.3603',
16415 'Module::Build::Compat' => '0.3603',
16416 'Module::Build::Config' => '0.3603',
16417 'Module::Build::ConfigData'=> undef,
16418 'Module::Build::Cookbook'=> '0.3603',
16419 'Module::Build::Dumper' => '0.3603',
16420 'Module::Build::ModuleInfo'=> '0.3603',
16421 'Module::Build::Notes' => '0.3603',
16422 'Module::Build::PPMMaker'=> '0.3603',
16423 'Module::Build::Platform::Amiga'=> '0.3603',
16424 'Module::Build::Platform::Default'=> '0.3603',
16425 'Module::Build::Platform::EBCDIC'=> '0.3603',
16426 'Module::Build::Platform::MPEiX'=> '0.3603',
16427 'Module::Build::Platform::MacOS'=> '0.3603',
16428 'Module::Build::Platform::RiscOS'=> '0.3603',
16429 'Module::Build::Platform::Unix'=> '0.3603',
16430 'Module::Build::Platform::VMS'=> '0.3603',
16431 'Module::Build::Platform::VOS'=> '0.3603',
16432 'Module::Build::Platform::Windows'=> '0.3603',
16433 'Module::Build::Platform::aix'=> '0.3603',
16434 'Module::Build::Platform::cygwin'=> '0.360301',
16435 'Module::Build::Platform::darwin'=> '0.3603',
16436 'Module::Build::Platform::os2'=> '0.3603',
16437 'Module::Build::PodParser'=> '0.3603',
16438 'Module::Build::Version'=> '0.77',
16439 'Module::Build::YAML' => '1.40',
16440 'Module::CoreList' => '2.34',
16441 'Module::Load' => '0.16',
16442 'Module::Load::Conditional'=> '0.38',
16443 'Module::Loaded' => '0.06',
16444 'Module::Pluggable' => '3.9',
16445 'Module::Pluggable::Object'=> '3.9',
16446 'Moped::Msg' => '0.01',
16447 'NDBM_File' => '1.08',
16448 'NEXT' => '0.64',
16449 'Net::Cmd' => '2.29',
16450 'Net::Config' => '1.11',
16451 'Net::Domain' => '2.20',
16452 'Net::FTP' => '2.77',
16453 'Net::FTP::A' => '1.18',
16454 'Net::FTP::E' => '0.01',
16455 'Net::FTP::I' => '1.12',
16456 'Net::FTP::L' => '0.01',
16457 'Net::FTP::dataconn' => '0.11',
16458 'Net::NNTP' => '2.24',
16459 'Net::Netrc' => '2.12',
16460 'Net::POP3' => '2.29',
16461 'Net::Ping' => '2.36',
16462 'Net::SMTP' => '2.31',
16463 'Net::Time' => '2.10',
16464 'Net::hostent' => '1.01',
16465 'Net::netent' => '1.00',
16466 'Net::protoent' => '1.00',
16467 'Net::servent' => '1.01',
16468 'O' => '1.01',
16469 'ODBM_File' => '1.07',
16470 'Object::Accessor' => '0.36',
16471 'Opcode' => '1.15',
16472 'POSIX' => '1.19',
16473 'Package::Constants' => '0.02',
16474 'Params::Check' => '0.26',
16475 'Parse::CPAN::Meta' => '1.40',
16476 'PerlIO' => '1.06',
16477 'PerlIO::encoding' => '0.12',
16478 'PerlIO::scalar' => '0.08',
16479 'PerlIO::via' => '0.09',
16480 'PerlIO::via::QuotedPrint'=> '0.06',
16481 'Pod::Checker' => '1.45',
16482 'Pod::Escapes' => '1.04',
16483 'Pod::Find' => '1.35',
16484 'Pod::Functions' => '1.04',
16485 'Pod::Html' => '1.09',
16486 'Pod::InputObjects' => '1.31',
16487 'Pod::LaTeX' => '0.58',
16488 'Pod::Man' => '2.23',
16489 'Pod::ParseLink' => '1.10',
16490 'Pod::ParseUtils' => '1.36',
16491 'Pod::Parser' => '1.37',
16492 'Pod::Perldoc' => '3.15_02',
16493 'Pod::Perldoc::BaseTo' => undef,
16494 'Pod::Perldoc::GetOptsOO'=> undef,
16495 'Pod::Perldoc::ToChecker'=> undef,
16496 'Pod::Perldoc::ToMan' => undef,
16497 'Pod::Perldoc::ToNroff' => undef,
16498 'Pod::Perldoc::ToPod' => undef,
16499 'Pod::Perldoc::ToRtf' => undef,
16500 'Pod::Perldoc::ToText' => undef,
16501 'Pod::Perldoc::ToTk' => undef,
16502 'Pod::Perldoc::ToXml' => undef,
16503 'Pod::PlainText' => '2.04',
16504 'Pod::Select' => '1.36',
16505 'Pod::Simple' => '3.14',
16506 'Pod::Simple::BlackBox' => '3.14',
16507 'Pod::Simple::Checker' => '3.14',
16508 'Pod::Simple::Debug' => '3.14',
16509 'Pod::Simple::DumpAsText'=> '3.14',
16510 'Pod::Simple::DumpAsXML'=> '3.14',
16511 'Pod::Simple::HTML' => '3.14',
16512 'Pod::Simple::HTMLBatch'=> '3.14',
16513 'Pod::Simple::HTMLLegacy'=> '5.01',
16514 'Pod::Simple::LinkSection'=> '3.14',
16515 'Pod::Simple::Methody' => '3.14',
16516 'Pod::Simple::Progress' => '3.14',
16517 'Pod::Simple::PullParser'=> '3.14',
16518 'Pod::Simple::PullParserEndToken'=> '3.14',
16519 'Pod::Simple::PullParserStartToken'=> '3.14',
16520 'Pod::Simple::PullParserTextToken'=> '3.14',
16521 'Pod::Simple::PullParserToken'=> '3.14',
16522 'Pod::Simple::RTF' => '3.14',
16523 'Pod::Simple::Search' => '3.14',
16524 'Pod::Simple::SimpleTree'=> '3.14',
16525 'Pod::Simple::Text' => '3.14',
16526 'Pod::Simple::TextContent'=> '3.14',
16527 'Pod::Simple::TiedOutFH'=> '3.14',
16528 'Pod::Simple::Transcode'=> '3.14',
16529 'Pod::Simple::TranscodeDumb'=> '3.14',
16530 'Pod::Simple::TranscodeSmart'=> '3.14',
16531 'Pod::Simple::XHTML' => '3.14',
16532 'Pod::Simple::XMLOutStream'=> '3.14',
16533 'Pod::Text' => '3.14',
16534 'Pod::Text::Color' => '2.06',
16535 'Pod::Text::Overstrike' => '2.04',
16536 'Pod::Text::Termcap' => '2.06',
16537 'Pod::Usage' => '1.36',
16538 'SDBM_File' => '1.06',
16539 'Safe' => '2.27',
16540 'Scalar::Util' => '1.23',
16541 'Scalar::Util::PP' => '1.23',
16542 'Search::Dict' => '1.03',
16543 'SelectSaver' => '1.02',
16544 'SelfLoader' => '1.17',
16545 'Shell' => '0.72_01',
16546 'Socket' => '1.89',
16547 'Storable' => '2.22',
16548 'Symbol' => '1.07',
16549 'Sys::Hostname' => '1.11',
16550 'Sys::Syslog' => '0.27',
16551 'Sys::Syslog::win32::Win32'=> undef,
16552 'TAP::Base' => '3.17',
16553 'TAP::Formatter::Base' => '3.17',
16554 'TAP::Formatter::Color' => '3.17',
16555 'TAP::Formatter::Console'=> '3.17',
16556 'TAP::Formatter::Console::ParallelSession'=> '3.17',
16557 'TAP::Formatter::Console::Session'=> '3.17',
16558 'TAP::Formatter::File' => '3.17',
16559 'TAP::Formatter::File::Session'=> '3.17',
16560 'TAP::Formatter::Session'=> '3.17',
16561 'TAP::Harness' => '3.17',
16562 'TAP::Object' => '3.17',
16563 'TAP::Parser' => '3.17',
16564 'TAP::Parser::Aggregator'=> '3.17',
16565 'TAP::Parser::Grammar' => '3.17',
16566 'TAP::Parser::Iterator' => '3.17',
16567 'TAP::Parser::Iterator::Array'=> '3.17',
16568 'TAP::Parser::Iterator::Process'=> '3.17',
16569 'TAP::Parser::Iterator::Stream'=> '3.17',
16570 'TAP::Parser::IteratorFactory'=> '3.17',
16571 'TAP::Parser::Multiplexer'=> '3.17',
16572 'TAP::Parser::Result' => '3.17',
16573 'TAP::Parser::Result::Bailout'=> '3.17',
16574 'TAP::Parser::Result::Comment'=> '3.17',
16575 'TAP::Parser::Result::Plan'=> '3.17',
16576 'TAP::Parser::Result::Pragma'=> '3.17',
16577 'TAP::Parser::Result::Test'=> '3.17',
16578 'TAP::Parser::Result::Unknown'=> '3.17',
16579 'TAP::Parser::Result::Version'=> '3.17',
16580 'TAP::Parser::Result::YAML'=> '3.17',
16581 'TAP::Parser::ResultFactory'=> '3.17',
16582 'TAP::Parser::Scheduler'=> '3.17',
16583 'TAP::Parser::Scheduler::Job'=> '3.17',
16584 'TAP::Parser::Scheduler::Spinner'=> '3.17',
16585 'TAP::Parser::Source' => '3.17',
16586 'TAP::Parser::Source::Perl'=> '3.17',
16587 'TAP::Parser::Utils' => '3.17',
16588 'TAP::Parser::YAMLish::Reader'=> '3.17',
16589 'TAP::Parser::YAMLish::Writer'=> '3.17',
16590 'Term::ANSIColor' => '2.02',
16591 'Term::Cap' => '1.12',
16592 'Term::Complete' => '1.402',
16593 'Term::ReadLine' => '1.06',
16594 'Term::UI' => '0.20',
16595 'Term::UI::History' => undef,
16596 'Test' => '1.25_02',
16597 'Test::Builder' => '0.94',
16598 'Test::Builder::Module' => '0.94',
16599 'Test::Builder::Tester' => '1.18',
16600 'Test::Builder::Tester::Color'=> '1.18',
16601 'Test::Harness' => '3.17',
16602 'Test::More' => '0.94',
16603 'Test::Simple' => '0.94',
16604 'Text::Abbrev' => '1.01',
16605 'Text::Balanced' => '2.02',
16606 'Text::ParseWords' => '3.27',
16607 'Text::Soundex' => '3.03_01',
16608 'Text::Tabs' => '2009.0305',
16609 'Text::Wrap' => '2009.0305',
16610 'Thread' => '3.02',
16611 'Thread::Queue' => '2.11',
16612 'Thread::Semaphore' => '2.11',
16613 'Tie::Array' => '1.03',
16614 'Tie::File' => '0.97_02',
16615 'Tie::Handle' => '4.2',
16616 'Tie::Hash' => '1.03',
16617 'Tie::Hash::NamedCapture'=> '0.06',
16618 'Tie::Memoize' => '1.1',
16619 'Tie::RefHash' => '1.38',
16620 'Tie::Scalar' => '1.02',
16621 'Tie::StdHandle' => '4.2',
16622 'Tie::SubstrHash' => '1.00',
16623 'Time::HiRes' => '1.9719',
16624 'Time::Local' => '1.1901_01',
16625 'Time::Piece' => '1.15_01',
16626 'Time::Piece::Seconds' => undef,
16627 'Time::Seconds' => undef,
16628 'Time::gmtime' => '1.03',
16629 'Time::localtime' => '1.02',
16630 'Time::tm' => '1.00',
16631 'UNIVERSAL' => '1.07',
16632 'Unicode' => '5.2.0',
16633 'Unicode::Collate' => '0.52_01',
16634 'Unicode::Normalize' => '1.03',
16635 'Unicode::UCD' => '0.28',
16636 'User::grent' => '1.01',
16637 'User::pwent' => '1.00',
16638 'VMS::DCLsym' => '1.04',
16639 'VMS::Stdio' => '2.4',
16640 'Win32' => '0.39',
16641 'Win32API::File' => '0.1101',
16642 'Win32API::File::ExtUtils::Myconst2perl'=> '1',
16643 'Win32CORE' => '0.02',
16644 'XS::APItest' => '0.19',
16645 'XS::APItest::KeywordRPN'=> '0.004',
16646 'XS::Typemap' => '0.03',
16647 'XSLoader' => '0.10',
16648 'XSLoader::XSLoader' => '0.10',
16649 'attributes' => '0.12',
16650 'autodie' => '2.06_01',
16651 'autodie::exception' => '2.06_01',
16652 'autodie::exception::system'=> '2.06_01',
16653 'autodie::hints' => '2.06_01',
16654 'autouse' => '1.06',
16655 'base' => '2.15',
16656 'bigint' => '0.23',
16657 'bignum' => '0.23',
16658 'bigrat' => '0.23',
16659 'blib' => '1.04',
16660 'bytes' => '1.04',
16661 'charnames' => '1.08',
16662 'constant' => '1.20',
16663 'deprecate' => '0.01',
16664 'diagnostics' => '1.19',
16665 'encoding' => '2.6_01',
16666 'encoding::warnings' => '0.11',
16667 'feature' => '1.17',
16668 'fields' => '2.15',
16669 'filetest' => '1.02',
16670 'if' => '0.05',
16671 'inc::latest' => '0.3603',
16672 'integer' => '1.00',
16673 'less' => '0.03',
16674 'lib' => '0.62',
16675 'locale' => '1.00',
16676 'mro' => '1.03',
16677 'open' => '1.07',
16678 'ops' => '1.02',
16679 'overload' => '1.10',
16680 'overload::numbers' => undef,
16681 'overloading' => '0.01',
16682 'parent' => '0.223',
16683 're' => '0.11',
16684 'sigtrap' => '1.04',
16685 'sort' => '2.01',
16686 'strict' => '1.04',
16687 'subs' => '1.00',
16688 'threads' => '1.77_02',
16689 'threads::shared' => '1.33_01',
16690 'utf8' => '1.08',
16691 'vars' => '1.01',
16692 'version' => '0.82',
16693 'vmsish' => '1.02',
16694 'warnings' => '1.09',
16695 'warnings::register' => '1.01',
16697 5.013003 => {
16698 'AnyDBM_File' => '1.00',
16699 'App::Cpan' => '1.5701',
16700 'App::Prove' => '3.21',
16701 'App::Prove::State' => '3.21',
16702 'App::Prove::State::Result'=> '3.21',
16703 'App::Prove::State::Result::Test'=> '3.21',
16704 'Archive::Extract' => '0.42',
16705 'Archive::Tar' => '1.64',
16706 'Archive::Tar::Constant'=> '1.64',
16707 'Archive::Tar::File' => '1.64',
16708 'Attribute::Handlers' => '0.88',
16709 'AutoLoader' => '5.70',
16710 'AutoSplit' => '1.06',
16711 'B' => '1.23',
16712 'B::Concise' => '0.79',
16713 'B::Debug' => '1.12',
16714 'B::Deparse' => '0.98',
16715 'B::Lint' => '1.11_01',
16716 'B::Lint::Debug' => '0.01',
16717 'B::Showlex' => '1.02',
16718 'B::Terse' => '1.05',
16719 'B::Xref' => '1.02',
16720 'Benchmark' => '1.11',
16721 'CGI' => '3.49',
16722 'CGI::Apache' => '1.01',
16723 'CGI::Carp' => '3.45',
16724 'CGI::Cookie' => '1.29',
16725 'CGI::Fast' => '1.08',
16726 'CGI::Pretty' => '3.46',
16727 'CGI::Push' => '1.04',
16728 'CGI::Switch' => '1.01',
16729 'CGI::Util' => '3.48',
16730 'CPAN' => '1.94_57',
16731 'CPAN::Author' => '5.5',
16732 'CPAN::Bundle' => '5.5',
16733 'CPAN::CacheMgr' => '5.5',
16734 'CPAN::Complete' => '5.5',
16735 'CPAN::Debug' => '5.5001',
16736 'CPAN::DeferredCode' => '5.50',
16737 'CPAN::Distribution' => '1.9600',
16738 'CPAN::Distroprefs' => '6',
16739 'CPAN::Distrostatus' => '5.5',
16740 'CPAN::Exception::RecursiveDependency'=> '5.5',
16741 'CPAN::Exception::blocked_urllist'=> '1.0',
16742 'CPAN::Exception::yaml_not_installed'=> '5.5',
16743 'CPAN::FTP' => '5.5004',
16744 'CPAN::FTP::netrc' => '1.00',
16745 'CPAN::FirstTime' => '5.5301',
16746 'CPAN::HandleConfig' => '5.5001',
16747 'CPAN::Index' => '1.94',
16748 'CPAN::InfoObj' => '5.5',
16749 'CPAN::Kwalify' => '5.50',
16750 'CPAN::LWP::UserAgent' => '1.94',
16751 'CPAN::Mirrors' => '1.77',
16752 'CPAN::Module' => '5.5',
16753 'CPAN::Nox' => '5.50',
16754 'CPAN::Prompt' => '5.5',
16755 'CPAN::Queue' => '5.5',
16756 'CPAN::Shell' => '5.5001',
16757 'CPAN::Tarzip' => '5.5011',
16758 'CPAN::URL' => '5.5',
16759 'CPAN::Version' => '5.5',
16760 'CPANPLUS' => '0.9007',
16761 'CPANPLUS::Backend' => undef,
16762 'CPANPLUS::Backend::RV' => undef,
16763 'CPANPLUS::Config' => undef,
16764 'CPANPLUS::Configure' => undef,
16765 'CPANPLUS::Configure::Setup'=> undef,
16766 'CPANPLUS::Dist' => undef,
16767 'CPANPLUS::Dist::Autobundle'=> undef,
16768 'CPANPLUS::Dist::Base' => undef,
16769 'CPANPLUS::Dist::Build' => '0.46',
16770 'CPANPLUS::Dist::Build::Constants'=> '0.46',
16771 'CPANPLUS::Dist::MM' => undef,
16772 'CPANPLUS::Dist::Sample'=> undef,
16773 'CPANPLUS::Error' => undef,
16774 'CPANPLUS::Internals' => '0.9007',
16775 'CPANPLUS::Internals::Constants'=> undef,
16776 'CPANPLUS::Internals::Constants::Report'=> undef,
16777 'CPANPLUS::Internals::Extract'=> undef,
16778 'CPANPLUS::Internals::Fetch'=> undef,
16779 'CPANPLUS::Internals::Report'=> undef,
16780 'CPANPLUS::Internals::Search'=> undef,
16781 'CPANPLUS::Internals::Source'=> undef,
16782 'CPANPLUS::Internals::Source::Memory'=> undef,
16783 'CPANPLUS::Internals::Source::SQLite'=> undef,
16784 'CPANPLUS::Internals::Source::SQLite::Tie'=> undef,
16785 'CPANPLUS::Internals::Utils'=> undef,
16786 'CPANPLUS::Internals::Utils::Autoflush'=> undef,
16787 'CPANPLUS::Module' => undef,
16788 'CPANPLUS::Module::Author'=> undef,
16789 'CPANPLUS::Module::Author::Fake'=> undef,
16790 'CPANPLUS::Module::Checksums'=> undef,
16791 'CPANPLUS::Module::Fake'=> undef,
16792 'CPANPLUS::Module::Signature'=> undef,
16793 'CPANPLUS::Selfupdate' => undef,
16794 'CPANPLUS::Shell' => undef,
16795 'CPANPLUS::Shell::Classic'=> '0.0562',
16796 'CPANPLUS::Shell::Default'=> '0.9007',
16797 'CPANPLUS::Shell::Default::Plugins::CustomSource'=> undef,
16798 'CPANPLUS::Shell::Default::Plugins::Remote'=> undef,
16799 'CPANPLUS::Shell::Default::Plugins::Source'=> undef,
16800 'Carp' => '1.16',
16801 'Carp::Heavy' => '1.16',
16802 'Class::Struct' => '0.63',
16803 'Compress::Raw::Bzip2' => '2.027',
16804 'Compress::Raw::Zlib' => '2.027_01',
16805 'Compress::Zlib' => '2.027',
16806 'Config' => undef,
16807 'Config::Extensions' => '0.01',
16808 'Cwd' => '3.31',
16809 'DB' => '1.03',
16810 'DBM_Filter' => '0.03',
16811 'DBM_Filter::compress' => '0.02',
16812 'DBM_Filter::encode' => '0.02',
16813 'DBM_Filter::int32' => '0.02',
16814 'DBM_Filter::null' => '0.02',
16815 'DBM_Filter::utf8' => '0.02',
16816 'DB_File' => '1.820',
16817 'Data::Dumper' => '2.126',
16818 'Devel::DProf' => '20080331.00',
16819 'Devel::DProf::dprof::V'=> undef,
16820 'Devel::InnerPackage' => '0.3',
16821 'Devel::PPPort' => '3.19',
16822 'Devel::Peek' => '1.04',
16823 'Devel::SelfStubber' => '1.03',
16824 'Digest' => '1.16',
16825 'Digest::MD5' => '2.40',
16826 'Digest::SHA' => '5.48',
16827 'Digest::base' => '1.16',
16828 'Digest::file' => '1.16',
16829 'DirHandle' => '1.03',
16830 'Dumpvalue' => '1.14',
16831 'DynaLoader' => '1.10',
16832 'Encode' => '2.39',
16833 'Encode::Alias' => '2.12',
16834 'Encode::Byte' => '2.04',
16835 'Encode::CJKConstants' => '2.02',
16836 'Encode::CN' => '2.03',
16837 'Encode::CN::HZ' => '2.05',
16838 'Encode::Config' => '2.05',
16839 'Encode::EBCDIC' => '2.02',
16840 'Encode::Encoder' => '2.01',
16841 'Encode::Encoding' => '2.05',
16842 'Encode::GSM0338' => '2.01',
16843 'Encode::Guess' => '2.03',
16844 'Encode::JP' => '2.04',
16845 'Encode::JP::H2Z' => '2.02',
16846 'Encode::JP::JIS7' => '2.04',
16847 'Encode::KR' => '2.03',
16848 'Encode::KR::2022_KR' => '2.02',
16849 'Encode::MIME::Header' => '2.11',
16850 'Encode::MIME::Header::ISO_2022_JP'=> '1.03',
16851 'Encode::MIME::Name' => '1.01',
16852 'Encode::Symbol' => '2.02',
16853 'Encode::TW' => '2.03',
16854 'Encode::Unicode' => '2.07',
16855 'Encode::Unicode::UTF7' => '2.04',
16856 'English' => '1.04',
16857 'Env' => '1.01',
16858 'Errno' => '1.12',
16859 'Exporter' => '5.64_03',
16860 'Exporter::Heavy' => '5.64_03',
16861 'ExtUtils::CBuilder' => '0.2703',
16862 'ExtUtils::CBuilder::Base'=> '0.2703_01',
16863 'ExtUtils::CBuilder::Platform::Unix'=> '0.2703',
16864 'ExtUtils::CBuilder::Platform::VMS'=> '0.2703',
16865 'ExtUtils::CBuilder::Platform::Windows'=> '0.2703',
16866 'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.2703',
16867 'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.2703',
16868 'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.2703',
16869 'ExtUtils::CBuilder::Platform::aix'=> '0.2703',
16870 'ExtUtils::CBuilder::Platform::cygwin'=> '0.2703',
16871 'ExtUtils::CBuilder::Platform::darwin'=> '0.2703',
16872 'ExtUtils::CBuilder::Platform::dec_osf'=> '0.2703',
16873 'ExtUtils::CBuilder::Platform::os2'=> '0.2703',
16874 'ExtUtils::Command' => '1.16',
16875 'ExtUtils::Command::MM' => '6.56',
16876 'ExtUtils::Constant' => '0.22',
16877 'ExtUtils::Constant::Base'=> '0.04',
16878 'ExtUtils::Constant::ProxySubs'=> '0.06',
16879 'ExtUtils::Constant::Utils'=> '0.02',
16880 'ExtUtils::Constant::XS'=> '0.03',
16881 'ExtUtils::Embed' => '1.28',
16882 'ExtUtils::Install' => '1.55',
16883 'ExtUtils::Installed' => '1.999_001',
16884 'ExtUtils::Liblist' => '6.56',
16885 'ExtUtils::Liblist::Kid'=> '6.56',
16886 'ExtUtils::MM' => '6.56',
16887 'ExtUtils::MM_AIX' => '6.56',
16888 'ExtUtils::MM_Any' => '6.56',
16889 'ExtUtils::MM_BeOS' => '6.56',
16890 'ExtUtils::MM_Cygwin' => '6.56',
16891 'ExtUtils::MM_DOS' => '6.56',
16892 'ExtUtils::MM_Darwin' => '6.56',
16893 'ExtUtils::MM_MacOS' => '6.56',
16894 'ExtUtils::MM_NW5' => '6.56',
16895 'ExtUtils::MM_OS2' => '6.56',
16896 'ExtUtils::MM_QNX' => '6.56',
16897 'ExtUtils::MM_UWIN' => '6.56',
16898 'ExtUtils::MM_Unix' => '6.5601',
16899 'ExtUtils::MM_VMS' => '6.56',
16900 'ExtUtils::MM_VOS' => '6.56',
16901 'ExtUtils::MM_Win32' => '6.56',
16902 'ExtUtils::MM_Win95' => '6.56',
16903 'ExtUtils::MY' => '6.56',
16904 'ExtUtils::MakeMaker' => '6.5601',
16905 'ExtUtils::MakeMaker::Config'=> '6.56',
16906 'ExtUtils::Manifest' => '1.58',
16907 'ExtUtils::Mkbootstrap' => '6.56',
16908 'ExtUtils::Mksymlists' => '6.56',
16909 'ExtUtils::Packlist' => '1.44',
16910 'ExtUtils::ParseXS' => '2.2206',
16911 'ExtUtils::XSSymSet' => '1.1',
16912 'ExtUtils::testlib' => '6.56',
16913 'Fatal' => '2.10',
16914 'Fcntl' => '1.06',
16915 'File::Basename' => '2.79',
16916 'File::CheckTree' => '4.4',
16917 'File::Compare' => '1.1006',
16918 'File::Copy' => '2.20',
16919 'File::DosGlob' => '1.02',
16920 'File::Fetch' => '0.24',
16921 'File::Find' => '1.17',
16922 'File::Glob' => '1.08',
16923 'File::GlobMapper' => '1.000',
16924 'File::Path' => '2.08_01',
16925 'File::Spec' => '3.31',
16926 'File::Spec::Cygwin' => '3.30',
16927 'File::Spec::Epoc' => '3.30',
16928 'File::Spec::Functions' => '3.30',
16929 'File::Spec::Mac' => '3.30',
16930 'File::Spec::OS2' => '3.30',
16931 'File::Spec::Unix' => '3.30',
16932 'File::Spec::VMS' => '3.30',
16933 'File::Spec::Win32' => '3.30',
16934 'File::Temp' => '0.22',
16935 'File::stat' => '1.03',
16936 'FileCache' => '1.08',
16937 'FileHandle' => '2.02',
16938 'VMS::Filespec' => '1.12',
16939 'Filter::Simple' => '0.84',
16940 'Filter::Util::Call' => '1.08',
16941 'FindBin' => '1.50',
16942 'GDBM_File' => '1.10',
16943 'Getopt::Long' => '2.38',
16944 'Getopt::Std' => '1.06',
16945 'Hash::Util' => '0.08',
16946 'Hash::Util::FieldHash' => '1.04',
16947 'I18N::Collate' => '1.01',
16948 'I18N::LangTags' => '0.35_01',
16949 'I18N::LangTags::Detect'=> '1.04',
16950 'I18N::LangTags::List' => '0.35_01',
16951 'I18N::Langinfo' => '0.03',
16952 'IO' => '1.25_02',
16953 'IO::Compress::Adapter::Bzip2'=> '2.027',
16954 'IO::Compress::Adapter::Deflate'=> '2.027',
16955 'IO::Compress::Adapter::Identity'=> '2.027',
16956 'IO::Compress::Base' => '2.027',
16957 'IO::Compress::Base::Common'=> '2.027',
16958 'IO::Compress::Bzip2' => '2.027',
16959 'IO::Compress::Deflate' => '2.027',
16960 'IO::Compress::Gzip' => '2.027',
16961 'IO::Compress::Gzip::Constants'=> '2.027',
16962 'IO::Compress::RawDeflate'=> '2.027',
16963 'IO::Compress::Zip' => '2.027',
16964 'IO::Compress::Zip::Constants'=> '2.027',
16965 'IO::Compress::Zlib::Constants'=> '2.027',
16966 'IO::Compress::Zlib::Extra'=> '2.027',
16967 'IO::Dir' => '1.07',
16968 'IO::File' => '1.14',
16969 'IO::Handle' => '1.28',
16970 'IO::Pipe' => '1.13',
16971 'IO::Poll' => '0.07',
16972 'IO::Seekable' => '1.10',
16973 'IO::Select' => '1.17',
16974 'IO::Socket' => '1.32',
16975 'IO::Socket::INET' => '1.31',
16976 'IO::Socket::UNIX' => '1.23',
16977 'IO::Uncompress::Adapter::Bunzip2'=> '2.027',
16978 'IO::Uncompress::Adapter::Identity'=> '2.027',
16979 'IO::Uncompress::Adapter::Inflate'=> '2.027',
16980 'IO::Uncompress::AnyInflate'=> '2.027',
16981 'IO::Uncompress::AnyUncompress'=> '2.027',
16982 'IO::Uncompress::Base' => '2.027',
16983 'IO::Uncompress::Bunzip2'=> '2.027',
16984 'IO::Uncompress::Gunzip'=> '2.027',
16985 'IO::Uncompress::Inflate'=> '2.027',
16986 'IO::Uncompress::RawInflate'=> '2.027',
16987 'IO::Uncompress::Unzip' => '2.027',
16988 'IO::Zlib' => '1.10',
16989 'IPC::Cmd' => '0.60',
16990 'IPC::Msg' => '2.03',
16991 'IPC::Open2' => '1.03',
16992 'IPC::Open3' => '1.06',
16993 'IPC::Semaphore' => '2.03',
16994 'IPC::SharedMem' => '2.03',
16995 'IPC::SysV' => '2.03',
16996 'List::Util' => '1.23',
16997 'List::Util::PP' => '1.23',
16998 'List::Util::XS' => '1.23',
16999 'Locale::Codes' => '3.13',
17000 'Locale::Codes::Country'=> '3.13',
17001 'Locale::Codes::Currency'=> '3.13',
17002 'Locale::Codes::Language'=> '3.13',
17003 'Locale::Codes::Script' => '3.13',
17004 'Locale::Constants' => '3.13',
17005 'Locale::Country' => '3.13',
17006 'Locale::Currency' => '3.13',
17007 'Locale::Language' => '3.13',
17008 'Locale::Maketext' => '1.15',
17009 'Locale::Maketext::Guts'=> undef,
17010 'Locale::Maketext::GutsLoader'=> undef,
17011 'Locale::Maketext::Simple'=> '0.21',
17012 'Locale::Script' => '3.13',
17013 'Log::Message' => '0.02',
17014 'Log::Message::Config' => '0.01',
17015 'Log::Message::Handlers'=> undef,
17016 'Log::Message::Item' => undef,
17017 'Log::Message::Simple' => '0.06',
17018 'MIME::Base64' => '3.09',
17019 'MIME::QuotedPrint' => '3.09',
17020 'Math::BigFloat' => '1.60',
17021 'Math::BigFloat::Trace' => '0.01',
17022 'Math::BigInt' => '1.89_01',
17023 'Math::BigInt::Calc' => '0.52',
17024 'Math::BigInt::CalcEmu' => '0.05',
17025 'Math::BigInt::FastCalc'=> '0.19',
17026 'Math::BigInt::Trace' => '0.01',
17027 'Math::BigRat' => '0.24',
17028 'Math::Complex' => '1.56',
17029 'Math::Trig' => '1.2',
17030 'Memoize' => '1.01_03',
17031 'Memoize::AnyDBM_File' => '0.65',
17032 'Memoize::Expire' => '1.00',
17033 'Memoize::ExpireFile' => '1.01',
17034 'Memoize::ExpireTest' => '0.65',
17035 'Memoize::NDBM_File' => '0.65',
17036 'Memoize::SDBM_File' => '0.65',
17037 'Memoize::Storable' => '0.65',
17038 'Module::Build' => '0.3607',
17039 'Module::Build::Base' => '0.3607',
17040 'Module::Build::Compat' => '0.3607',
17041 'Module::Build::Config' => '0.3607',
17042 'Module::Build::ConfigData'=> undef,
17043 'Module::Build::Cookbook'=> '0.3607',
17044 'Module::Build::Dumper' => '0.3607',
17045 'Module::Build::ModuleInfo'=> '0.3607',
17046 'Module::Build::Notes' => '0.3607',
17047 'Module::Build::PPMMaker'=> '0.3607',
17048 'Module::Build::Platform::Amiga'=> '0.3607',
17049 'Module::Build::Platform::Default'=> '0.3607',
17050 'Module::Build::Platform::EBCDIC'=> '0.3607',
17051 'Module::Build::Platform::MPEiX'=> '0.3607',
17052 'Module::Build::Platform::MacOS'=> '0.3607',
17053 'Module::Build::Platform::RiscOS'=> '0.3607',
17054 'Module::Build::Platform::Unix'=> '0.3607',
17055 'Module::Build::Platform::VMS'=> '0.3607',
17056 'Module::Build::Platform::VOS'=> '0.3607',
17057 'Module::Build::Platform::Windows'=> '0.3607',
17058 'Module::Build::Platform::aix'=> '0.3607',
17059 'Module::Build::Platform::cygwin'=> '0.3607',
17060 'Module::Build::Platform::darwin'=> '0.3607',
17061 'Module::Build::Platform::os2'=> '0.3607',
17062 'Module::Build::PodParser'=> '0.3607',
17063 'Module::Build::Version'=> '0.77',
17064 'Module::Build::YAML' => '1.40',
17065 'Module::CoreList' => '2.36',
17066 'Module::Load' => '0.18',
17067 'Module::Load::Conditional'=> '0.38',
17068 'Module::Loaded' => '0.06',
17069 'Module::Pluggable' => '3.9',
17070 'Module::Pluggable::Object'=> '3.9',
17071 'Moped::Msg' => '0.01',
17072 'NDBM_File' => '1.08',
17073 'NEXT' => '0.64',
17074 'Net::Cmd' => '2.29',
17075 'Net::Config' => '1.11',
17076 'Net::Domain' => '2.20',
17077 'Net::FTP' => '2.77',
17078 'Net::FTP::A' => '1.18',
17079 'Net::FTP::E' => '0.01',
17080 'Net::FTP::I' => '1.12',
17081 'Net::FTP::L' => '0.01',
17082 'Net::FTP::dataconn' => '0.11',
17083 'Net::NNTP' => '2.24',
17084 'Net::Netrc' => '2.12',
17085 'Net::POP3' => '2.29',
17086 'Net::Ping' => '2.36',
17087 'Net::SMTP' => '2.31',
17088 'Net::Time' => '2.10',
17089 'Net::hostent' => '1.01',
17090 'Net::netent' => '1.00',
17091 'Net::protoent' => '1.00',
17092 'Net::servent' => '1.01',
17093 'O' => '1.01',
17094 'ODBM_File' => '1.07',
17095 'Object::Accessor' => '0.36',
17096 'Opcode' => '1.15',
17097 'POSIX' => '1.19',
17098 'Package::Constants' => '0.02',
17099 'Params::Check' => '0.26',
17100 'Parse::CPAN::Meta' => '1.40',
17101 'PerlIO' => '1.06',
17102 'PerlIO::encoding' => '0.12',
17103 'PerlIO::scalar' => '0.08',
17104 'PerlIO::via' => '0.09',
17105 'PerlIO::via::QuotedPrint'=> '0.06',
17106 'Pod::Checker' => '1.45',
17107 'Pod::Escapes' => '1.04',
17108 'Pod::Find' => '1.35',
17109 'Pod::Functions' => '1.04',
17110 'Pod::Html' => '1.09',
17111 'Pod::InputObjects' => '1.31',
17112 'Pod::LaTeX' => '0.58',
17113 'Pod::Man' => '2.23',
17114 'Pod::ParseLink' => '1.10',
17115 'Pod::ParseUtils' => '1.36',
17116 'Pod::Parser' => '1.37',
17117 'Pod::Perldoc' => '3.15_02',
17118 'Pod::Perldoc::BaseTo' => undef,
17119 'Pod::Perldoc::GetOptsOO'=> undef,
17120 'Pod::Perldoc::ToChecker'=> undef,
17121 'Pod::Perldoc::ToMan' => undef,
17122 'Pod::Perldoc::ToNroff' => undef,
17123 'Pod::Perldoc::ToPod' => undef,
17124 'Pod::Perldoc::ToRtf' => undef,
17125 'Pod::Perldoc::ToText' => undef,
17126 'Pod::Perldoc::ToTk' => undef,
17127 'Pod::Perldoc::ToXml' => undef,
17128 'Pod::PlainText' => '2.04',
17129 'Pod::Select' => '1.36',
17130 'Pod::Simple' => '3.14',
17131 'Pod::Simple::BlackBox' => '3.14',
17132 'Pod::Simple::Checker' => '3.14',
17133 'Pod::Simple::Debug' => '3.14',
17134 'Pod::Simple::DumpAsText'=> '3.14',
17135 'Pod::Simple::DumpAsXML'=> '3.14',
17136 'Pod::Simple::HTML' => '3.14',
17137 'Pod::Simple::HTMLBatch'=> '3.14',
17138 'Pod::Simple::HTMLLegacy'=> '5.01',
17139 'Pod::Simple::LinkSection'=> '3.14',
17140 'Pod::Simple::Methody' => '3.14',
17141 'Pod::Simple::Progress' => '3.14',
17142 'Pod::Simple::PullParser'=> '3.14',
17143 'Pod::Simple::PullParserEndToken'=> '3.14',
17144 'Pod::Simple::PullParserStartToken'=> '3.14',
17145 'Pod::Simple::PullParserTextToken'=> '3.14',
17146 'Pod::Simple::PullParserToken'=> '3.14',
17147 'Pod::Simple::RTF' => '3.14',
17148 'Pod::Simple::Search' => '3.14',
17149 'Pod::Simple::SimpleTree'=> '3.14',
17150 'Pod::Simple::Text' => '3.14',
17151 'Pod::Simple::TextContent'=> '3.14',
17152 'Pod::Simple::TiedOutFH'=> '3.14',
17153 'Pod::Simple::Transcode'=> '3.14',
17154 'Pod::Simple::TranscodeDumb'=> '3.14',
17155 'Pod::Simple::TranscodeSmart'=> '3.14',
17156 'Pod::Simple::XHTML' => '3.14',
17157 'Pod::Simple::XMLOutStream'=> '3.14',
17158 'Pod::Text' => '3.14',
17159 'Pod::Text::Color' => '2.06',
17160 'Pod::Text::Overstrike' => '2.04',
17161 'Pod::Text::Termcap' => '2.06',
17162 'Pod::Usage' => '1.36',
17163 'SDBM_File' => '1.06',
17164 'Safe' => '2.27',
17165 'Scalar::Util' => '1.23',
17166 'Scalar::Util::PP' => '1.23',
17167 'Search::Dict' => '1.03',
17168 'SelectSaver' => '1.02',
17169 'SelfLoader' => '1.17',
17170 'Shell' => '0.72_01',
17171 'Socket' => '1.89',
17172 'Storable' => '2.22',
17173 'Symbol' => '1.07',
17174 'Sys::Hostname' => '1.11',
17175 'Sys::Syslog' => '0.27',
17176 'Sys::Syslog::win32::Win32'=> undef,
17177 'TAP::Base' => '3.21',
17178 'TAP::Formatter::Base' => '3.21',
17179 'TAP::Formatter::Color' => '3.21',
17180 'TAP::Formatter::Console'=> '3.21',
17181 'TAP::Formatter::Console::ParallelSession'=> '3.21',
17182 'TAP::Formatter::Console::Session'=> '3.21',
17183 'TAP::Formatter::File' => '3.21',
17184 'TAP::Formatter::File::Session'=> '3.21',
17185 'TAP::Formatter::Session'=> '3.21',
17186 'TAP::Harness' => '3.21',
17187 'TAP::Object' => '3.21',
17188 'TAP::Parser' => '3.21',
17189 'TAP::Parser::Aggregator'=> '3.21',
17190 'TAP::Parser::Grammar' => '3.21',
17191 'TAP::Parser::Iterator' => '3.21',
17192 'TAP::Parser::Iterator::Array'=> '3.21',
17193 'TAP::Parser::Iterator::Process'=> '3.21',
17194 'TAP::Parser::Iterator::Stream'=> '3.21',
17195 'TAP::Parser::IteratorFactory'=> '3.21',
17196 'TAP::Parser::Multiplexer'=> '3.21',
17197 'TAP::Parser::Result' => '3.21',
17198 'TAP::Parser::Result::Bailout'=> '3.21',
17199 'TAP::Parser::Result::Comment'=> '3.21',
17200 'TAP::Parser::Result::Plan'=> '3.21',
17201 'TAP::Parser::Result::Pragma'=> '3.21',
17202 'TAP::Parser::Result::Test'=> '3.21',
17203 'TAP::Parser::Result::Unknown'=> '3.21',
17204 'TAP::Parser::Result::Version'=> '3.21',
17205 'TAP::Parser::Result::YAML'=> '3.21',
17206 'TAP::Parser::ResultFactory'=> '3.21',
17207 'TAP::Parser::Scheduler'=> '3.21',
17208 'TAP::Parser::Scheduler::Job'=> '3.21',
17209 'TAP::Parser::Scheduler::Spinner'=> '3.21',
17210 'TAP::Parser::Source' => '3.21',
17211 'TAP::Parser::SourceHandler'=> '3.21',
17212 'TAP::Parser::SourceHandler::Executable'=> '3.21',
17213 'TAP::Parser::SourceHandler::File'=> '3.21',
17214 'TAP::Parser::SourceHandler::Handle'=> '3.21',
17215 'TAP::Parser::SourceHandler::Perl'=> '3.21',
17216 'TAP::Parser::SourceHandler::RawTAP'=> '3.21',
17217 'TAP::Parser::SourceHandler::pgTAP'=> '3.21',
17218 'TAP::Parser::Utils' => '3.21',
17219 'TAP::Parser::YAMLish::Reader'=> '3.21',
17220 'TAP::Parser::YAMLish::Writer'=> '3.21',
17221 'Term::ANSIColor' => '3.00',
17222 'Term::Cap' => '1.12',
17223 'Term::Complete' => '1.402',
17224 'Term::ReadLine' => '1.07',
17225 'Term::UI' => '0.20',
17226 'Term::UI::History' => undef,
17227 'Test' => '1.25_02',
17228 'Test::Builder' => '0.94',
17229 'Test::Builder::Module' => '0.94',
17230 'Test::Builder::Tester' => '1.18',
17231 'Test::Builder::Tester::Color'=> '1.18',
17232 'Test::Harness' => '3.21',
17233 'Test::More' => '0.94',
17234 'Test::Simple' => '0.94',
17235 'Text::Abbrev' => '1.01',
17236 'Text::Balanced' => '2.02',
17237 'Text::ParseWords' => '3.27',
17238 'Text::Soundex' => '3.03_01',
17239 'Text::Tabs' => '2009.0305',
17240 'Text::Wrap' => '2009.0305',
17241 'Thread' => '3.02',
17242 'Thread::Queue' => '2.11',
17243 'Thread::Semaphore' => '2.11',
17244 'Tie::Array' => '1.04',
17245 'Tie::File' => '0.97_02',
17246 'Tie::Handle' => '4.2',
17247 'Tie::Hash' => '1.03',
17248 'Tie::Hash::NamedCapture'=> '0.06',
17249 'Tie::Memoize' => '1.1',
17250 'Tie::RefHash' => '1.38',
17251 'Tie::Scalar' => '1.02',
17252 'Tie::StdHandle' => '4.2',
17253 'Tie::SubstrHash' => '1.00',
17254 'Time::HiRes' => '1.9721',
17255 'Time::Local' => '1.1901_01',
17256 'Time::Piece' => '1.20_01',
17257 'Time::Piece::Seconds' => undef,
17258 'Time::Seconds' => undef,
17259 'Time::gmtime' => '1.03',
17260 'Time::localtime' => '1.02',
17261 'Time::tm' => '1.00',
17262 'UNIVERSAL' => '1.07',
17263 'Unicode' => '5.2.0',
17264 'Unicode::Collate' => '0.53',
17265 'Unicode::Normalize' => '1.06',
17266 'Unicode::UCD' => '0.29',
17267 'User::grent' => '1.01',
17268 'User::pwent' => '1.00',
17269 'VMS::DCLsym' => '1.04',
17270 'VMS::Stdio' => '2.4',
17271 'Win32' => '0.39',
17272 'Win32API::File' => '0.1101',
17273 'Win32API::File::ExtUtils::Myconst2perl'=> '1',
17274 'Win32CORE' => '0.02',
17275 'XS::APItest' => '0.19',
17276 'XS::APItest::KeywordRPN'=> '0.004',
17277 'XS::Typemap' => '0.03',
17278 'XSLoader' => '0.10',
17279 'XSLoader::XSLoader' => '0.10',
17280 'attributes' => '0.12',
17281 'autodie' => '2.10',
17282 'autodie::exception' => '2.10',
17283 'autodie::exception::system'=> '2.10',
17284 'autodie::hints' => '2.10',
17285 'autouse' => '1.06',
17286 'base' => '2.15',
17287 'bigint' => '0.23',
17288 'bignum' => '0.23',
17289 'bigrat' => '0.23',
17290 'blib' => '1.05',
17291 'bytes' => '1.04',
17292 'charnames' => '1.11',
17293 'constant' => '1.20',
17294 'deprecate' => '0.01',
17295 'diagnostics' => '1.20',
17296 'encoding' => '2.6_01',
17297 'encoding::warnings' => '0.11',
17298 'feature' => '1.17',
17299 'fields' => '2.15',
17300 'filetest' => '1.02',
17301 'if' => '0.05',
17302 'inc::latest' => '0.3607',
17303 'integer' => '1.00',
17304 'less' => '0.03',
17305 'lib' => '0.63',
17306 'locale' => '1.00',
17307 'mro' => '1.03',
17308 'open' => '1.07',
17309 'ops' => '1.02',
17310 'overload' => '1.10',
17311 'overload::numbers' => undef,
17312 'overloading' => '0.01',
17313 'parent' => '0.223',
17314 're' => '0.12',
17315 'sigtrap' => '1.04',
17316 'sort' => '2.01',
17317 'strict' => '1.04',
17318 'subs' => '1.00',
17319 'threads' => '1.77_03',
17320 'threads::shared' => '1.33_02',
17321 'utf8' => '1.08',
17322 'vars' => '1.02',
17323 'version' => '0.82',
17324 'vmsish' => '1.02',
17325 'warnings' => '1.10',
17326 'warnings::register' => '1.01',
17328 5.013004 => {
17329 'AnyDBM_File' => '1.00',
17330 'App::Cpan' => '1.5701',
17331 'App::Prove' => '3.22',
17332 'App::Prove::State' => '3.22',
17333 'App::Prove::State::Result'=> '3.22',
17334 'App::Prove::State::Result::Test'=> '3.22',
17335 'Archive::Extract' => '0.42',
17336 'Archive::Tar' => '1.68',
17337 'Archive::Tar::Constant'=> '1.68',
17338 'Archive::Tar::File' => '1.68',
17339 'Attribute::Handlers' => '0.88',
17340 'AutoLoader' => '5.70',
17341 'AutoSplit' => '1.06',
17342 'B' => '1.23',
17343 'B::Concise' => '0.79',
17344 'B::Debug' => '1.12',
17345 'B::Deparse' => '0.98',
17346 'B::Lint' => '1.12',
17347 'B::Lint::Debug' => '1.12',
17348 'B::Showlex' => '1.02',
17349 'B::Terse' => '1.05',
17350 'B::Xref' => '1.02',
17351 'Benchmark' => '1.11',
17352 'CGI' => '3.49',
17353 'CGI::Apache' => '1.01',
17354 'CGI::Carp' => '3.45',
17355 'CGI::Cookie' => '1.29',
17356 'CGI::Fast' => '1.08',
17357 'CGI::Pretty' => '3.46',
17358 'CGI::Push' => '1.04',
17359 'CGI::Switch' => '1.01',
17360 'CGI::Util' => '3.48',
17361 'CPAN' => '1.94_57',
17362 'CPAN::Author' => '5.5',
17363 'CPAN::Bundle' => '5.5',
17364 'CPAN::CacheMgr' => '5.5',
17365 'CPAN::Complete' => '5.5',
17366 'CPAN::Debug' => '5.5001',
17367 'CPAN::DeferredCode' => '5.50',
17368 'CPAN::Distribution' => '1.9600',
17369 'CPAN::Distroprefs' => '6',
17370 'CPAN::Distrostatus' => '5.5',
17371 'CPAN::Exception::RecursiveDependency'=> '5.5',
17372 'CPAN::Exception::blocked_urllist'=> '1.0',
17373 'CPAN::Exception::yaml_not_installed'=> '5.5',
17374 'CPAN::FTP' => '5.5004',
17375 'CPAN::FTP::netrc' => '1.00',
17376 'CPAN::FirstTime' => '5.5301',
17377 'CPAN::HandleConfig' => '5.5001',
17378 'CPAN::Index' => '1.94',
17379 'CPAN::InfoObj' => '5.5',
17380 'CPAN::Kwalify' => '5.50',
17381 'CPAN::LWP::UserAgent' => '1.94',
17382 'CPAN::Mirrors' => '1.77',
17383 'CPAN::Module' => '5.5',
17384 'CPAN::Nox' => '5.50',
17385 'CPAN::Prompt' => '5.5',
17386 'CPAN::Queue' => '5.5',
17387 'CPAN::Shell' => '5.5001',
17388 'CPAN::Tarzip' => '5.5011',
17389 'CPAN::URL' => '5.5',
17390 'CPAN::Version' => '5.5',
17391 'CPANPLUS' => '0.9007',
17392 'CPANPLUS::Backend' => undef,
17393 'CPANPLUS::Backend::RV' => undef,
17394 'CPANPLUS::Config' => undef,
17395 'CPANPLUS::Configure' => undef,
17396 'CPANPLUS::Configure::Setup'=> undef,
17397 'CPANPLUS::Dist' => undef,
17398 'CPANPLUS::Dist::Autobundle'=> undef,
17399 'CPANPLUS::Dist::Base' => undef,
17400 'CPANPLUS::Dist::Build' => '0.46',
17401 'CPANPLUS::Dist::Build::Constants'=> '0.46',
17402 'CPANPLUS::Dist::MM' => undef,
17403 'CPANPLUS::Dist::Sample'=> undef,
17404 'CPANPLUS::Error' => undef,
17405 'CPANPLUS::Internals' => '0.9007',
17406 'CPANPLUS::Internals::Constants'=> undef,
17407 'CPANPLUS::Internals::Constants::Report'=> undef,
17408 'CPANPLUS::Internals::Extract'=> undef,
17409 'CPANPLUS::Internals::Fetch'=> undef,
17410 'CPANPLUS::Internals::Report'=> undef,
17411 'CPANPLUS::Internals::Search'=> undef,
17412 'CPANPLUS::Internals::Source'=> undef,
17413 'CPANPLUS::Internals::Source::Memory'=> undef,
17414 'CPANPLUS::Internals::Source::SQLite'=> undef,
17415 'CPANPLUS::Internals::Source::SQLite::Tie'=> undef,
17416 'CPANPLUS::Internals::Utils'=> undef,
17417 'CPANPLUS::Internals::Utils::Autoflush'=> undef,
17418 'CPANPLUS::Module' => undef,
17419 'CPANPLUS::Module::Author'=> undef,
17420 'CPANPLUS::Module::Author::Fake'=> undef,
17421 'CPANPLUS::Module::Checksums'=> undef,
17422 'CPANPLUS::Module::Fake'=> undef,
17423 'CPANPLUS::Module::Signature'=> undef,
17424 'CPANPLUS::Selfupdate' => undef,
17425 'CPANPLUS::Shell' => undef,
17426 'CPANPLUS::Shell::Classic'=> '0.0562',
17427 'CPANPLUS::Shell::Default'=> '0.9007',
17428 'CPANPLUS::Shell::Default::Plugins::CustomSource'=> undef,
17429 'CPANPLUS::Shell::Default::Plugins::Remote'=> undef,
17430 'CPANPLUS::Shell::Default::Plugins::Source'=> undef,
17431 'Carp' => '1.18',
17432 'Carp::Heavy' => '1.18',
17433 'Class::Struct' => '0.63',
17434 'Compress::Raw::Bzip2' => '2.030',
17435 'Compress::Raw::Zlib' => '2.030',
17436 'Compress::Zlib' => '2.030',
17437 'Config' => undef,
17438 'Config::Extensions' => '0.01',
17439 'Cwd' => '3.31',
17440 'DB' => '1.03',
17441 'DBM_Filter' => '0.03',
17442 'DBM_Filter::compress' => '0.02',
17443 'DBM_Filter::encode' => '0.02',
17444 'DBM_Filter::int32' => '0.02',
17445 'DBM_Filter::null' => '0.02',
17446 'DBM_Filter::utf8' => '0.02',
17447 'DB_File' => '1.820',
17448 'Data::Dumper' => '2.126',
17449 'Devel::DProf' => '20080331.00',
17450 'Devel::DProf::dprof::V'=> undef,
17451 'Devel::InnerPackage' => '0.3',
17452 'Devel::PPPort' => '3.19',
17453 'Devel::Peek' => '1.04',
17454 'Devel::SelfStubber' => '1.03',
17455 'Digest' => '1.16',
17456 'Digest::MD5' => '2.40',
17457 'Digest::SHA' => '5.48',
17458 'Digest::base' => '1.16',
17459 'Digest::file' => '1.16',
17460 'DirHandle' => '1.03',
17461 'Dumpvalue' => '1.14',
17462 'DynaLoader' => '1.10',
17463 'Encode' => '2.39',
17464 'Encode::Alias' => '2.12',
17465 'Encode::Byte' => '2.04',
17466 'Encode::CJKConstants' => '2.02',
17467 'Encode::CN' => '2.03',
17468 'Encode::CN::HZ' => '2.05',
17469 'Encode::Config' => '2.05',
17470 'Encode::EBCDIC' => '2.02',
17471 'Encode::Encoder' => '2.01',
17472 'Encode::Encoding' => '2.05',
17473 'Encode::GSM0338' => '2.01',
17474 'Encode::Guess' => '2.03',
17475 'Encode::JP' => '2.04',
17476 'Encode::JP::H2Z' => '2.02',
17477 'Encode::JP::JIS7' => '2.04',
17478 'Encode::KR' => '2.03',
17479 'Encode::KR::2022_KR' => '2.02',
17480 'Encode::MIME::Header' => '2.11',
17481 'Encode::MIME::Header::ISO_2022_JP'=> '1.03',
17482 'Encode::MIME::Name' => '1.01',
17483 'Encode::Symbol' => '2.02',
17484 'Encode::TW' => '2.03',
17485 'Encode::Unicode' => '2.07',
17486 'Encode::Unicode::UTF7' => '2.04',
17487 'English' => '1.04',
17488 'Env' => '1.01',
17489 'Errno' => '1.12',
17490 'Exporter' => '5.64_03',
17491 'Exporter::Heavy' => '5.64_03',
17492 'ExtUtils::CBuilder' => '0.2703',
17493 'ExtUtils::CBuilder::Base'=> '0.2703_01',
17494 'ExtUtils::CBuilder::Platform::Unix'=> '0.2703',
17495 'ExtUtils::CBuilder::Platform::VMS'=> '0.2703',
17496 'ExtUtils::CBuilder::Platform::Windows'=> '0.2703',
17497 'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.2703',
17498 'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.2703',
17499 'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.2703',
17500 'ExtUtils::CBuilder::Platform::aix'=> '0.2703',
17501 'ExtUtils::CBuilder::Platform::cygwin'=> '0.2703',
17502 'ExtUtils::CBuilder::Platform::darwin'=> '0.2703',
17503 'ExtUtils::CBuilder::Platform::dec_osf'=> '0.2703',
17504 'ExtUtils::CBuilder::Platform::os2'=> '0.2703',
17505 'ExtUtils::Command' => '1.16',
17506 'ExtUtils::Command::MM' => '6.56',
17507 'ExtUtils::Constant' => '0.22',
17508 'ExtUtils::Constant::Base'=> '0.04',
17509 'ExtUtils::Constant::ProxySubs'=> '0.06',
17510 'ExtUtils::Constant::Utils'=> '0.02',
17511 'ExtUtils::Constant::XS'=> '0.03',
17512 'ExtUtils::Embed' => '1.28',
17513 'ExtUtils::Install' => '1.55',
17514 'ExtUtils::Installed' => '1.999_001',
17515 'ExtUtils::Liblist' => '6.56',
17516 'ExtUtils::Liblist::Kid'=> '6.56',
17517 'ExtUtils::MM' => '6.56',
17518 'ExtUtils::MM_AIX' => '6.56',
17519 'ExtUtils::MM_Any' => '6.56',
17520 'ExtUtils::MM_BeOS' => '6.56',
17521 'ExtUtils::MM_Cygwin' => '6.56',
17522 'ExtUtils::MM_DOS' => '6.56',
17523 'ExtUtils::MM_Darwin' => '6.56',
17524 'ExtUtils::MM_MacOS' => '6.56',
17525 'ExtUtils::MM_NW5' => '6.56',
17526 'ExtUtils::MM_OS2' => '6.56',
17527 'ExtUtils::MM_QNX' => '6.56',
17528 'ExtUtils::MM_UWIN' => '6.56',
17529 'ExtUtils::MM_Unix' => '6.5601',
17530 'ExtUtils::MM_VMS' => '6.56',
17531 'ExtUtils::MM_VOS' => '6.56',
17532 'ExtUtils::MM_Win32' => '6.56',
17533 'ExtUtils::MM_Win95' => '6.56',
17534 'ExtUtils::MY' => '6.56',
17535 'ExtUtils::MakeMaker' => '6.5601',
17536 'ExtUtils::MakeMaker::Config'=> '6.56',
17537 'ExtUtils::Manifest' => '1.58',
17538 'ExtUtils::Miniperl' => undef,
17539 'ExtUtils::Mkbootstrap' => '6.56',
17540 'ExtUtils::Mksymlists' => '6.56',
17541 'ExtUtils::Packlist' => '1.44',
17542 'ExtUtils::ParseXS' => '2.2207',
17543 'ExtUtils::XSSymSet' => '1.1',
17544 'ExtUtils::testlib' => '6.56',
17545 'Fatal' => '2.10',
17546 'Fcntl' => '1.06',
17547 'File::Basename' => '2.79',
17548 'File::CheckTree' => '4.4',
17549 'File::Compare' => '1.1006',
17550 'File::Copy' => '2.20',
17551 'File::DosGlob' => '1.02',
17552 'File::Fetch' => '0.24',
17553 'File::Find' => '1.17',
17554 'File::Glob' => '1.08',
17555 'File::GlobMapper' => '1.000',
17556 'File::Path' => '2.08_01',
17557 'File::Spec' => '3.31_01',
17558 'File::Spec::Cygwin' => '3.30',
17559 'File::Spec::Epoc' => '3.30',
17560 'File::Spec::Functions' => '3.30',
17561 'File::Spec::Mac' => '3.30',
17562 'File::Spec::OS2' => '3.30',
17563 'File::Spec::Unix' => '3.30',
17564 'File::Spec::VMS' => '3.30',
17565 'File::Spec::Win32' => '3.30',
17566 'File::Temp' => '0.22',
17567 'File::stat' => '1.03',
17568 'FileCache' => '1.08',
17569 'FileHandle' => '2.02',
17570 'Filter::Simple' => '0.84',
17571 'Filter::Util::Call' => '1.08',
17572 'FindBin' => '1.50',
17573 'GDBM_File' => '1.10',
17574 'Getopt::Long' => '2.38',
17575 'Getopt::Std' => '1.06',
17576 'Hash::Util' => '0.08',
17577 'Hash::Util::FieldHash' => '1.04',
17578 'I18N::Collate' => '1.01',
17579 'I18N::LangTags' => '0.35_01',
17580 'I18N::LangTags::Detect'=> '1.04',
17581 'I18N::LangTags::List' => '0.35_01',
17582 'I18N::Langinfo' => '0.04',
17583 'IO' => '1.25_02',
17584 'IO::Compress::Adapter::Bzip2'=> '2.030',
17585 'IO::Compress::Adapter::Deflate'=> '2.030',
17586 'IO::Compress::Adapter::Identity'=> '2.030',
17587 'IO::Compress::Base' => '2.030',
17588 'IO::Compress::Base::Common'=> '2.030',
17589 'IO::Compress::Bzip2' => '2.030',
17590 'IO::Compress::Deflate' => '2.030',
17591 'IO::Compress::Gzip' => '2.030',
17592 'IO::Compress::Gzip::Constants'=> '2.030',
17593 'IO::Compress::RawDeflate'=> '2.030',
17594 'IO::Compress::Zip' => '2.030',
17595 'IO::Compress::Zip::Constants'=> '2.030',
17596 'IO::Compress::Zlib::Constants'=> '2.030',
17597 'IO::Compress::Zlib::Extra'=> '2.030',
17598 'IO::Dir' => '1.07',
17599 'IO::File' => '1.14',
17600 'IO::Handle' => '1.28',
17601 'IO::Pipe' => '1.13',
17602 'IO::Poll' => '0.07',
17603 'IO::Seekable' => '1.10',
17604 'IO::Select' => '1.17',
17605 'IO::Socket' => '1.32',
17606 'IO::Socket::INET' => '1.31',
17607 'IO::Socket::UNIX' => '1.23',
17608 'IO::Uncompress::Adapter::Bunzip2'=> '2.030',
17609 'IO::Uncompress::Adapter::Identity'=> '2.030',
17610 'IO::Uncompress::Adapter::Inflate'=> '2.030',
17611 'IO::Uncompress::AnyInflate'=> '2.030',
17612 'IO::Uncompress::AnyUncompress'=> '2.030',
17613 'IO::Uncompress::Base' => '2.030',
17614 'IO::Uncompress::Bunzip2'=> '2.030',
17615 'IO::Uncompress::Gunzip'=> '2.030',
17616 'IO::Uncompress::Inflate'=> '2.030',
17617 'IO::Uncompress::RawInflate'=> '2.030',
17618 'IO::Uncompress::Unzip' => '2.030',
17619 'IO::Zlib' => '1.10',
17620 'IPC::Cmd' => '0.60',
17621 'IPC::Msg' => '2.03',
17622 'IPC::Open2' => '1.03',
17623 'IPC::Open3' => '1.06',
17624 'IPC::Semaphore' => '2.03',
17625 'IPC::SharedMem' => '2.03',
17626 'IPC::SysV' => '2.03',
17627 'List::Util' => '1.23',
17628 'List::Util::PP' => '1.23',
17629 'List::Util::XS' => '1.23',
17630 'Locale::Codes' => '3.13',
17631 'Locale::Codes::Country'=> '3.13',
17632 'Locale::Codes::Currency'=> '3.13',
17633 'Locale::Codes::Language'=> '3.13',
17634 'Locale::Codes::Script' => '3.13',
17635 'Locale::Constants' => '3.13',
17636 'Locale::Country' => '3.13',
17637 'Locale::Currency' => '3.13',
17638 'Locale::Language' => '3.13',
17639 'Locale::Maketext' => '1.15',
17640 'Locale::Maketext::Guts'=> undef,
17641 'Locale::Maketext::GutsLoader'=> undef,
17642 'Locale::Maketext::Simple'=> '0.21',
17643 'Locale::Script' => '3.13',
17644 'Log::Message' => '0.02',
17645 'Log::Message::Config' => '0.01',
17646 'Log::Message::Handlers'=> undef,
17647 'Log::Message::Item' => undef,
17648 'Log::Message::Simple' => '0.06',
17649 'MIME::Base64' => '3.09',
17650 'MIME::QuotedPrint' => '3.09',
17651 'Math::BigFloat' => '1.60',
17652 'Math::BigFloat::Trace' => '0.01',
17653 'Math::BigInt' => '1.89_01',
17654 'Math::BigInt::Calc' => '0.52',
17655 'Math::BigInt::CalcEmu' => '0.05',
17656 'Math::BigInt::FastCalc'=> '0.19',
17657 'Math::BigInt::Trace' => '0.01',
17658 'Math::BigRat' => '0.24',
17659 'Math::Complex' => '1.56',
17660 'Math::Trig' => '1.2',
17661 'Memoize' => '1.01_03',
17662 'Memoize::AnyDBM_File' => '0.65',
17663 'Memoize::Expire' => '1.00',
17664 'Memoize::ExpireFile' => '1.01',
17665 'Memoize::ExpireTest' => '0.65',
17666 'Memoize::NDBM_File' => '0.65',
17667 'Memoize::SDBM_File' => '0.65',
17668 'Memoize::Storable' => '0.65',
17669 'Module::Build' => '0.3607',
17670 'Module::Build::Base' => '0.3607',
17671 'Module::Build::Compat' => '0.3607',
17672 'Module::Build::Config' => '0.3607',
17673 'Module::Build::ConfigData'=> undef,
17674 'Module::Build::Cookbook'=> '0.3607',
17675 'Module::Build::Dumper' => '0.3607',
17676 'Module::Build::ModuleInfo'=> '0.3607',
17677 'Module::Build::Notes' => '0.3607',
17678 'Module::Build::PPMMaker'=> '0.3607',
17679 'Module::Build::Platform::Amiga'=> '0.3607',
17680 'Module::Build::Platform::Default'=> '0.3607',
17681 'Module::Build::Platform::EBCDIC'=> '0.3607',
17682 'Module::Build::Platform::MPEiX'=> '0.3607',
17683 'Module::Build::Platform::MacOS'=> '0.3607',
17684 'Module::Build::Platform::RiscOS'=> '0.3607',
17685 'Module::Build::Platform::Unix'=> '0.3607',
17686 'Module::Build::Platform::VMS'=> '0.3607',
17687 'Module::Build::Platform::VOS'=> '0.3607',
17688 'Module::Build::Platform::Windows'=> '0.3607',
17689 'Module::Build::Platform::aix'=> '0.3607',
17690 'Module::Build::Platform::cygwin'=> '0.3607',
17691 'Module::Build::Platform::darwin'=> '0.3607',
17692 'Module::Build::Platform::os2'=> '0.3607',
17693 'Module::Build::PodParser'=> '0.3607',
17694 'Module::Build::Version'=> '0.77',
17695 'Module::Build::YAML' => '1.40',
17696 'Module::CoreList' => '2.37',
17697 'Module::Load' => '0.18',
17698 'Module::Load::Conditional'=> '0.38',
17699 'Module::Loaded' => '0.06',
17700 'Module::Pluggable' => '3.9',
17701 'Module::Pluggable::Object'=> '3.9',
17702 'Moped::Msg' => '0.01',
17703 'NDBM_File' => '1.08',
17704 'NEXT' => '0.64',
17705 'Net::Cmd' => '2.29',
17706 'Net::Config' => '1.11',
17707 'Net::Domain' => '2.20',
17708 'Net::FTP' => '2.77',
17709 'Net::FTP::A' => '1.18',
17710 'Net::FTP::E' => '0.01',
17711 'Net::FTP::I' => '1.12',
17712 'Net::FTP::L' => '0.01',
17713 'Net::FTP::dataconn' => '0.11',
17714 'Net::NNTP' => '2.24',
17715 'Net::Netrc' => '2.12',
17716 'Net::POP3' => '2.29',
17717 'Net::Ping' => '2.36',
17718 'Net::SMTP' => '2.31',
17719 'Net::Time' => '2.10',
17720 'Net::hostent' => '1.01',
17721 'Net::netent' => '1.00',
17722 'Net::protoent' => '1.00',
17723 'Net::servent' => '1.01',
17724 'O' => '1.01',
17725 'ODBM_File' => '1.07',
17726 'Object::Accessor' => '0.36',
17727 'Opcode' => '1.15',
17728 'POSIX' => '1.19',
17729 'Package::Constants' => '0.02',
17730 'Params::Check' => '0.26',
17731 'Parse::CPAN::Meta' => '1.40',
17732 'PerlIO' => '1.06',
17733 'PerlIO::encoding' => '0.12',
17734 'PerlIO::scalar' => '0.08',
17735 'PerlIO::via' => '0.09',
17736 'PerlIO::via::QuotedPrint'=> '0.06',
17737 'Pod::Checker' => '1.45',
17738 'Pod::Escapes' => '1.04',
17739 'Pod::Find' => '1.35',
17740 'Pod::Functions' => '1.04',
17741 'Pod::Html' => '1.09',
17742 'Pod::InputObjects' => '1.31',
17743 'Pod::LaTeX' => '0.58',
17744 'Pod::Man' => '2.23',
17745 'Pod::ParseLink' => '1.10',
17746 'Pod::ParseUtils' => '1.36',
17747 'Pod::Parser' => '1.37',
17748 'Pod::Perldoc' => '3.15_02',
17749 'Pod::Perldoc::BaseTo' => undef,
17750 'Pod::Perldoc::GetOptsOO'=> undef,
17751 'Pod::Perldoc::ToChecker'=> undef,
17752 'Pod::Perldoc::ToMan' => undef,
17753 'Pod::Perldoc::ToNroff' => undef,
17754 'Pod::Perldoc::ToPod' => undef,
17755 'Pod::Perldoc::ToRtf' => undef,
17756 'Pod::Perldoc::ToText' => undef,
17757 'Pod::Perldoc::ToTk' => undef,
17758 'Pod::Perldoc::ToXml' => undef,
17759 'Pod::PlainText' => '2.04',
17760 'Pod::Select' => '1.36',
17761 'Pod::Simple' => '3.14',
17762 'Pod::Simple::BlackBox' => '3.14',
17763 'Pod::Simple::Checker' => '3.14',
17764 'Pod::Simple::Debug' => '3.14',
17765 'Pod::Simple::DumpAsText'=> '3.14',
17766 'Pod::Simple::DumpAsXML'=> '3.14',
17767 'Pod::Simple::HTML' => '3.14',
17768 'Pod::Simple::HTMLBatch'=> '3.14',
17769 'Pod::Simple::HTMLLegacy'=> '5.01',
17770 'Pod::Simple::LinkSection'=> '3.14',
17771 'Pod::Simple::Methody' => '3.14',
17772 'Pod::Simple::Progress' => '3.14',
17773 'Pod::Simple::PullParser'=> '3.14',
17774 'Pod::Simple::PullParserEndToken'=> '3.14',
17775 'Pod::Simple::PullParserStartToken'=> '3.14',
17776 'Pod::Simple::PullParserTextToken'=> '3.14',
17777 'Pod::Simple::PullParserToken'=> '3.14',
17778 'Pod::Simple::RTF' => '3.14',
17779 'Pod::Simple::Search' => '3.14',
17780 'Pod::Simple::SimpleTree'=> '3.14',
17781 'Pod::Simple::Text' => '3.14',
17782 'Pod::Simple::TextContent'=> '3.14',
17783 'Pod::Simple::TiedOutFH'=> '3.14',
17784 'Pod::Simple::Transcode'=> '3.14',
17785 'Pod::Simple::TranscodeDumb'=> '3.14',
17786 'Pod::Simple::TranscodeSmart'=> '3.14',
17787 'Pod::Simple::XHTML' => '3.14',
17788 'Pod::Simple::XMLOutStream'=> '3.14',
17789 'Pod::Text' => '3.14',
17790 'Pod::Text::Color' => '2.06',
17791 'Pod::Text::Overstrike' => '2.04',
17792 'Pod::Text::Termcap' => '2.06',
17793 'Pod::Usage' => '1.36',
17794 'SDBM_File' => '1.06',
17795 'Safe' => '2.27',
17796 'Scalar::Util' => '1.23',
17797 'Scalar::Util::PP' => '1.23',
17798 'Search::Dict' => '1.03',
17799 'SelectSaver' => '1.02',
17800 'SelfLoader' => '1.17',
17801 'Shell' => '0.72_01',
17802 'Socket' => '1.89',
17803 'Storable' => '2.22',
17804 'Symbol' => '1.07',
17805 'Sys::Hostname' => '1.11',
17806 'Sys::Syslog' => '0.27',
17807 'Sys::Syslog::win32::Win32'=> undef,
17808 'TAP::Base' => '3.22',
17809 'TAP::Formatter::Base' => '3.22',
17810 'TAP::Formatter::Color' => '3.22',
17811 'TAP::Formatter::Console'=> '3.22',
17812 'TAP::Formatter::Console::ParallelSession'=> '3.22',
17813 'TAP::Formatter::Console::Session'=> '3.22',
17814 'TAP::Formatter::File' => '3.22',
17815 'TAP::Formatter::File::Session'=> '3.22',
17816 'TAP::Formatter::Session'=> '3.22',
17817 'TAP::Harness' => '3.22',
17818 'TAP::Object' => '3.22',
17819 'TAP::Parser' => '3.22',
17820 'TAP::Parser::Aggregator'=> '3.22',
17821 'TAP::Parser::Grammar' => '3.22',
17822 'TAP::Parser::Iterator' => '3.22',
17823 'TAP::Parser::Iterator::Array'=> '3.22',
17824 'TAP::Parser::Iterator::Process'=> '3.22',
17825 'TAP::Parser::Iterator::Stream'=> '3.22',
17826 'TAP::Parser::IteratorFactory'=> '3.22',
17827 'TAP::Parser::Multiplexer'=> '3.22',
17828 'TAP::Parser::Result' => '3.22',
17829 'TAP::Parser::Result::Bailout'=> '3.22',
17830 'TAP::Parser::Result::Comment'=> '3.22',
17831 'TAP::Parser::Result::Plan'=> '3.22',
17832 'TAP::Parser::Result::Pragma'=> '3.22',
17833 'TAP::Parser::Result::Test'=> '3.22',
17834 'TAP::Parser::Result::Unknown'=> '3.22',
17835 'TAP::Parser::Result::Version'=> '3.22',
17836 'TAP::Parser::Result::YAML'=> '3.22',
17837 'TAP::Parser::ResultFactory'=> '3.22',
17838 'TAP::Parser::Scheduler'=> '3.22',
17839 'TAP::Parser::Scheduler::Job'=> '3.22',
17840 'TAP::Parser::Scheduler::Spinner'=> '3.22',
17841 'TAP::Parser::Source' => '3.22',
17842 'TAP::Parser::SourceHandler'=> '3.22',
17843 'TAP::Parser::SourceHandler::Executable'=> '3.22',
17844 'TAP::Parser::SourceHandler::File'=> '3.22',
17845 'TAP::Parser::SourceHandler::Handle'=> '3.22',
17846 'TAP::Parser::SourceHandler::Perl'=> '3.22',
17847 'TAP::Parser::SourceHandler::RawTAP'=> '3.22',
17848 'TAP::Parser::Utils' => '3.22',
17849 'TAP::Parser::YAMLish::Reader'=> '3.22',
17850 'TAP::Parser::YAMLish::Writer'=> '3.22',
17851 'Term::ANSIColor' => '3.00',
17852 'Term::Cap' => '1.12',
17853 'Term::Complete' => '1.402',
17854 'Term::ReadLine' => '1.07',
17855 'Term::UI' => '0.20',
17856 'Term::UI::History' => undef,
17857 'Test' => '1.25_02',
17858 'Test::Builder' => '0.96',
17859 'Test::Builder::Module' => '0.96',
17860 'Test::Builder::Tester' => '1.20',
17861 'Test::Builder::Tester::Color'=> '1.20',
17862 'Test::Harness' => '3.22',
17863 'Test::More' => '0.96',
17864 'Test::Simple' => '0.96',
17865 'Text::Abbrev' => '1.01',
17866 'Text::Balanced' => '2.02',
17867 'Text::ParseWords' => '3.27',
17868 'Text::Soundex' => '3.03_01',
17869 'Text::Tabs' => '2009.0305',
17870 'Text::Wrap' => '2009.0305',
17871 'Thread' => '3.02',
17872 'Thread::Queue' => '2.11',
17873 'Thread::Semaphore' => '2.11',
17874 'Tie::Array' => '1.04',
17875 'Tie::File' => '0.97_02',
17876 'Tie::Handle' => '4.2',
17877 'Tie::Hash' => '1.03',
17878 'Tie::Hash::NamedCapture'=> '0.06',
17879 'Tie::Memoize' => '1.1',
17880 'Tie::RefHash' => '1.38',
17881 'Tie::Scalar' => '1.02',
17882 'Tie::StdHandle' => '4.2',
17883 'Tie::SubstrHash' => '1.00',
17884 'Time::HiRes' => '1.9721',
17885 'Time::Local' => '1.1901_01',
17886 'Time::Piece' => '1.20_01',
17887 'Time::Piece::Seconds' => undef,
17888 'Time::Seconds' => undef,
17889 'Time::gmtime' => '1.03',
17890 'Time::localtime' => '1.02',
17891 'Time::tm' => '1.00',
17892 'UNIVERSAL' => '1.07',
17893 'Unicode' => '5.2.0',
17894 'Unicode::Collate' => '0.56',
17895 'Unicode::Collate::Locale'=> '0.56',
17896 'Unicode::Normalize' => '1.06',
17897 'Unicode::UCD' => '0.29',
17898 'User::grent' => '1.01',
17899 'User::pwent' => '1.00',
17900 'VMS::DCLsym' => '1.04',
17901 'VMS::Filespec' => '1.12',
17902 'VMS::Stdio' => '2.4',
17903 'Win32' => '0.39',
17904 'Win32API::File' => '0.1101',
17905 'Win32API::File::ExtUtils::Myconst2perl'=> '1',
17906 'Win32CORE' => '0.02',
17907 'XS::APItest' => '0.20',
17908 'XS::APItest::KeywordRPN'=> '0.004',
17909 'XS::Typemap' => '0.03',
17910 'XSLoader' => '0.10',
17911 'XSLoader::XSLoader' => '0.10',
17912 'attributes' => '0.12',
17913 'autodie' => '2.10',
17914 'autodie::exception' => '2.10',
17915 'autodie::exception::system'=> '2.10',
17916 'autodie::hints' => '2.10',
17917 'autouse' => '1.06',
17918 'base' => '2.15',
17919 'bigint' => '0.23',
17920 'bignum' => '0.23',
17921 'bigrat' => '0.23',
17922 'blib' => '1.05',
17923 'bytes' => '1.04',
17924 'charnames' => '1.15',
17925 'constant' => '1.20',
17926 'deprecate' => '0.01',
17927 'diagnostics' => '1.20',
17928 'encoding' => '2.6_01',
17929 'encoding::warnings' => '0.11',
17930 'feature' => '1.18',
17931 'fields' => '2.15',
17932 'filetest' => '1.02',
17933 'if' => '0.05',
17934 'inc::latest' => '0.3607',
17935 'integer' => '1.00',
17936 'less' => '0.03',
17937 'lib' => '0.63',
17938 'locale' => '1.00',
17939 'mro' => '1.03',
17940 'open' => '1.07',
17941 'ops' => '1.02',
17942 'overload' => '1.10',
17943 'overload::numbers' => undef,
17944 'overloading' => '0.01',
17945 'parent' => '0.223',
17946 're' => '0.12',
17947 'sigtrap' => '1.04',
17948 'sort' => '2.01',
17949 'strict' => '1.04',
17950 'subs' => '1.00',
17951 'threads' => '1.77_03',
17952 'threads::shared' => '1.33_02',
17953 'utf8' => '1.08',
17954 'vars' => '1.02',
17955 'version' => '0.82',
17956 'vmsish' => '1.02',
17957 'warnings' => '1.10',
17958 'warnings::register' => '1.01',
17960 5.012002 => {
17961 'AnyDBM_File' => '1.00',
17962 'App::Cpan' => '1.5701',
17963 'App::Prove' => '3.17',
17964 'App::Prove::State' => '3.17',
17965 'App::Prove::State::Result'=> '3.17',
17966 'App::Prove::State::Result::Test'=> '3.17',
17967 'Archive::Extract' => '0.38',
17968 'Archive::Tar' => '1.54',
17969 'Archive::Tar::Constant'=> '0.02',
17970 'Archive::Tar::File' => '0.02',
17971 'Attribute::Handlers' => '0.87',
17972 'AutoLoader' => '5.70',
17973 'AutoSplit' => '1.06',
17974 'B' => '1.23',
17975 'B::Concise' => '0.78',
17976 'B::Debug' => '1.12',
17977 'B::Deparse' => '0.97',
17978 'B::Lint' => '1.11_01',
17979 'B::Lint::Debug' => '0.01',
17980 'B::Showlex' => '1.02',
17981 'B::Terse' => '1.05',
17982 'B::Xref' => '1.02',
17983 'Benchmark' => '1.11',
17984 'CGI' => '3.49',
17985 'CGI::Apache' => '1.01',
17986 'CGI::Carp' => '3.45',
17987 'CGI::Cookie' => '1.29',
17988 'CGI::Fast' => '1.08',
17989 'CGI::Pretty' => '3.46',
17990 'CGI::Push' => '1.04',
17991 'CGI::Switch' => '1.01',
17992 'CGI::Util' => '3.48',
17993 'CPAN' => '1.94_56',
17994 'CPAN::Author' => '5.5',
17995 'CPAN::Bundle' => '5.5',
17996 'CPAN::CacheMgr' => '5.5',
17997 'CPAN::Complete' => '5.5',
17998 'CPAN::Debug' => '5.5001',
17999 'CPAN::DeferredCode' => '5.50',
18000 'CPAN::Distribution' => '1.9456_01',
18001 'CPAN::Distroprefs' => '6',
18002 'CPAN::Distrostatus' => '5.5',
18003 'CPAN::Exception::RecursiveDependency'=> '5.5',
18004 'CPAN::Exception::blocked_urllist'=> '1.0',
18005 'CPAN::Exception::yaml_not_installed'=> '5.5',
18006 'CPAN::FTP' => '5.5004',
18007 'CPAN::FTP::netrc' => '1.00',
18008 'CPAN::FirstTime' => '5.5301',
18009 'CPAN::HandleConfig' => '5.5001',
18010 'CPAN::Index' => '1.94',
18011 'CPAN::InfoObj' => '5.5',
18012 'CPAN::Kwalify' => '5.50',
18013 'CPAN::LWP::UserAgent' => '1.94',
18014 'CPAN::Mirrors' => '1.77',
18015 'CPAN::Module' => '5.5',
18016 'CPAN::Nox' => '5.50',
18017 'CPAN::Prompt' => '5.5',
18018 'CPAN::Queue' => '5.5',
18019 'CPAN::Shell' => '5.5001',
18020 'CPAN::Tarzip' => '5.5011',
18021 'CPAN::URL' => '5.5',
18022 'CPAN::Version' => '5.5',
18023 'CPANPLUS' => '0.90',
18024 'CPANPLUS::Backend' => undef,
18025 'CPANPLUS::Backend::RV' => undef,
18026 'CPANPLUS::Config' => undef,
18027 'CPANPLUS::Configure' => undef,
18028 'CPANPLUS::Configure::Setup'=> undef,
18029 'CPANPLUS::Dist' => undef,
18030 'CPANPLUS::Dist::Autobundle'=> undef,
18031 'CPANPLUS::Dist::Base' => undef,
18032 'CPANPLUS::Dist::Build' => '0.46',
18033 'CPANPLUS::Dist::Build::Constants'=> '0.46',
18034 'CPANPLUS::Dist::MM' => undef,
18035 'CPANPLUS::Dist::Sample'=> undef,
18036 'CPANPLUS::Error' => undef,
18037 'CPANPLUS::Internals' => '0.90',
18038 'CPANPLUS::Internals::Constants'=> undef,
18039 'CPANPLUS::Internals::Constants::Report'=> undef,
18040 'CPANPLUS::Internals::Extract'=> undef,
18041 'CPANPLUS::Internals::Fetch'=> undef,
18042 'CPANPLUS::Internals::Report'=> undef,
18043 'CPANPLUS::Internals::Search'=> undef,
18044 'CPANPLUS::Internals::Source'=> undef,
18045 'CPANPLUS::Internals::Source::Memory'=> undef,
18046 'CPANPLUS::Internals::Source::SQLite'=> undef,
18047 'CPANPLUS::Internals::Source::SQLite::Tie'=> undef,
18048 'CPANPLUS::Internals::Utils'=> undef,
18049 'CPANPLUS::Internals::Utils::Autoflush'=> undef,
18050 'CPANPLUS::Module' => undef,
18051 'CPANPLUS::Module::Author'=> undef,
18052 'CPANPLUS::Module::Author::Fake'=> undef,
18053 'CPANPLUS::Module::Checksums'=> undef,
18054 'CPANPLUS::Module::Fake'=> undef,
18055 'CPANPLUS::Module::Signature'=> undef,
18056 'CPANPLUS::Selfupdate' => undef,
18057 'CPANPLUS::Shell' => undef,
18058 'CPANPLUS::Shell::Classic'=> '0.0562',
18059 'CPANPLUS::Shell::Default'=> '0.90',
18060 'CPANPLUS::Shell::Default::Plugins::CustomSource'=> undef,
18061 'CPANPLUS::Shell::Default::Plugins::Remote'=> undef,
18062 'CPANPLUS::Shell::Default::Plugins::Source'=> undef,
18063 'Carp' => '1.17',
18064 'Carp::Heavy' => '1.17',
18065 'Class::ISA' => '0.36',
18066 'Class::Struct' => '0.63',
18067 'Compress::Raw::Bzip2' => '2.024',
18068 'Compress::Raw::Zlib' => '2.024',
18069 'Compress::Zlib' => '2.024',
18070 'Config' => undef,
18071 'Config::Extensions' => '0.01',
18072 'Cwd' => '3.31',
18073 'DB' => '1.02',
18074 'DBM_Filter' => '0.03',
18075 'DBM_Filter::compress' => '0.02',
18076 'DBM_Filter::encode' => '0.02',
18077 'DBM_Filter::int32' => '0.02',
18078 'DBM_Filter::null' => '0.02',
18079 'DBM_Filter::utf8' => '0.02',
18080 'DB_File' => '1.820',
18081 'Data::Dumper' => '2.125',
18082 'Devel::DProf' => '20080331.00',
18083 'Devel::DProf::dprof::V'=> undef,
18084 'Devel::InnerPackage' => '0.3',
18085 'Devel::PPPort' => '3.19',
18086 'Devel::Peek' => '1.04',
18087 'Devel::SelfStubber' => '1.03',
18088 'Digest' => '1.16',
18089 'Digest::MD5' => '2.39',
18090 'Digest::SHA' => '5.47',
18091 'Digest::base' => '1.16',
18092 'Digest::file' => '1.16',
18093 'DirHandle' => '1.03',
18094 'Dumpvalue' => '1.13',
18095 'DynaLoader' => '1.10',
18096 'Encode' => '2.39',
18097 'Encode::Alias' => '2.12',
18098 'Encode::Byte' => '2.04',
18099 'Encode::CJKConstants' => '2.02',
18100 'Encode::CN' => '2.03',
18101 'Encode::CN::HZ' => '2.05',
18102 'Encode::Config' => '2.05',
18103 'Encode::EBCDIC' => '2.02',
18104 'Encode::Encoder' => '2.01',
18105 'Encode::Encoding' => '2.05',
18106 'Encode::GSM0338' => '2.01',
18107 'Encode::Guess' => '2.03',
18108 'Encode::JP' => '2.04',
18109 'Encode::JP::H2Z' => '2.02',
18110 'Encode::JP::JIS7' => '2.04',
18111 'Encode::KR' => '2.03',
18112 'Encode::KR::2022_KR' => '2.02',
18113 'Encode::MIME::Header' => '2.11',
18114 'Encode::MIME::Header::ISO_2022_JP'=> '1.03',
18115 'Encode::MIME::Name' => '1.01',
18116 'Encode::Symbol' => '2.02',
18117 'Encode::TW' => '2.03',
18118 'Encode::Unicode' => '2.07',
18119 'Encode::Unicode::UTF7' => '2.04',
18120 'English' => '1.04',
18121 'Env' => '1.01',
18122 'Errno' => '1.11',
18123 'Exporter' => '5.64_01',
18124 'Exporter::Heavy' => '5.64_01',
18125 'ExtUtils::CBuilder' => '0.27',
18126 'ExtUtils::CBuilder::Base'=> '0.27',
18127 'ExtUtils::CBuilder::Platform::Unix'=> '0.27',
18128 'ExtUtils::CBuilder::Platform::VMS'=> '0.27',
18129 'ExtUtils::CBuilder::Platform::Windows'=> '0.27',
18130 'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.27',
18131 'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.27',
18132 'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.27',
18133 'ExtUtils::CBuilder::Platform::aix'=> '0.27',
18134 'ExtUtils::CBuilder::Platform::cygwin'=> '0.27',
18135 'ExtUtils::CBuilder::Platform::darwin'=> '0.27',
18136 'ExtUtils::CBuilder::Platform::dec_osf'=> '0.27',
18137 'ExtUtils::CBuilder::Platform::os2'=> '0.27',
18138 'ExtUtils::Command' => '1.16',
18139 'ExtUtils::Command::MM' => '6.56',
18140 'ExtUtils::Constant' => '0.22',
18141 'ExtUtils::Constant::Base'=> '0.04',
18142 'ExtUtils::Constant::ProxySubs'=> '0.06',
18143 'ExtUtils::Constant::Utils'=> '0.02',
18144 'ExtUtils::Constant::XS'=> '0.03',
18145 'ExtUtils::Embed' => '1.28',
18146 'ExtUtils::Install' => '1.55',
18147 'ExtUtils::Installed' => '1.999_001',
18148 'ExtUtils::Liblist' => '6.56',
18149 'ExtUtils::Liblist::Kid'=> '6.56',
18150 'ExtUtils::MM' => '6.56',
18151 'ExtUtils::MM_AIX' => '6.56',
18152 'ExtUtils::MM_Any' => '6.56',
18153 'ExtUtils::MM_BeOS' => '6.56',
18154 'ExtUtils::MM_Cygwin' => '6.56',
18155 'ExtUtils::MM_DOS' => '6.56',
18156 'ExtUtils::MM_Darwin' => '6.56',
18157 'ExtUtils::MM_MacOS' => '6.56',
18158 'ExtUtils::MM_NW5' => '6.56',
18159 'ExtUtils::MM_OS2' => '6.56',
18160 'ExtUtils::MM_QNX' => '6.56',
18161 'ExtUtils::MM_UWIN' => '6.56',
18162 'ExtUtils::MM_Unix' => '6.56',
18163 'ExtUtils::MM_VMS' => '6.56',
18164 'ExtUtils::MM_VOS' => '6.56',
18165 'ExtUtils::MM_Win32' => '6.56',
18166 'ExtUtils::MM_Win95' => '6.56',
18167 'ExtUtils::MY' => '6.56',
18168 'ExtUtils::MakeMaker' => '6.56',
18169 'ExtUtils::MakeMaker::Config'=> '6.56',
18170 'ExtUtils::Manifest' => '1.57',
18171 'ExtUtils::Miniperl' => undef,
18172 'ExtUtils::Mkbootstrap' => '6.56',
18173 'ExtUtils::Mksymlists' => '6.56',
18174 'ExtUtils::Packlist' => '1.44',
18175 'ExtUtils::ParseXS' => '2.21',
18176 'ExtUtils::XSSymSet' => '1.1',
18177 'ExtUtils::testlib' => '6.56',
18178 'Fatal' => '2.06_01',
18179 'Fcntl' => '1.06',
18180 'File::Basename' => '2.78',
18181 'File::CheckTree' => '4.4',
18182 'File::Compare' => '1.1006',
18183 'File::Copy' => '2.18',
18184 'File::DosGlob' => '1.01',
18185 'File::Fetch' => '0.24',
18186 'File::Find' => '1.15',
18187 'File::Glob' => '1.07',
18188 'File::GlobMapper' => '1.000',
18189 'File::Path' => '2.08_01',
18190 'File::Spec' => '3.31_01',
18191 'File::Spec::Cygwin' => '3.30',
18192 'File::Spec::Epoc' => '3.30',
18193 'File::Spec::Functions' => '3.30',
18194 'File::Spec::Mac' => '3.30',
18195 'File::Spec::OS2' => '3.30',
18196 'File::Spec::Unix' => '3.30',
18197 'File::Spec::VMS' => '3.30',
18198 'File::Spec::Win32' => '3.30',
18199 'File::Temp' => '0.22',
18200 'File::stat' => '1.02',
18201 'FileCache' => '1.08',
18202 'FileHandle' => '2.02',
18203 'Filter::Simple' => '0.84',
18204 'Filter::Util::Call' => '1.08',
18205 'FindBin' => '1.50',
18206 'GDBM_File' => '1.10',
18207 'Getopt::Long' => '2.38',
18208 'Getopt::Std' => '1.06',
18209 'Hash::Util' => '0.07',
18210 'Hash::Util::FieldHash' => '1.04',
18211 'I18N::Collate' => '1.01',
18212 'I18N::LangTags' => '0.35',
18213 'I18N::LangTags::Detect'=> '1.04',
18214 'I18N::LangTags::List' => '0.35',
18215 'I18N::Langinfo' => '0.03',
18216 'IO' => '1.25_02',
18217 'IO::Compress::Adapter::Bzip2'=> '2.024',
18218 'IO::Compress::Adapter::Deflate'=> '2.024',
18219 'IO::Compress::Adapter::Identity'=> '2.024',
18220 'IO::Compress::Base' => '2.024',
18221 'IO::Compress::Base::Common'=> '2.024',
18222 'IO::Compress::Bzip2' => '2.024',
18223 'IO::Compress::Deflate' => '2.024',
18224 'IO::Compress::Gzip' => '2.024',
18225 'IO::Compress::Gzip::Constants'=> '2.024',
18226 'IO::Compress::RawDeflate'=> '2.024',
18227 'IO::Compress::Zip' => '2.024',
18228 'IO::Compress::Zip::Constants'=> '2.024',
18229 'IO::Compress::Zlib::Constants'=> '2.024',
18230 'IO::Compress::Zlib::Extra'=> '2.024',
18231 'IO::Dir' => '1.07',
18232 'IO::File' => '1.14',
18233 'IO::Handle' => '1.28',
18234 'IO::Pipe' => '1.13',
18235 'IO::Poll' => '0.07',
18236 'IO::Seekable' => '1.10',
18237 'IO::Select' => '1.17',
18238 'IO::Socket' => '1.31',
18239 'IO::Socket::INET' => '1.31',
18240 'IO::Socket::UNIX' => '1.23',
18241 'IO::Uncompress::Adapter::Bunzip2'=> '2.024',
18242 'IO::Uncompress::Adapter::Identity'=> '2.024',
18243 'IO::Uncompress::Adapter::Inflate'=> '2.024',
18244 'IO::Uncompress::AnyInflate'=> '2.024',
18245 'IO::Uncompress::AnyUncompress'=> '2.024',
18246 'IO::Uncompress::Base' => '2.024',
18247 'IO::Uncompress::Bunzip2'=> '2.024',
18248 'IO::Uncompress::Gunzip'=> '2.024',
18249 'IO::Uncompress::Inflate'=> '2.024',
18250 'IO::Uncompress::RawInflate'=> '2.024',
18251 'IO::Uncompress::Unzip' => '2.024',
18252 'IO::Zlib' => '1.10',
18253 'IPC::Cmd' => '0.54',
18254 'IPC::Msg' => '2.01',
18255 'IPC::Open2' => '1.03',
18256 'IPC::Open3' => '1.05',
18257 'IPC::Semaphore' => '2.01',
18258 'IPC::SharedMem' => '2.01',
18259 'IPC::SysV' => '2.01',
18260 'List::Util' => '1.22',
18261 'List::Util::PP' => '1.22',
18262 'List::Util::XS' => '1.22',
18263 'Locale::Constants' => '2.07',
18264 'Locale::Country' => '2.07',
18265 'Locale::Currency' => '2.07',
18266 'Locale::Language' => '2.07',
18267 'Locale::Maketext' => '1.14',
18268 'Locale::Maketext::Guts'=> '1.13',
18269 'Locale::Maketext::GutsLoader'=> '1.13',
18270 'Locale::Maketext::Simple'=> '0.21',
18271 'Locale::Script' => '2.07',
18272 'Log::Message' => '0.02',
18273 'Log::Message::Config' => '0.01',
18274 'Log::Message::Handlers'=> undef,
18275 'Log::Message::Item' => undef,
18276 'Log::Message::Simple' => '0.06',
18277 'MIME::Base64' => '3.08',
18278 'MIME::QuotedPrint' => '3.08',
18279 'Math::BigFloat' => '1.60',
18280 'Math::BigFloat::Trace' => '0.01',
18281 'Math::BigInt' => '1.89_01',
18282 'Math::BigInt::Calc' => '0.52',
18283 'Math::BigInt::CalcEmu' => '0.05',
18284 'Math::BigInt::FastCalc'=> '0.19',
18285 'Math::BigInt::Trace' => '0.01',
18286 'Math::BigRat' => '0.24',
18287 'Math::Complex' => '1.56',
18288 'Math::Trig' => '1.2',
18289 'Memoize' => '1.01_03',
18290 'Memoize::AnyDBM_File' => '0.65',
18291 'Memoize::Expire' => '1.00',
18292 'Memoize::ExpireFile' => '1.01',
18293 'Memoize::ExpireTest' => '0.65',
18294 'Memoize::NDBM_File' => '0.65',
18295 'Memoize::SDBM_File' => '0.65',
18296 'Memoize::Storable' => '0.65',
18297 'Module::Build' => '0.3603',
18298 'Module::Build::Base' => '0.3603',
18299 'Module::Build::Compat' => '0.3603',
18300 'Module::Build::Config' => '0.3603',
18301 'Module::Build::ConfigData'=> undef,
18302 'Module::Build::Cookbook'=> '0.3603',
18303 'Module::Build::Dumper' => '0.3603',
18304 'Module::Build::ModuleInfo'=> '0.3603',
18305 'Module::Build::Notes' => '0.3603',
18306 'Module::Build::PPMMaker'=> '0.3603',
18307 'Module::Build::Platform::Amiga'=> '0.3603',
18308 'Module::Build::Platform::Default'=> '0.3603',
18309 'Module::Build::Platform::EBCDIC'=> '0.3603',
18310 'Module::Build::Platform::MPEiX'=> '0.3603',
18311 'Module::Build::Platform::MacOS'=> '0.3603',
18312 'Module::Build::Platform::RiscOS'=> '0.3603',
18313 'Module::Build::Platform::Unix'=> '0.3603',
18314 'Module::Build::Platform::VMS'=> '0.3603',
18315 'Module::Build::Platform::VOS'=> '0.3603',
18316 'Module::Build::Platform::Windows'=> '0.3603',
18317 'Module::Build::Platform::aix'=> '0.3603',
18318 'Module::Build::Platform::cygwin'=> '0.3603',
18319 'Module::Build::Platform::darwin'=> '0.3603',
18320 'Module::Build::Platform::os2'=> '0.3603',
18321 'Module::Build::PodParser'=> '0.3603',
18322 'Module::Build::Version'=> '0.77',
18323 'Module::Build::YAML' => '1.40',
18324 'Module::CoreList' => '2.38',
18325 'Module::Load' => '0.16',
18326 'Module::Load::Conditional'=> '0.38',
18327 'Module::Loaded' => '0.06',
18328 'Module::Pluggable' => '3.9',
18329 'Module::Pluggable::Object'=> '3.9',
18330 'Moped::Msg' => '0.01',
18331 'NDBM_File' => '1.08',
18332 'NEXT' => '0.64',
18333 'Net::Cmd' => '2.29',
18334 'Net::Config' => '1.11',
18335 'Net::Domain' => '2.20',
18336 'Net::FTP' => '2.77',
18337 'Net::FTP::A' => '1.18',
18338 'Net::FTP::E' => '0.01',
18339 'Net::FTP::I' => '1.12',
18340 'Net::FTP::L' => '0.01',
18341 'Net::FTP::dataconn' => '0.11',
18342 'Net::NNTP' => '2.24',
18343 'Net::Netrc' => '2.12',
18344 'Net::POP3' => '2.29',
18345 'Net::Ping' => '2.36',
18346 'Net::SMTP' => '2.31',
18347 'Net::Time' => '2.10',
18348 'Net::hostent' => '1.01',
18349 'Net::netent' => '1.00',
18350 'Net::protoent' => '1.00',
18351 'Net::servent' => '1.01',
18352 'O' => '1.01',
18353 'ODBM_File' => '1.07',
18354 'Object::Accessor' => '0.36',
18355 'Opcode' => '1.15',
18356 'POSIX' => '1.19',
18357 'Package::Constants' => '0.02',
18358 'Params::Check' => '0.26',
18359 'Parse::CPAN::Meta' => '1.40',
18360 'PerlIO' => '1.06',
18361 'PerlIO::encoding' => '0.12',
18362 'PerlIO::scalar' => '0.08',
18363 'PerlIO::via' => '0.09',
18364 'PerlIO::via::QuotedPrint'=> '0.06',
18365 'Pod::Checker' => '1.45',
18366 'Pod::Escapes' => '1.04',
18367 'Pod::Find' => '1.35',
18368 'Pod::Functions' => '1.04',
18369 'Pod::Html' => '1.09',
18370 'Pod::InputObjects' => '1.31',
18371 'Pod::LaTeX' => '0.58',
18372 'Pod::Man' => '2.23',
18373 'Pod::ParseLink' => '1.10',
18374 'Pod::ParseUtils' => '1.36',
18375 'Pod::Parser' => '1.37',
18376 'Pod::Perldoc' => '3.15_02',
18377 'Pod::Perldoc::BaseTo' => undef,
18378 'Pod::Perldoc::GetOptsOO'=> undef,
18379 'Pod::Perldoc::ToChecker'=> undef,
18380 'Pod::Perldoc::ToMan' => undef,
18381 'Pod::Perldoc::ToNroff' => undef,
18382 'Pod::Perldoc::ToPod' => undef,
18383 'Pod::Perldoc::ToRtf' => undef,
18384 'Pod::Perldoc::ToText' => undef,
18385 'Pod::Perldoc::ToTk' => undef,
18386 'Pod::Perldoc::ToXml' => undef,
18387 'Pod::PlainText' => '2.04',
18388 'Pod::Plainer' => '1.02',
18389 'Pod::Select' => '1.36',
18390 'Pod::Simple' => '3.14',
18391 'Pod::Simple::BlackBox' => '3.14',
18392 'Pod::Simple::Checker' => '3.14',
18393 'Pod::Simple::Debug' => '3.14',
18394 'Pod::Simple::DumpAsText'=> '3.14',
18395 'Pod::Simple::DumpAsXML'=> '3.14',
18396 'Pod::Simple::HTML' => '3.14',
18397 'Pod::Simple::HTMLBatch'=> '3.14',
18398 'Pod::Simple::HTMLLegacy'=> '5.01',
18399 'Pod::Simple::LinkSection'=> '3.14',
18400 'Pod::Simple::Methody' => '3.14',
18401 'Pod::Simple::Progress' => '3.14',
18402 'Pod::Simple::PullParser'=> '3.14',
18403 'Pod::Simple::PullParserEndToken'=> '3.14',
18404 'Pod::Simple::PullParserStartToken'=> '3.14',
18405 'Pod::Simple::PullParserTextToken'=> '3.14',
18406 'Pod::Simple::PullParserToken'=> '3.14',
18407 'Pod::Simple::RTF' => '3.14',
18408 'Pod::Simple::Search' => '3.14',
18409 'Pod::Simple::SimpleTree'=> '3.14',
18410 'Pod::Simple::Text' => '3.14',
18411 'Pod::Simple::TextContent'=> '3.14',
18412 'Pod::Simple::TiedOutFH'=> '3.14',
18413 'Pod::Simple::Transcode'=> '3.14',
18414 'Pod::Simple::TranscodeDumb'=> '3.14',
18415 'Pod::Simple::TranscodeSmart'=> '3.14',
18416 'Pod::Simple::XHTML' => '3.14',
18417 'Pod::Simple::XMLOutStream'=> '3.14',
18418 'Pod::Text' => '3.14',
18419 'Pod::Text::Color' => '2.06',
18420 'Pod::Text::Overstrike' => '2.04',
18421 'Pod::Text::Termcap' => '2.06',
18422 'Pod::Usage' => '1.36',
18423 'SDBM_File' => '1.06',
18424 'Safe' => '2.27',
18425 'Scalar::Util' => '1.22',
18426 'Scalar::Util::PP' => '1.22',
18427 'Search::Dict' => '1.02',
18428 'SelectSaver' => '1.02',
18429 'SelfLoader' => '1.17',
18430 'Shell' => '0.72_01',
18431 'Socket' => '1.87',
18432 'Storable' => '2.22',
18433 'Switch' => '2.16',
18434 'Symbol' => '1.07',
18435 'Sys::Hostname' => '1.11',
18436 'Sys::Syslog' => '0.27',
18437 'Sys::Syslog::win32::Win32'=> undef,
18438 'TAP::Base' => '3.17',
18439 'TAP::Formatter::Base' => '3.17',
18440 'TAP::Formatter::Color' => '3.17',
18441 'TAP::Formatter::Console'=> '3.17',
18442 'TAP::Formatter::Console::ParallelSession'=> '3.17',
18443 'TAP::Formatter::Console::Session'=> '3.17',
18444 'TAP::Formatter::File' => '3.17',
18445 'TAP::Formatter::File::Session'=> '3.17',
18446 'TAP::Formatter::Session'=> '3.17',
18447 'TAP::Harness' => '3.17',
18448 'TAP::Object' => '3.17',
18449 'TAP::Parser' => '3.17',
18450 'TAP::Parser::Aggregator'=> '3.17',
18451 'TAP::Parser::Grammar' => '3.17',
18452 'TAP::Parser::Iterator' => '3.17',
18453 'TAP::Parser::Iterator::Array'=> '3.17',
18454 'TAP::Parser::Iterator::Process'=> '3.17',
18455 'TAP::Parser::Iterator::Stream'=> '3.17',
18456 'TAP::Parser::IteratorFactory'=> '3.17',
18457 'TAP::Parser::Multiplexer'=> '3.17',
18458 'TAP::Parser::Result' => '3.17',
18459 'TAP::Parser::Result::Bailout'=> '3.17',
18460 'TAP::Parser::Result::Comment'=> '3.17',
18461 'TAP::Parser::Result::Plan'=> '3.17',
18462 'TAP::Parser::Result::Pragma'=> '3.17',
18463 'TAP::Parser::Result::Test'=> '3.17',
18464 'TAP::Parser::Result::Unknown'=> '3.17',
18465 'TAP::Parser::Result::Version'=> '3.17',
18466 'TAP::Parser::Result::YAML'=> '3.17',
18467 'TAP::Parser::ResultFactory'=> '3.17',
18468 'TAP::Parser::Scheduler'=> '3.17',
18469 'TAP::Parser::Scheduler::Job'=> '3.17',
18470 'TAP::Parser::Scheduler::Spinner'=> '3.17',
18471 'TAP::Parser::Source' => '3.17',
18472 'TAP::Parser::Source::Perl'=> '3.17',
18473 'TAP::Parser::Utils' => '3.17',
18474 'TAP::Parser::YAMLish::Reader'=> '3.17',
18475 'TAP::Parser::YAMLish::Writer'=> '3.17',
18476 'Term::ANSIColor' => '2.02',
18477 'Term::Cap' => '1.12',
18478 'Term::Complete' => '1.402',
18479 'Term::ReadLine' => '1.05',
18480 'Term::UI' => '0.20',
18481 'Term::UI::History' => undef,
18482 'Test' => '1.25_02',
18483 'Test::Builder' => '0.94',
18484 'Test::Builder::Module' => '0.94',
18485 'Test::Builder::Tester' => '1.18',
18486 'Test::Builder::Tester::Color'=> '1.18',
18487 'Test::Harness' => '3.17',
18488 'Test::More' => '0.94',
18489 'Test::Simple' => '0.94',
18490 'Text::Abbrev' => '1.01',
18491 'Text::Balanced' => '2.02',
18492 'Text::ParseWords' => '3.27',
18493 'Text::Soundex' => '3.03_01',
18494 'Text::Tabs' => '2009.0305',
18495 'Text::Wrap' => '2009.0305',
18496 'Thread' => '3.02',
18497 'Thread::Queue' => '2.11',
18498 'Thread::Semaphore' => '2.09',
18499 'Tie::Array' => '1.03',
18500 'Tie::File' => '0.97_02',
18501 'Tie::Handle' => '4.2',
18502 'Tie::Hash' => '1.03',
18503 'Tie::Hash::NamedCapture'=> '0.06',
18504 'Tie::Memoize' => '1.1',
18505 'Tie::RefHash' => '1.38',
18506 'Tie::Scalar' => '1.02',
18507 'Tie::StdHandle' => '4.2',
18508 'Tie::SubstrHash' => '1.00',
18509 'Time::HiRes' => '1.9719',
18510 'Time::Local' => '1.1901_01',
18511 'Time::Piece' => '1.15_01',
18512 'Time::Piece::Seconds' => undef,
18513 'Time::Seconds' => undef,
18514 'Time::gmtime' => '1.03',
18515 'Time::localtime' => '1.02',
18516 'Time::tm' => '1.00',
18517 'UNIVERSAL' => '1.06',
18518 'Unicode' => '5.2.0',
18519 'Unicode::Collate' => '0.52_01',
18520 'Unicode::Normalize' => '1.03',
18521 'Unicode::UCD' => '0.27',
18522 'User::grent' => '1.01',
18523 'User::pwent' => '1.00',
18524 'VMS::DCLsym' => '1.03',
18525 'VMS::Filespec' => '1.12',
18526 'VMS::Stdio' => '2.4',
18527 'Win32' => '0.39',
18528 'Win32API::File' => '0.1101',
18529 'Win32API::File::ExtUtils::Myconst2perl'=> '1',
18530 'Win32CORE' => '0.02',
18531 'XS::APItest' => '0.17',
18532 'XS::APItest::KeywordRPN'=> '0.003',
18533 'XS::Typemap' => '0.03',
18534 'XSLoader' => '0.10',
18535 'XSLoader::XSLoader' => '0.10',
18536 'attributes' => '0.12',
18537 'autodie' => '2.06_01',
18538 'autodie::exception' => '2.06_01',
18539 'autodie::exception::system'=> '2.06_01',
18540 'autodie::hints' => '2.06_01',
18541 'autouse' => '1.06',
18542 'base' => '2.15',
18543 'bigint' => '0.23',
18544 'bignum' => '0.23',
18545 'bigrat' => '0.23',
18546 'blib' => '1.04',
18547 'bytes' => '1.04',
18548 'charnames' => '1.07',
18549 'constant' => '1.20',
18550 'deprecate' => '0.01',
18551 'diagnostics' => '1.19',
18552 'encoding' => '2.6_01',
18553 'encoding::warnings' => '0.11',
18554 'feature' => '1.16',
18555 'fields' => '2.15',
18556 'filetest' => '1.02',
18557 'if' => '0.05',
18558 'inc::latest' => '0.3603',
18559 'integer' => '1.00',
18560 'less' => '0.03',
18561 'lib' => '0.62',
18562 'locale' => '1.00',
18563 'mro' => '1.02',
18564 'open' => '1.07',
18565 'ops' => '1.02',
18566 'overload' => '1.10',
18567 'overload::numbers' => undef,
18568 'overloading' => '0.01',
18569 'parent' => '0.223',
18570 're' => '0.11',
18571 'sigtrap' => '1.04',
18572 'sort' => '2.01',
18573 'strict' => '1.04',
18574 'subs' => '1.00',
18575 'threads' => '1.75',
18576 'threads::shared' => '1.32',
18577 'utf8' => '1.08',
18578 'vars' => '1.01',
18579 'version' => '0.82',
18580 'vmsish' => '1.02',
18581 'warnings' => '1.09',
18582 'warnings::register' => '1.01',
18584 5.013005 => {
18585 'AnyDBM_File' => '1.00',
18586 'App::Cpan' => '1.5701',
18587 'App::Prove' => '3.22',
18588 'App::Prove::State' => '3.22',
18589 'App::Prove::State::Result'=> '3.22',
18590 'App::Prove::State::Result::Test'=> '3.22',
18591 'Archive::Extract' => '0.42',
18592 'Archive::Tar' => '1.68',
18593 'Archive::Tar::Constant'=> '1.68',
18594 'Archive::Tar::File' => '1.68',
18595 'Attribute::Handlers' => '0.88',
18596 'AutoLoader' => '5.70',
18597 'AutoSplit' => '1.06',
18598 'B' => '1.23',
18599 'B::Concise' => '0.79',
18600 'B::Debug' => '1.16',
18601 'B::Deparse' => '0.98',
18602 'B::Lint' => '1.12',
18603 'B::Lint::Debug' => '1.12',
18604 'B::Showlex' => '1.02',
18605 'B::Terse' => '1.05',
18606 'B::Xref' => '1.02',
18607 'Benchmark' => '1.11',
18608 'CGI' => '3.49',
18609 'CGI::Apache' => '1.01',
18610 'CGI::Carp' => '3.45',
18611 'CGI::Cookie' => '1.29',
18612 'CGI::Fast' => '1.08',
18613 'CGI::Pretty' => '3.46',
18614 'CGI::Push' => '1.04',
18615 'CGI::Switch' => '1.01',
18616 'CGI::Util' => '3.48',
18617 'CPAN' => '1.94_57',
18618 'CPAN::Author' => '5.5',
18619 'CPAN::Bundle' => '5.5',
18620 'CPAN::CacheMgr' => '5.5',
18621 'CPAN::Complete' => '5.5',
18622 'CPAN::Debug' => '5.5001',
18623 'CPAN::DeferredCode' => '5.50',
18624 'CPAN::Distribution' => '1.9600',
18625 'CPAN::Distroprefs' => '6',
18626 'CPAN::Distrostatus' => '5.5',
18627 'CPAN::Exception::RecursiveDependency'=> '5.5',
18628 'CPAN::Exception::blocked_urllist'=> '1.0',
18629 'CPAN::Exception::yaml_not_installed'=> '5.5',
18630 'CPAN::FTP' => '5.5004',
18631 'CPAN::FTP::netrc' => '1.00',
18632 'CPAN::FirstTime' => '5.5301',
18633 'CPAN::HandleConfig' => '5.5001',
18634 'CPAN::Index' => '1.94',
18635 'CPAN::InfoObj' => '5.5',
18636 'CPAN::Kwalify' => '5.50',
18637 'CPAN::LWP::UserAgent' => '1.94',
18638 'CPAN::Mirrors' => '1.77',
18639 'CPAN::Module' => '5.5',
18640 'CPAN::Nox' => '5.50',
18641 'CPAN::Prompt' => '5.5',
18642 'CPAN::Queue' => '5.5',
18643 'CPAN::Shell' => '5.5001',
18644 'CPAN::Tarzip' => '5.5011',
18645 'CPAN::URL' => '5.5',
18646 'CPAN::Version' => '5.5',
18647 'CPANPLUS' => '0.9007',
18648 'CPANPLUS::Backend' => undef,
18649 'CPANPLUS::Backend::RV' => undef,
18650 'CPANPLUS::Config' => undef,
18651 'CPANPLUS::Configure' => undef,
18652 'CPANPLUS::Configure::Setup'=> undef,
18653 'CPANPLUS::Dist' => undef,
18654 'CPANPLUS::Dist::Autobundle'=> undef,
18655 'CPANPLUS::Dist::Base' => undef,
18656 'CPANPLUS::Dist::Build' => '0.48',
18657 'CPANPLUS::Dist::Build::Constants'=> '0.48',
18658 'CPANPLUS::Dist::MM' => undef,
18659 'CPANPLUS::Dist::Sample'=> undef,
18660 'CPANPLUS::Error' => undef,
18661 'CPANPLUS::Internals' => '0.9007',
18662 'CPANPLUS::Internals::Constants'=> undef,
18663 'CPANPLUS::Internals::Constants::Report'=> undef,
18664 'CPANPLUS::Internals::Extract'=> undef,
18665 'CPANPLUS::Internals::Fetch'=> undef,
18666 'CPANPLUS::Internals::Report'=> undef,
18667 'CPANPLUS::Internals::Search'=> undef,
18668 'CPANPLUS::Internals::Source'=> undef,
18669 'CPANPLUS::Internals::Source::Memory'=> undef,
18670 'CPANPLUS::Internals::Source::SQLite'=> undef,
18671 'CPANPLUS::Internals::Source::SQLite::Tie'=> undef,
18672 'CPANPLUS::Internals::Utils'=> undef,
18673 'CPANPLUS::Internals::Utils::Autoflush'=> undef,
18674 'CPANPLUS::Module' => undef,
18675 'CPANPLUS::Module::Author'=> undef,
18676 'CPANPLUS::Module::Author::Fake'=> undef,
18677 'CPANPLUS::Module::Checksums'=> undef,
18678 'CPANPLUS::Module::Fake'=> undef,
18679 'CPANPLUS::Module::Signature'=> undef,
18680 'CPANPLUS::Selfupdate' => undef,
18681 'CPANPLUS::Shell' => undef,
18682 'CPANPLUS::Shell::Classic'=> '0.0562',
18683 'CPANPLUS::Shell::Default'=> '0.9007',
18684 'CPANPLUS::Shell::Default::Plugins::CustomSource'=> undef,
18685 'CPANPLUS::Shell::Default::Plugins::Remote'=> undef,
18686 'CPANPLUS::Shell::Default::Plugins::Source'=> undef,
18687 'Carp' => '1.18',
18688 'Carp::Heavy' => '1.18',
18689 'Class::Struct' => '0.63',
18690 'Compress::Raw::Bzip2' => '2.030',
18691 'Compress::Raw::Zlib' => '2.030',
18692 'Compress::Zlib' => '2.030',
18693 'Config' => undef,
18694 'Config::Extensions' => '0.01',
18695 'Cwd' => '3.31',
18696 'DB' => '1.03',
18697 'DBM_Filter' => '0.03',
18698 'DBM_Filter::compress' => '0.02',
18699 'DBM_Filter::encode' => '0.02',
18700 'DBM_Filter::int32' => '0.02',
18701 'DBM_Filter::null' => '0.02',
18702 'DBM_Filter::utf8' => '0.02',
18703 'DB_File' => '1.820',
18704 'Data::Dumper' => '2.128',
18705 'Devel::DProf' => '20080331.00',
18706 'Devel::DProf::V' => undef,
18707 'Devel::DProf::dprof::V'=> undef,
18708 'Devel::InnerPackage' => '0.3',
18709 'Devel::PPPort' => '3.19',
18710 'Devel::Peek' => '1.04',
18711 'Devel::SelfStubber' => '1.03',
18712 'Digest' => '1.16',
18713 'Digest::MD5' => '2.40',
18714 'Digest::SHA' => '5.48',
18715 'Digest::base' => '1.16',
18716 'Digest::file' => '1.16',
18717 'DirHandle' => '1.03',
18718 'Dumpvalue' => '1.14',
18719 'DynaLoader' => '1.10',
18720 'Encode' => '2.40',
18721 'Encode::Alias' => '2.12',
18722 'Encode::Byte' => '2.04',
18723 'Encode::CJKConstants' => '2.02',
18724 'Encode::CN' => '2.03',
18725 'Encode::CN::HZ' => '2.05',
18726 'Encode::Config' => '2.05',
18727 'Encode::EBCDIC' => '2.02',
18728 'Encode::Encoder' => '2.01',
18729 'Encode::Encoding' => '2.05',
18730 'Encode::GSM0338' => '2.01',
18731 'Encode::Guess' => '2.04',
18732 'Encode::JP' => '2.04',
18733 'Encode::JP::H2Z' => '2.02',
18734 'Encode::JP::JIS7' => '2.04',
18735 'Encode::KR' => '2.03',
18736 'Encode::KR::2022_KR' => '2.02',
18737 'Encode::MIME::Header' => '2.12',
18738 'Encode::MIME::Header::ISO_2022_JP'=> '1.03',
18739 'Encode::MIME::Name' => '1.01',
18740 'Encode::Symbol' => '2.02',
18741 'Encode::TW' => '2.03',
18742 'Encode::Unicode' => '2.07',
18743 'Encode::Unicode::UTF7' => '2.05',
18744 'English' => '1.04',
18745 'Env' => '1.01',
18746 'Errno' => '1.13',
18747 'Exporter' => '5.64_03',
18748 'Exporter::Heavy' => '5.64_03',
18749 'ExtUtils::CBuilder' => '0.2703',
18750 'ExtUtils::CBuilder::Base'=> '0.2703_01',
18751 'ExtUtils::CBuilder::Platform::Unix'=> '0.2703',
18752 'ExtUtils::CBuilder::Platform::VMS'=> '0.2703',
18753 'ExtUtils::CBuilder::Platform::Windows'=> '0.2703',
18754 'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.2703',
18755 'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.2703',
18756 'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.2703',
18757 'ExtUtils::CBuilder::Platform::aix'=> '0.2703',
18758 'ExtUtils::CBuilder::Platform::cygwin'=> '0.2703',
18759 'ExtUtils::CBuilder::Platform::darwin'=> '0.2703',
18760 'ExtUtils::CBuilder::Platform::dec_osf'=> '0.2703',
18761 'ExtUtils::CBuilder::Platform::os2'=> '0.2703',
18762 'ExtUtils::Command' => '1.16',
18763 'ExtUtils::Command::MM' => '6.57_05',
18764 'ExtUtils::Constant' => '0.22',
18765 'ExtUtils::Constant::Base'=> '0.04',
18766 'ExtUtils::Constant::ProxySubs'=> '0.06',
18767 'ExtUtils::Constant::Utils'=> '0.02',
18768 'ExtUtils::Constant::XS'=> '0.03',
18769 'ExtUtils::Embed' => '1.28',
18770 'ExtUtils::Install' => '1.55',
18771 'ExtUtils::Installed' => '1.999_001',
18772 'ExtUtils::Liblist' => '6.57_05',
18773 'ExtUtils::Liblist::Kid'=> '6.5705',
18774 'ExtUtils::MM' => '6.57_05',
18775 'ExtUtils::MM_AIX' => '6.57_05',
18776 'ExtUtils::MM_Any' => '6.57_05',
18777 'ExtUtils::MM_BeOS' => '6.57_05',
18778 'ExtUtils::MM_Cygwin' => '6.57_05',
18779 'ExtUtils::MM_DOS' => '6.5705',
18780 'ExtUtils::MM_Darwin' => '6.57_05',
18781 'ExtUtils::MM_MacOS' => '6.5705',
18782 'ExtUtils::MM_NW5' => '6.57_05',
18783 'ExtUtils::MM_OS2' => '6.57_05',
18784 'ExtUtils::MM_QNX' => '6.57_05',
18785 'ExtUtils::MM_UWIN' => '6.5705',
18786 'ExtUtils::MM_Unix' => '6.57_05',
18787 'ExtUtils::MM_VMS' => '6.57_05',
18788 'ExtUtils::MM_VOS' => '6.57_05',
18789 'ExtUtils::MM_Win32' => '6.57_05',
18790 'ExtUtils::MM_Win95' => '6.57_05',
18791 'ExtUtils::MY' => '6.5705',
18792 'ExtUtils::MakeMaker' => '6.57_05',
18793 'ExtUtils::MakeMaker::Config'=> '6.57_05',
18794 'ExtUtils::MakeMaker::YAML'=> '1.44',
18795 'ExtUtils::Manifest' => '1.58',
18796 'ExtUtils::Miniperl' => undef,
18797 'ExtUtils::Mkbootstrap' => '6.57_05',
18798 'ExtUtils::Mksymlists' => '6.57_05',
18799 'ExtUtils::Packlist' => '1.44',
18800 'ExtUtils::ParseXS' => '2.2207',
18801 'ExtUtils::XSSymSet' => '1.1',
18802 'ExtUtils::testlib' => '6.5705',
18803 'Fatal' => '2.10',
18804 'Fcntl' => '1.06',
18805 'File::Basename' => '2.79',
18806 'File::CheckTree' => '4.4',
18807 'File::Compare' => '1.1006',
18808 'File::Copy' => '2.20',
18809 'File::DosGlob' => '1.02',
18810 'File::Fetch' => '0.24',
18811 'File::Find' => '1.17',
18812 'File::Glob' => '1.08',
18813 'File::GlobMapper' => '1.000',
18814 'File::Path' => '2.08_01',
18815 'File::Spec' => '3.31_01',
18816 'File::Spec::Cygwin' => '3.30',
18817 'File::Spec::Epoc' => '3.30',
18818 'File::Spec::Functions' => '3.30',
18819 'File::Spec::Mac' => '3.30',
18820 'File::Spec::OS2' => '3.30',
18821 'File::Spec::Unix' => '3.30',
18822 'File::Spec::VMS' => '3.30',
18823 'File::Spec::Win32' => '3.30',
18824 'File::Temp' => '0.22',
18825 'File::stat' => '1.03',
18826 'FileCache' => '1.08',
18827 'FileHandle' => '2.02',
18828 'Filter::Simple' => '0.85',
18829 'Filter::Util::Call' => '1.08',
18830 'FindBin' => '1.50',
18831 'GDBM_File' => '1.10',
18832 'Getopt::Long' => '2.38',
18833 'Getopt::Std' => '1.06',
18834 'Hash::Util' => '0.09',
18835 'Hash::Util::FieldHash' => '1.04',
18836 'I18N::Collate' => '1.01',
18837 'I18N::LangTags' => '0.35_01',
18838 'I18N::LangTags::Detect'=> '1.04',
18839 'I18N::LangTags::List' => '0.35_01',
18840 'I18N::Langinfo' => '0.04',
18841 'IO' => '1.25_02',
18842 'IO::Compress::Adapter::Bzip2'=> '2.030',
18843 'IO::Compress::Adapter::Deflate'=> '2.030',
18844 'IO::Compress::Adapter::Identity'=> '2.030',
18845 'IO::Compress::Base' => '2.030',
18846 'IO::Compress::Base::Common'=> '2.030',
18847 'IO::Compress::Bzip2' => '2.030',
18848 'IO::Compress::Deflate' => '2.030',
18849 'IO::Compress::Gzip' => '2.030',
18850 'IO::Compress::Gzip::Constants'=> '2.030',
18851 'IO::Compress::RawDeflate'=> '2.030',
18852 'IO::Compress::Zip' => '2.030',
18853 'IO::Compress::Zip::Constants'=> '2.030',
18854 'IO::Compress::Zlib::Constants'=> '2.030',
18855 'IO::Compress::Zlib::Extra'=> '2.030',
18856 'IO::Dir' => '1.07',
18857 'IO::File' => '1.14',
18858 'IO::Handle' => '1.28',
18859 'IO::Pipe' => '1.13',
18860 'IO::Poll' => '0.07',
18861 'IO::Seekable' => '1.10',
18862 'IO::Select' => '1.17',
18863 'IO::Socket' => '1.32',
18864 'IO::Socket::INET' => '1.31',
18865 'IO::Socket::UNIX' => '1.23',
18866 'IO::Uncompress::Adapter::Bunzip2'=> '2.030',
18867 'IO::Uncompress::Adapter::Identity'=> '2.030',
18868 'IO::Uncompress::Adapter::Inflate'=> '2.030',
18869 'IO::Uncompress::AnyInflate'=> '2.030',
18870 'IO::Uncompress::AnyUncompress'=> '2.030',
18871 'IO::Uncompress::Base' => '2.030',
18872 'IO::Uncompress::Bunzip2'=> '2.030',
18873 'IO::Uncompress::Gunzip'=> '2.030',
18874 'IO::Uncompress::Inflate'=> '2.030',
18875 'IO::Uncompress::RawInflate'=> '2.030',
18876 'IO::Uncompress::Unzip' => '2.030',
18877 'IO::Zlib' => '1.10',
18878 'IPC::Cmd' => '0.60',
18879 'IPC::Msg' => '2.03',
18880 'IPC::Open2' => '1.03',
18881 'IPC::Open3' => '1.06',
18882 'IPC::Semaphore' => '2.03',
18883 'IPC::SharedMem' => '2.03',
18884 'IPC::SysV' => '2.03',
18885 'List::Util' => '1.23',
18886 'List::Util::PP' => '1.23',
18887 'List::Util::XS' => '1.23',
18888 'Locale::Codes' => '3.13',
18889 'Locale::Codes::Country'=> '3.13',
18890 'Locale::Codes::Currency'=> '3.13',
18891 'Locale::Codes::Language'=> '3.13',
18892 'Locale::Codes::Script' => '3.13',
18893 'Locale::Constants' => '3.13',
18894 'Locale::Country' => '3.13',
18895 'Locale::Currency' => '3.13',
18896 'Locale::Language' => '3.13',
18897 'Locale::Maketext' => '1.15',
18898 'Locale::Maketext::Guts'=> undef,
18899 'Locale::Maketext::GutsLoader'=> undef,
18900 'Locale::Maketext::Simple'=> '0.21',
18901 'Locale::Script' => '3.13',
18902 'Log::Message' => '0.02',
18903 'Log::Message::Config' => '0.01',
18904 'Log::Message::Handlers'=> undef,
18905 'Log::Message::Item' => undef,
18906 'Log::Message::Simple' => '0.06',
18907 'MIME::Base64' => '3.09',
18908 'MIME::QuotedPrint' => '3.09',
18909 'Math::BigFloat' => '1.62',
18910 'Math::BigFloat::Trace' => '0.01',
18911 'Math::BigInt' => '1.95',
18912 'Math::BigInt::Calc' => '0.54',
18913 'Math::BigInt::CalcEmu' => '0.06',
18914 'Math::BigInt::FastCalc'=> '0.22',
18915 'Math::BigInt::Trace' => '0.01',
18916 'Math::BigRat' => '0.26',
18917 'Math::Complex' => '1.56',
18918 'Math::Trig' => '1.2',
18919 'Memoize' => '1.01_03',
18920 'Memoize::AnyDBM_File' => '0.65',
18921 'Memoize::Expire' => '1.00',
18922 'Memoize::ExpireFile' => '1.01',
18923 'Memoize::ExpireTest' => '0.65',
18924 'Memoize::NDBM_File' => '0.65',
18925 'Memoize::SDBM_File' => '0.65',
18926 'Memoize::Storable' => '0.65',
18927 'Module::Build' => '0.3607',
18928 'Module::Build::Base' => '0.3607',
18929 'Module::Build::Compat' => '0.3607',
18930 'Module::Build::Config' => '0.3607',
18931 'Module::Build::ConfigData'=> undef,
18932 'Module::Build::Cookbook'=> '0.3607',
18933 'Module::Build::Dumper' => '0.3607',
18934 'Module::Build::ModuleInfo'=> '0.3607',
18935 'Module::Build::Notes' => '0.3607',
18936 'Module::Build::PPMMaker'=> '0.3607',
18937 'Module::Build::Platform::Amiga'=> '0.3607',
18938 'Module::Build::Platform::Default'=> '0.3607',
18939 'Module::Build::Platform::EBCDIC'=> '0.3607',
18940 'Module::Build::Platform::MPEiX'=> '0.3607',
18941 'Module::Build::Platform::MacOS'=> '0.3607',
18942 'Module::Build::Platform::RiscOS'=> '0.3607',
18943 'Module::Build::Platform::Unix'=> '0.3607',
18944 'Module::Build::Platform::VMS'=> '0.3607',
18945 'Module::Build::Platform::VOS'=> '0.3607',
18946 'Module::Build::Platform::Windows'=> '0.3607',
18947 'Module::Build::Platform::aix'=> '0.3607',
18948 'Module::Build::Platform::cygwin'=> '0.3607',
18949 'Module::Build::Platform::darwin'=> '0.3607',
18950 'Module::Build::Platform::os2'=> '0.3607',
18951 'Module::Build::PodParser'=> '0.3607',
18952 'Module::Build::Version'=> '0.77',
18953 'Module::Build::YAML' => '1.40',
18954 'Module::CoreList' => '2.39',
18955 'Module::Load' => '0.18',
18956 'Module::Load::Conditional'=> '0.38',
18957 'Module::Loaded' => '0.06',
18958 'Module::Pluggable' => '3.9',
18959 'Module::Pluggable::Object'=> '3.9',
18960 'Moped::Msg' => '0.01',
18961 'NDBM_File' => '1.08',
18962 'NEXT' => '0.64',
18963 'Net::Cmd' => '2.29',
18964 'Net::Config' => '1.11',
18965 'Net::Domain' => '2.20',
18966 'Net::FTP' => '2.77',
18967 'Net::FTP::A' => '1.18',
18968 'Net::FTP::E' => '0.01',
18969 'Net::FTP::I' => '1.12',
18970 'Net::FTP::L' => '0.01',
18971 'Net::FTP::dataconn' => '0.11',
18972 'Net::NNTP' => '2.24',
18973 'Net::Netrc' => '2.12',
18974 'Net::POP3' => '2.29',
18975 'Net::Ping' => '2.36',
18976 'Net::SMTP' => '2.31',
18977 'Net::Time' => '2.10',
18978 'Net::hostent' => '1.01',
18979 'Net::netent' => '1.00',
18980 'Net::protoent' => '1.00',
18981 'Net::servent' => '1.01',
18982 'O' => '1.01',
18983 'ODBM_File' => '1.07',
18984 'Object::Accessor' => '0.36',
18985 'Opcode' => '1.15',
18986 'POSIX' => '1.20',
18987 'Package::Constants' => '0.02',
18988 'Params::Check' => '0.26',
18989 'Parse::CPAN::Meta' => '1.40',
18990 'PerlIO' => '1.06',
18991 'PerlIO::encoding' => '0.12',
18992 'PerlIO::scalar' => '0.09',
18993 'PerlIO::via' => '0.09',
18994 'PerlIO::via::QuotedPrint'=> '0.06',
18995 'Pod::Checker' => '1.45',
18996 'Pod::Escapes' => '1.04',
18997 'Pod::Find' => '1.35',
18998 'Pod::Functions' => '1.04',
18999 'Pod::Html' => '1.09',
19000 'Pod::InputObjects' => '1.31',
19001 'Pod::LaTeX' => '0.58',
19002 'Pod::Man' => '2.23',
19003 'Pod::ParseLink' => '1.10',
19004 'Pod::ParseUtils' => '1.36',
19005 'Pod::Parser' => '1.37',
19006 'Pod::Perldoc' => '3.15_02',
19007 'Pod::Perldoc::BaseTo' => undef,
19008 'Pod::Perldoc::GetOptsOO'=> undef,
19009 'Pod::Perldoc::ToChecker'=> undef,
19010 'Pod::Perldoc::ToMan' => undef,
19011 'Pod::Perldoc::ToNroff' => undef,
19012 'Pod::Perldoc::ToPod' => undef,
19013 'Pod::Perldoc::ToRtf' => undef,
19014 'Pod::Perldoc::ToText' => undef,
19015 'Pod::Perldoc::ToTk' => undef,
19016 'Pod::Perldoc::ToXml' => undef,
19017 'Pod::PlainText' => '2.04',
19018 'Pod::Select' => '1.36',
19019 'Pod::Simple' => '3.14',
19020 'Pod::Simple::BlackBox' => '3.14',
19021 'Pod::Simple::Checker' => '3.14',
19022 'Pod::Simple::Debug' => '3.14',
19023 'Pod::Simple::DumpAsText'=> '3.14',
19024 'Pod::Simple::DumpAsXML'=> '3.14',
19025 'Pod::Simple::HTML' => '3.14',
19026 'Pod::Simple::HTMLBatch'=> '3.14',
19027 'Pod::Simple::HTMLLegacy'=> '5.01',
19028 'Pod::Simple::LinkSection'=> '3.14',
19029 'Pod::Simple::Methody' => '3.14',
19030 'Pod::Simple::Progress' => '3.14',
19031 'Pod::Simple::PullParser'=> '3.14',
19032 'Pod::Simple::PullParserEndToken'=> '3.14',
19033 'Pod::Simple::PullParserStartToken'=> '3.14',
19034 'Pod::Simple::PullParserTextToken'=> '3.14',
19035 'Pod::Simple::PullParserToken'=> '3.14',
19036 'Pod::Simple::RTF' => '3.14',
19037 'Pod::Simple::Search' => '3.14',
19038 'Pod::Simple::SimpleTree'=> '3.14',
19039 'Pod::Simple::Text' => '3.14',
19040 'Pod::Simple::TextContent'=> '3.14',
19041 'Pod::Simple::TiedOutFH'=> '3.14',
19042 'Pod::Simple::Transcode'=> '3.14',
19043 'Pod::Simple::TranscodeDumb'=> '3.14',
19044 'Pod::Simple::TranscodeSmart'=> '3.14',
19045 'Pod::Simple::XHTML' => '3.14',
19046 'Pod::Simple::XMLOutStream'=> '3.14',
19047 'Pod::Text' => '3.14',
19048 'Pod::Text::Color' => '2.06',
19049 'Pod::Text::Overstrike' => '2.04',
19050 'Pod::Text::Termcap' => '2.06',
19051 'Pod::Usage' => '1.36',
19052 'SDBM_File' => '1.06',
19053 'Safe' => '2.28',
19054 'Scalar::Util' => '1.23',
19055 'Scalar::Util::PP' => '1.23',
19056 'Search::Dict' => '1.03',
19057 'SelectSaver' => '1.02',
19058 'SelfLoader' => '1.17',
19059 'Shell' => '0.72_01',
19060 'Socket' => '1.89',
19061 'Storable' => '2.22',
19062 'Symbol' => '1.07',
19063 'Sys::Hostname' => '1.11',
19064 'Sys::Syslog' => '0.27',
19065 'Sys::Syslog::win32::Win32'=> undef,
19066 'TAP::Base' => '3.22',
19067 'TAP::Formatter::Base' => '3.22',
19068 'TAP::Formatter::Color' => '3.22',
19069 'TAP::Formatter::Console'=> '3.22',
19070 'TAP::Formatter::Console::ParallelSession'=> '3.22',
19071 'TAP::Formatter::Console::Session'=> '3.22',
19072 'TAP::Formatter::File' => '3.22',
19073 'TAP::Formatter::File::Session'=> '3.22',
19074 'TAP::Formatter::Session'=> '3.22',
19075 'TAP::Harness' => '3.22',
19076 'TAP::Object' => '3.22',
19077 'TAP::Parser' => '3.22',
19078 'TAP::Parser::Aggregator'=> '3.22',
19079 'TAP::Parser::Grammar' => '3.22',
19080 'TAP::Parser::Iterator' => '3.22',
19081 'TAP::Parser::Iterator::Array'=> '3.22',
19082 'TAP::Parser::Iterator::Process'=> '3.22',
19083 'TAP::Parser::Iterator::Stream'=> '3.22',
19084 'TAP::Parser::IteratorFactory'=> '3.22',
19085 'TAP::Parser::Multiplexer'=> '3.22',
19086 'TAP::Parser::Result' => '3.22',
19087 'TAP::Parser::Result::Bailout'=> '3.22',
19088 'TAP::Parser::Result::Comment'=> '3.22',
19089 'TAP::Parser::Result::Plan'=> '3.22',
19090 'TAP::Parser::Result::Pragma'=> '3.22',
19091 'TAP::Parser::Result::Test'=> '3.22',
19092 'TAP::Parser::Result::Unknown'=> '3.22',
19093 'TAP::Parser::Result::Version'=> '3.22',
19094 'TAP::Parser::Result::YAML'=> '3.22',
19095 'TAP::Parser::ResultFactory'=> '3.22',
19096 'TAP::Parser::Scheduler'=> '3.22',
19097 'TAP::Parser::Scheduler::Job'=> '3.22',
19098 'TAP::Parser::Scheduler::Spinner'=> '3.22',
19099 'TAP::Parser::Source' => '3.22',
19100 'TAP::Parser::SourceHandler'=> '3.22',
19101 'TAP::Parser::SourceHandler::Executable'=> '3.22',
19102 'TAP::Parser::SourceHandler::File'=> '3.22',
19103 'TAP::Parser::SourceHandler::Handle'=> '3.22',
19104 'TAP::Parser::SourceHandler::Perl'=> '3.22',
19105 'TAP::Parser::SourceHandler::RawTAP'=> '3.22',
19106 'TAP::Parser::Utils' => '3.22',
19107 'TAP::Parser::YAMLish::Reader'=> '3.22',
19108 'TAP::Parser::YAMLish::Writer'=> '3.22',
19109 'Term::ANSIColor' => '3.00',
19110 'Term::Cap' => '1.12',
19111 'Term::Complete' => '1.402',
19112 'Term::ReadLine' => '1.07',
19113 'Term::UI' => '0.20',
19114 'Term::UI::History' => undef,
19115 'Test' => '1.25_02',
19116 'Test::Builder' => '0.97_01',
19117 'Test::Builder::Module' => '0.97_01',
19118 'Test::Builder::Tester' => '1.21_01',
19119 'Test::Builder::Tester::Color'=> '1.21_01',
19120 'Test::Harness' => '3.22',
19121 'Test::More' => '0.97_01',
19122 'Test::Simple' => '0.97_01',
19123 'Text::Abbrev' => '1.01',
19124 'Text::Balanced' => '2.02',
19125 'Text::ParseWords' => '3.27',
19126 'Text::Soundex' => '3.03_01',
19127 'Text::Tabs' => '2009.0305',
19128 'Text::Wrap' => '2009.0305',
19129 'Thread' => '3.02',
19130 'Thread::Queue' => '2.11',
19131 'Thread::Semaphore' => '2.11',
19132 'Tie::Array' => '1.04',
19133 'Tie::File' => '0.97_02',
19134 'Tie::Handle' => '4.2',
19135 'Tie::Hash' => '1.04',
19136 'Tie::Hash::NamedCapture'=> '0.06',
19137 'Tie::Memoize' => '1.1',
19138 'Tie::RefHash' => '1.38',
19139 'Tie::Scalar' => '1.02',
19140 'Tie::StdHandle' => '4.2',
19141 'Tie::SubstrHash' => '1.00',
19142 'Time::HiRes' => '1.9721',
19143 'Time::Local' => '1.1901_01',
19144 'Time::Piece' => '1.20_01',
19145 'Time::Piece::Seconds' => undef,
19146 'Time::Seconds' => undef,
19147 'Time::gmtime' => '1.03',
19148 'Time::localtime' => '1.02',
19149 'Time::tm' => '1.00',
19150 'UNIVERSAL' => '1.07',
19151 'Unicode' => '5.2.0',
19152 'Unicode::Collate' => '0.59',
19153 'Unicode::Collate::Locale'=> '0.59',
19154 'Unicode::Normalize' => '1.06',
19155 'Unicode::UCD' => '0.29',
19156 'User::grent' => '1.01',
19157 'User::pwent' => '1.00',
19158 'VMS::DCLsym' => '1.04',
19159 'VMS::Filespec' => '1.12',
19160 'VMS::Stdio' => '2.4',
19161 'Win32' => '0.39',
19162 'Win32API::File' => '0.1101',
19163 'Win32API::File::ExtUtils::Myconst2perl'=> '1',
19164 'Win32CORE' => '0.02',
19165 'XS::APItest' => '0.21',
19166 'XS::APItest::KeywordRPN'=> '0.005',
19167 'XS::Typemap' => '0.03',
19168 'XSLoader' => '0.11',
19169 'XSLoader::XSLoader' => '0.11',
19170 'attributes' => '0.12',
19171 'autodie' => '2.10',
19172 'autodie::exception' => '2.10',
19173 'autodie::exception::system'=> '2.10',
19174 'autodie::hints' => '2.10',
19175 'autouse' => '1.06',
19176 'base' => '2.15',
19177 'bigint' => '0.25',
19178 'bignum' => '0.25',
19179 'bigrat' => '0.25',
19180 'blib' => '1.06',
19181 'bytes' => '1.04',
19182 'charnames' => '1.15',
19183 'constant' => '1.20',
19184 'deprecate' => '0.01',
19185 'diagnostics' => '1.20',
19186 'encoding' => '2.6_01',
19187 'encoding::warnings' => '0.11',
19188 'feature' => '1.18',
19189 'fields' => '2.15',
19190 'filetest' => '1.02',
19191 'if' => '0.05',
19192 'inc::latest' => '0.3607',
19193 'integer' => '1.00',
19194 'less' => '0.03',
19195 'lib' => '0.63',
19196 'locale' => '1.00',
19197 'mro' => '1.03',
19198 'open' => '1.08',
19199 'ops' => '1.02',
19200 'overload' => '1.10',
19201 'overload::numbers' => undef,
19202 'overloading' => '0.01',
19203 'parent' => '0.223',
19204 're' => '0.12',
19205 'sigtrap' => '1.04',
19206 'sort' => '2.01',
19207 'strict' => '1.04',
19208 'subs' => '1.00',
19209 'threads' => '1.77_03',
19210 'threads::shared' => '1.33_03',
19211 'utf8' => '1.08',
19212 'vars' => '1.02',
19213 'version' => '0.82',
19214 'vmsish' => '1.02',
19215 'warnings' => '1.11',
19216 'warnings::register' => '1.02',
19218 5.013006 => {
19219 'AnyDBM_File' => '1.00',
19220 'App::Cpan' => '1.5701',
19221 'App::Prove' => '3.22',
19222 'App::Prove::State' => '3.22',
19223 'App::Prove::State::Result'=> '3.22',
19224 'App::Prove::State::Result::Test'=> '3.22',
19225 'Archive::Extract' => '0.44',
19226 'Archive::Tar' => '1.68',
19227 'Archive::Tar::Constant'=> '1.68',
19228 'Archive::Tar::File' => '1.68',
19229 'Attribute::Handlers' => '0.88',
19230 'AutoLoader' => '5.70',
19231 'AutoSplit' => '1.06',
19232 'B' => '1.24',
19233 'B::Concise' => '0.79',
19234 'B::Debug' => '1.16',
19235 'B::Deparse' => '0.99',
19236 'B::Lint' => '1.12',
19237 'B::Lint::Debug' => '1.12',
19238 'B::Showlex' => '1.02',
19239 'B::Terse' => '1.05',
19240 'B::Xref' => '1.02',
19241 'Benchmark' => '1.11',
19242 'CGI' => '3.49',
19243 'CGI::Apache' => '1.01',
19244 'CGI::Carp' => '3.45',
19245 'CGI::Cookie' => '1.29',
19246 'CGI::Fast' => '1.08',
19247 'CGI::Pretty' => '3.46',
19248 'CGI::Push' => '1.04',
19249 'CGI::Switch' => '1.01',
19250 'CGI::Util' => '3.48',
19251 'CPAN' => '1.94_61',
19252 'CPAN::Author' => '5.5',
19253 'CPAN::Bundle' => '5.5',
19254 'CPAN::CacheMgr' => '5.5',
19255 'CPAN::Complete' => '5.5',
19256 'CPAN::Debug' => '5.5001',
19257 'CPAN::DeferredCode' => '5.50',
19258 'CPAN::Distribution' => '1.9600',
19259 'CPAN::Distroprefs' => '6',
19260 'CPAN::Distrostatus' => '5.5',
19261 'CPAN::Exception::RecursiveDependency'=> '5.5',
19262 'CPAN::Exception::blocked_urllist'=> '1.0',
19263 'CPAN::Exception::yaml_not_installed'=> '5.5',
19264 'CPAN::FTP' => '5.5005',
19265 'CPAN::FTP::netrc' => '1.00',
19266 'CPAN::FirstTime' => '5.5301',
19267 'CPAN::HandleConfig' => '5.5001',
19268 'CPAN::Index' => '1.94',
19269 'CPAN::InfoObj' => '5.5',
19270 'CPAN::Kwalify' => '5.50',
19271 'CPAN::LWP::UserAgent' => '1.94',
19272 'CPAN::Mirrors' => '1.77',
19273 'CPAN::Module' => '5.5',
19274 'CPAN::Nox' => '5.50',
19275 'CPAN::Prompt' => '5.5',
19276 'CPAN::Queue' => '5.5001',
19277 'CPAN::Shell' => '5.5001',
19278 'CPAN::Tarzip' => '5.5011',
19279 'CPAN::URL' => '5.5',
19280 'CPAN::Version' => '5.5001',
19281 'CPANPLUS' => '0.9007',
19282 'CPANPLUS::Backend' => undef,
19283 'CPANPLUS::Backend::RV' => undef,
19284 'CPANPLUS::Config' => undef,
19285 'CPANPLUS::Configure' => undef,
19286 'CPANPLUS::Configure::Setup'=> undef,
19287 'CPANPLUS::Dist' => undef,
19288 'CPANPLUS::Dist::Autobundle'=> undef,
19289 'CPANPLUS::Dist::Base' => undef,
19290 'CPANPLUS::Dist::Build' => '0.48',
19291 'CPANPLUS::Dist::Build::Constants'=> '0.48',
19292 'CPANPLUS::Dist::MM' => undef,
19293 'CPANPLUS::Dist::Sample'=> undef,
19294 'CPANPLUS::Error' => undef,
19295 'CPANPLUS::Internals' => '0.9007',
19296 'CPANPLUS::Internals::Constants'=> undef,
19297 'CPANPLUS::Internals::Constants::Report'=> undef,
19298 'CPANPLUS::Internals::Extract'=> undef,
19299 'CPANPLUS::Internals::Fetch'=> undef,
19300 'CPANPLUS::Internals::Report'=> undef,
19301 'CPANPLUS::Internals::Search'=> undef,
19302 'CPANPLUS::Internals::Source'=> undef,
19303 'CPANPLUS::Internals::Source::Memory'=> undef,
19304 'CPANPLUS::Internals::Source::SQLite'=> undef,
19305 'CPANPLUS::Internals::Source::SQLite::Tie'=> undef,
19306 'CPANPLUS::Internals::Utils'=> undef,
19307 'CPANPLUS::Internals::Utils::Autoflush'=> undef,
19308 'CPANPLUS::Module' => undef,
19309 'CPANPLUS::Module::Author'=> undef,
19310 'CPANPLUS::Module::Author::Fake'=> undef,
19311 'CPANPLUS::Module::Checksums'=> undef,
19312 'CPANPLUS::Module::Fake'=> undef,
19313 'CPANPLUS::Module::Signature'=> undef,
19314 'CPANPLUS::Selfupdate' => undef,
19315 'CPANPLUS::Shell' => undef,
19316 'CPANPLUS::Shell::Classic'=> '0.0562',
19317 'CPANPLUS::Shell::Default'=> '0.9007',
19318 'CPANPLUS::Shell::Default::Plugins::CustomSource'=> undef,
19319 'CPANPLUS::Shell::Default::Plugins::Remote'=> undef,
19320 'CPANPLUS::Shell::Default::Plugins::Source'=> undef,
19321 'Carp' => '1.19',
19322 'Carp::Heavy' => '1.19',
19323 'Class::Struct' => '0.63',
19324 'Compress::Raw::Bzip2' => '2.031',
19325 'Compress::Raw::Zlib' => '2.030',
19326 'Compress::Zlib' => '2.030',
19327 'Config' => undef,
19328 'Config::Extensions' => '0.01',
19329 'Cwd' => '3.34',
19330 'DB' => '1.03',
19331 'DBM_Filter' => '0.03',
19332 'DBM_Filter::compress' => '0.02',
19333 'DBM_Filter::encode' => '0.02',
19334 'DBM_Filter::int32' => '0.02',
19335 'DBM_Filter::null' => '0.02',
19336 'DBM_Filter::utf8' => '0.02',
19337 'DB_File' => '1.820',
19338 'Data::Dumper' => '2.129',
19339 'Devel::DProf' => '20080331.00',
19340 'Devel::DProf::V' => undef,
19341 'Devel::DProf::dprof::V'=> undef,
19342 'Devel::InnerPackage' => '0.3',
19343 'Devel::PPPort' => '3.19',
19344 'Devel::Peek' => '1.05',
19345 'Devel::SelfStubber' => '1.03',
19346 'Digest' => '1.16',
19347 'Digest::MD5' => '2.51',
19348 'Digest::SHA' => '5.48',
19349 'Digest::base' => '1.16',
19350 'Digest::file' => '1.16',
19351 'DirHandle' => '1.03',
19352 'Dumpvalue' => '1.14',
19353 'DynaLoader' => '1.10',
19354 'Encode' => '2.40',
19355 'Encode::Alias' => '2.12',
19356 'Encode::Byte' => '2.04',
19357 'Encode::CJKConstants' => '2.02',
19358 'Encode::CN' => '2.03',
19359 'Encode::CN::HZ' => '2.05',
19360 'Encode::Config' => '2.05',
19361 'Encode::EBCDIC' => '2.02',
19362 'Encode::Encoder' => '2.01',
19363 'Encode::Encoding' => '2.05',
19364 'Encode::GSM0338' => '2.01',
19365 'Encode::Guess' => '2.04',
19366 'Encode::JP' => '2.04',
19367 'Encode::JP::H2Z' => '2.02',
19368 'Encode::JP::JIS7' => '2.04',
19369 'Encode::KR' => '2.03',
19370 'Encode::KR::2022_KR' => '2.02',
19371 'Encode::MIME::Header' => '2.12',
19372 'Encode::MIME::Header::ISO_2022_JP'=> '1.03',
19373 'Encode::MIME::Name' => '1.01',
19374 'Encode::Symbol' => '2.02',
19375 'Encode::TW' => '2.03',
19376 'Encode::Unicode' => '2.07',
19377 'Encode::Unicode::UTF7' => '2.05',
19378 'English' => '1.04',
19379 'Env' => '1.01',
19380 'Errno' => '1.13',
19381 'Exporter' => '5.64_03',
19382 'Exporter::Heavy' => '5.64_03',
19383 'ExtUtils::CBuilder' => '0.2703',
19384 'ExtUtils::CBuilder::Base'=> '0.2703_01',
19385 'ExtUtils::CBuilder::Platform::Unix'=> '0.2703',
19386 'ExtUtils::CBuilder::Platform::VMS'=> '0.2703',
19387 'ExtUtils::CBuilder::Platform::Windows'=> '0.2703',
19388 'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.2703',
19389 'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.2703',
19390 'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.2703',
19391 'ExtUtils::CBuilder::Platform::aix'=> '0.2703',
19392 'ExtUtils::CBuilder::Platform::cygwin'=> '0.2703',
19393 'ExtUtils::CBuilder::Platform::darwin'=> '0.2703',
19394 'ExtUtils::CBuilder::Platform::dec_osf'=> '0.2703',
19395 'ExtUtils::CBuilder::Platform::os2'=> '0.2703',
19396 'ExtUtils::Command' => '1.16',
19397 'ExtUtils::Command::MM' => '6.57_05',
19398 'ExtUtils::Constant' => '0.22',
19399 'ExtUtils::Constant::Base'=> '0.05',
19400 'ExtUtils::Constant::ProxySubs'=> '0.07',
19401 'ExtUtils::Constant::Utils'=> '0.02',
19402 'ExtUtils::Constant::XS'=> '0.03',
19403 'ExtUtils::Embed' => '1.29',
19404 'ExtUtils::Install' => '1.55',
19405 'ExtUtils::Installed' => '1.999_001',
19406 'ExtUtils::Liblist' => '6.57_05',
19407 'ExtUtils::Liblist::Kid'=> '6.5705',
19408 'ExtUtils::MM' => '6.57_05',
19409 'ExtUtils::MM_AIX' => '6.57_05',
19410 'ExtUtils::MM_Any' => '6.57_05',
19411 'ExtUtils::MM_BeOS' => '6.57_05',
19412 'ExtUtils::MM_Cygwin' => '6.57_05',
19413 'ExtUtils::MM_DOS' => '6.5705',
19414 'ExtUtils::MM_Darwin' => '6.57_05',
19415 'ExtUtils::MM_MacOS' => '6.5705',
19416 'ExtUtils::MM_NW5' => '6.57_05',
19417 'ExtUtils::MM_OS2' => '6.57_05',
19418 'ExtUtils::MM_QNX' => '6.57_05',
19419 'ExtUtils::MM_UWIN' => '6.5705',
19420 'ExtUtils::MM_Unix' => '6.57_05',
19421 'ExtUtils::MM_VMS' => '6.57_05',
19422 'ExtUtils::MM_VOS' => '6.57_05',
19423 'ExtUtils::MM_Win32' => '6.57_05',
19424 'ExtUtils::MM_Win95' => '6.57_05',
19425 'ExtUtils::MY' => '6.5705',
19426 'ExtUtils::MakeMaker' => '6.57_05',
19427 'ExtUtils::MakeMaker::Config'=> '6.57_05',
19428 'ExtUtils::MakeMaker::YAML'=> '1.44',
19429 'ExtUtils::Manifest' => '1.58',
19430 'ExtUtils::Miniperl' => undef,
19431 'ExtUtils::Mkbootstrap' => '6.57_05',
19432 'ExtUtils::Mksymlists' => '6.57_05',
19433 'ExtUtils::Packlist' => '1.44',
19434 'ExtUtils::ParseXS' => '2.2207',
19435 'ExtUtils::XSSymSet' => '1.2',
19436 'ExtUtils::testlib' => '6.5705',
19437 'Fatal' => '2.10',
19438 'Fcntl' => '1.09',
19439 'File::Basename' => '2.79',
19440 'File::CheckTree' => '4.4',
19441 'File::Compare' => '1.1006',
19442 'File::Copy' => '2.20',
19443 'File::DosGlob' => '1.03',
19444 'File::Fetch' => '0.24',
19445 'File::Find' => '1.18',
19446 'File::Glob' => '1.09',
19447 'File::GlobMapper' => '1.000',
19448 'File::Path' => '2.08_01',
19449 'File::Spec' => '3.33',
19450 'File::Spec::Cygwin' => '3.33',
19451 'File::Spec::Epoc' => '3.33',
19452 'File::Spec::Functions' => '3.33',
19453 'File::Spec::Mac' => '3.33',
19454 'File::Spec::OS2' => '3.33',
19455 'File::Spec::Unix' => '3.33',
19456 'File::Spec::VMS' => '3.33',
19457 'File::Spec::Win32' => '3.33',
19458 'File::Temp' => '0.22',
19459 'File::stat' => '1.03',
19460 'FileCache' => '1.08',
19461 'FileHandle' => '2.02',
19462 'Filter::Simple' => '0.85',
19463 'Filter::Util::Call' => '1.08',
19464 'FindBin' => '1.50',
19465 'GDBM_File' => '1.11',
19466 'Getopt::Long' => '2.38',
19467 'Getopt::Std' => '1.06',
19468 'Hash::Util' => '0.09',
19469 'Hash::Util::FieldHash' => '1.05',
19470 'I18N::Collate' => '1.01',
19471 'I18N::LangTags' => '0.35_01',
19472 'I18N::LangTags::Detect'=> '1.04',
19473 'I18N::LangTags::List' => '0.35_01',
19474 'I18N::Langinfo' => '0.06',
19475 'IO' => '1.25_02',
19476 'IO::Compress::Adapter::Bzip2'=> '2.030',
19477 'IO::Compress::Adapter::Deflate'=> '2.030',
19478 'IO::Compress::Adapter::Identity'=> '2.030',
19479 'IO::Compress::Base' => '2.030',
19480 'IO::Compress::Base::Common'=> '2.030',
19481 'IO::Compress::Bzip2' => '2.030',
19482 'IO::Compress::Deflate' => '2.030',
19483 'IO::Compress::Gzip' => '2.030',
19484 'IO::Compress::Gzip::Constants'=> '2.030',
19485 'IO::Compress::RawDeflate'=> '2.030',
19486 'IO::Compress::Zip' => '2.030',
19487 'IO::Compress::Zip::Constants'=> '2.030',
19488 'IO::Compress::Zlib::Constants'=> '2.030',
19489 'IO::Compress::Zlib::Extra'=> '2.030',
19490 'IO::Dir' => '1.07',
19491 'IO::File' => '1.14',
19492 'IO::Handle' => '1.28',
19493 'IO::Pipe' => '1.13',
19494 'IO::Poll' => '0.07',
19495 'IO::Seekable' => '1.10',
19496 'IO::Select' => '1.17',
19497 'IO::Socket' => '1.32',
19498 'IO::Socket::INET' => '1.31',
19499 'IO::Socket::UNIX' => '1.23',
19500 'IO::Uncompress::Adapter::Bunzip2'=> '2.030',
19501 'IO::Uncompress::Adapter::Identity'=> '2.030',
19502 'IO::Uncompress::Adapter::Inflate'=> '2.030',
19503 'IO::Uncompress::AnyInflate'=> '2.030',
19504 'IO::Uncompress::AnyUncompress'=> '2.030',
19505 'IO::Uncompress::Base' => '2.030',
19506 'IO::Uncompress::Bunzip2'=> '2.030',
19507 'IO::Uncompress::Gunzip'=> '2.030',
19508 'IO::Uncompress::Inflate'=> '2.030',
19509 'IO::Uncompress::RawInflate'=> '2.030',
19510 'IO::Uncompress::Unzip' => '2.030',
19511 'IO::Zlib' => '1.10',
19512 'IPC::Cmd' => '0.64',
19513 'IPC::Msg' => '2.03',
19514 'IPC::Open2' => '1.03',
19515 'IPC::Open3' => '1.07',
19516 'IPC::Semaphore' => '2.03',
19517 'IPC::SharedMem' => '2.03',
19518 'IPC::SysV' => '2.03',
19519 'List::Util' => '1.23',
19520 'List::Util::PP' => '1.23',
19521 'List::Util::XS' => '1.23',
19522 'Locale::Codes' => '3.14',
19523 'Locale::Codes::Country'=> '3.14',
19524 'Locale::Codes::Currency'=> '3.14',
19525 'Locale::Codes::Language'=> '3.14',
19526 'Locale::Codes::Script' => '3.14',
19527 'Locale::Constants' => '3.14',
19528 'Locale::Country' => '3.14',
19529 'Locale::Currency' => '3.14',
19530 'Locale::Language' => '3.14',
19531 'Locale::Maketext' => '1.16',
19532 'Locale::Maketext::Guts'=> undef,
19533 'Locale::Maketext::GutsLoader'=> undef,
19534 'Locale::Maketext::Simple'=> '0.21',
19535 'Locale::Script' => '3.14',
19536 'Log::Message' => '0.02',
19537 'Log::Message::Config' => '0.01',
19538 'Log::Message::Handlers'=> undef,
19539 'Log::Message::Item' => undef,
19540 'Log::Message::Simple' => '0.06',
19541 'MIME::Base64' => '3.09',
19542 'MIME::QuotedPrint' => '3.09',
19543 'Math::BigFloat' => '1.63',
19544 'Math::BigFloat::Trace' => '0.01',
19545 'Math::BigInt' => '1.97',
19546 'Math::BigInt::Calc' => '0.55',
19547 'Math::BigInt::CalcEmu' => '0.07',
19548 'Math::BigInt::FastCalc'=> '0.22',
19549 'Math::BigInt::Trace' => '0.01',
19550 'Math::BigRat' => '0.26',
19551 'Math::Complex' => '1.56',
19552 'Math::Trig' => '1.2',
19553 'Memoize' => '1.01_03',
19554 'Memoize::AnyDBM_File' => '0.65',
19555 'Memoize::Expire' => '1.00',
19556 'Memoize::ExpireFile' => '1.01',
19557 'Memoize::ExpireTest' => '0.65',
19558 'Memoize::NDBM_File' => '0.65',
19559 'Memoize::SDBM_File' => '0.65',
19560 'Memoize::Storable' => '0.65',
19561 'Module::Build' => '0.3607',
19562 'Module::Build::Base' => '0.3607',
19563 'Module::Build::Compat' => '0.3607',
19564 'Module::Build::Config' => '0.3607',
19565 'Module::Build::ConfigData'=> undef,
19566 'Module::Build::Cookbook'=> '0.3607',
19567 'Module::Build::Dumper' => '0.3607',
19568 'Module::Build::ModuleInfo'=> '0.3607',
19569 'Module::Build::Notes' => '0.3607',
19570 'Module::Build::PPMMaker'=> '0.3607',
19571 'Module::Build::Platform::Amiga'=> '0.3607',
19572 'Module::Build::Platform::Default'=> '0.3607',
19573 'Module::Build::Platform::EBCDIC'=> '0.3607',
19574 'Module::Build::Platform::MPEiX'=> '0.3607',
19575 'Module::Build::Platform::MacOS'=> '0.3607',
19576 'Module::Build::Platform::RiscOS'=> '0.3607',
19577 'Module::Build::Platform::Unix'=> '0.3607',
19578 'Module::Build::Platform::VMS'=> '0.3607',
19579 'Module::Build::Platform::VOS'=> '0.3607',
19580 'Module::Build::Platform::Windows'=> '0.3607',
19581 'Module::Build::Platform::aix'=> '0.3607',
19582 'Module::Build::Platform::cygwin'=> '0.3607',
19583 'Module::Build::Platform::darwin'=> '0.3607',
19584 'Module::Build::Platform::os2'=> '0.3607',
19585 'Module::Build::PodParser'=> '0.3607',
19586 'Module::Build::Version'=> '0.77',
19587 'Module::Build::YAML' => '1.40',
19588 'Module::CoreList' => '2.40',
19589 'Module::Load' => '0.18',
19590 'Module::Load::Conditional'=> '0.38',
19591 'Module::Loaded' => '0.06',
19592 'Module::Pluggable' => '3.9',
19593 'Module::Pluggable::Object'=> '3.9',
19594 'Moped::Msg' => '0.01',
19595 'NDBM_File' => '1.09',
19596 'NEXT' => '0.65',
19597 'Net::Cmd' => '2.29',
19598 'Net::Config' => '1.11',
19599 'Net::Domain' => '2.20',
19600 'Net::FTP' => '2.77',
19601 'Net::FTP::A' => '1.18',
19602 'Net::FTP::E' => '0.01',
19603 'Net::FTP::I' => '1.12',
19604 'Net::FTP::L' => '0.01',
19605 'Net::FTP::dataconn' => '0.11',
19606 'Net::NNTP' => '2.24',
19607 'Net::Netrc' => '2.12',
19608 'Net::POP3' => '2.29',
19609 'Net::Ping' => '2.36',
19610 'Net::SMTP' => '2.31',
19611 'Net::Time' => '2.10',
19612 'Net::hostent' => '1.01',
19613 'Net::netent' => '1.00',
19614 'Net::protoent' => '1.00',
19615 'Net::servent' => '1.01',
19616 'O' => '1.01',
19617 'ODBM_File' => '1.08',
19618 'Object::Accessor' => '0.36',
19619 'Opcode' => '1.16',
19620 'POSIX' => '1.21',
19621 'Package::Constants' => '0.02',
19622 'Params::Check' => '0.26',
19623 'Parse::CPAN::Meta' => '1.40',
19624 'PerlIO' => '1.06',
19625 'PerlIO::encoding' => '0.13',
19626 'PerlIO::scalar' => '0.10',
19627 'PerlIO::via' => '0.10',
19628 'PerlIO::via::QuotedPrint'=> '0.06',
19629 'Pod::Checker' => '1.45',
19630 'Pod::Escapes' => '1.04',
19631 'Pod::Find' => '1.35',
19632 'Pod::Functions' => '1.04',
19633 'Pod::Html' => '1.09',
19634 'Pod::InputObjects' => '1.31',
19635 'Pod::LaTeX' => '0.58',
19636 'Pod::Man' => '2.25',
19637 'Pod::ParseLink' => '1.10',
19638 'Pod::ParseUtils' => '1.36',
19639 'Pod::Parser' => '1.37',
19640 'Pod::Perldoc' => '3.15_02',
19641 'Pod::Perldoc::BaseTo' => undef,
19642 'Pod::Perldoc::GetOptsOO'=> undef,
19643 'Pod::Perldoc::ToChecker'=> undef,
19644 'Pod::Perldoc::ToMan' => undef,
19645 'Pod::Perldoc::ToNroff' => undef,
19646 'Pod::Perldoc::ToPod' => undef,
19647 'Pod::Perldoc::ToRtf' => undef,
19648 'Pod::Perldoc::ToText' => undef,
19649 'Pod::Perldoc::ToTk' => undef,
19650 'Pod::Perldoc::ToXml' => undef,
19651 'Pod::PlainText' => '2.04',
19652 'Pod::Select' => '1.36',
19653 'Pod::Simple' => '3.14',
19654 'Pod::Simple::BlackBox' => '3.14',
19655 'Pod::Simple::Checker' => '3.14',
19656 'Pod::Simple::Debug' => '3.14',
19657 'Pod::Simple::DumpAsText'=> '3.14',
19658 'Pod::Simple::DumpAsXML'=> '3.14',
19659 'Pod::Simple::HTML' => '3.14',
19660 'Pod::Simple::HTMLBatch'=> '3.14',
19661 'Pod::Simple::HTMLLegacy'=> '5.01',
19662 'Pod::Simple::LinkSection'=> '3.14',
19663 'Pod::Simple::Methody' => '3.14',
19664 'Pod::Simple::Progress' => '3.14',
19665 'Pod::Simple::PullParser'=> '3.14',
19666 'Pod::Simple::PullParserEndToken'=> '3.14',
19667 'Pod::Simple::PullParserStartToken'=> '3.14',
19668 'Pod::Simple::PullParserTextToken'=> '3.14',
19669 'Pod::Simple::PullParserToken'=> '3.14',
19670 'Pod::Simple::RTF' => '3.14',
19671 'Pod::Simple::Search' => '3.14',
19672 'Pod::Simple::SimpleTree'=> '3.14',
19673 'Pod::Simple::Text' => '3.14',
19674 'Pod::Simple::TextContent'=> '3.14',
19675 'Pod::Simple::TiedOutFH'=> '3.14',
19676 'Pod::Simple::Transcode'=> '3.14',
19677 'Pod::Simple::TranscodeDumb'=> '3.14',
19678 'Pod::Simple::TranscodeSmart'=> '3.14',
19679 'Pod::Simple::XHTML' => '3.14',
19680 'Pod::Simple::XMLOutStream'=> '3.14',
19681 'Pod::Text' => '3.15',
19682 'Pod::Text::Color' => '2.06',
19683 'Pod::Text::Overstrike' => '2.04',
19684 'Pod::Text::Termcap' => '2.06',
19685 'Pod::Usage' => '1.36',
19686 'SDBM_File' => '1.07',
19687 'Safe' => '2.28',
19688 'Scalar::Util' => '1.23',
19689 'Scalar::Util::PP' => '1.23',
19690 'Search::Dict' => '1.03',
19691 'SelectSaver' => '1.02',
19692 'SelfLoader' => '1.17',
19693 'Shell' => '0.72_01',
19694 'Socket' => '1.90',
19695 'Storable' => '2.22',
19696 'Symbol' => '1.07',
19697 'Sys::Hostname' => '1.13',
19698 'Sys::Syslog' => '0.27',
19699 'Sys::Syslog::win32::Win32'=> undef,
19700 'TAP::Base' => '3.22',
19701 'TAP::Formatter::Base' => '3.22',
19702 'TAP::Formatter::Color' => '3.22',
19703 'TAP::Formatter::Console'=> '3.22',
19704 'TAP::Formatter::Console::ParallelSession'=> '3.22',
19705 'TAP::Formatter::Console::Session'=> '3.22',
19706 'TAP::Formatter::File' => '3.22',
19707 'TAP::Formatter::File::Session'=> '3.22',
19708 'TAP::Formatter::Session'=> '3.22',
19709 'TAP::Harness' => '3.22',
19710 'TAP::Object' => '3.22',
19711 'TAP::Parser' => '3.22',
19712 'TAP::Parser::Aggregator'=> '3.22',
19713 'TAP::Parser::Grammar' => '3.22',
19714 'TAP::Parser::Iterator' => '3.22',
19715 'TAP::Parser::Iterator::Array'=> '3.22',
19716 'TAP::Parser::Iterator::Process'=> '3.22',
19717 'TAP::Parser::Iterator::Stream'=> '3.22',
19718 'TAP::Parser::IteratorFactory'=> '3.22',
19719 'TAP::Parser::Multiplexer'=> '3.22',
19720 'TAP::Parser::Result' => '3.22',
19721 'TAP::Parser::Result::Bailout'=> '3.22',
19722 'TAP::Parser::Result::Comment'=> '3.22',
19723 'TAP::Parser::Result::Plan'=> '3.22',
19724 'TAP::Parser::Result::Pragma'=> '3.22',
19725 'TAP::Parser::Result::Test'=> '3.22',
19726 'TAP::Parser::Result::Unknown'=> '3.22',
19727 'TAP::Parser::Result::Version'=> '3.22',
19728 'TAP::Parser::Result::YAML'=> '3.22',
19729 'TAP::Parser::ResultFactory'=> '3.22',
19730 'TAP::Parser::Scheduler'=> '3.22',
19731 'TAP::Parser::Scheduler::Job'=> '3.22',
19732 'TAP::Parser::Scheduler::Spinner'=> '3.22',
19733 'TAP::Parser::Source' => '3.22',
19734 'TAP::Parser::SourceHandler'=> '3.22',
19735 'TAP::Parser::SourceHandler::Executable'=> '3.22',
19736 'TAP::Parser::SourceHandler::File'=> '3.22',
19737 'TAP::Parser::SourceHandler::Handle'=> '3.22',
19738 'TAP::Parser::SourceHandler::Perl'=> '3.22',
19739 'TAP::Parser::SourceHandler::RawTAP'=> '3.22',
19740 'TAP::Parser::Utils' => '3.22',
19741 'TAP::Parser::YAMLish::Reader'=> '3.22',
19742 'TAP::Parser::YAMLish::Writer'=> '3.22',
19743 'Term::ANSIColor' => '3.00',
19744 'Term::Cap' => '1.12',
19745 'Term::Complete' => '1.402',
19746 'Term::ReadLine' => '1.07',
19747 'Term::UI' => '0.20',
19748 'Term::UI::History' => undef,
19749 'Test' => '1.25_02',
19750 'Test::Builder' => '0.97_01',
19751 'Test::Builder::Module' => '0.97_01',
19752 'Test::Builder::Tester' => '1.21_01',
19753 'Test::Builder::Tester::Color'=> '1.21_01',
19754 'Test::Harness' => '3.22',
19755 'Test::More' => '0.97_01',
19756 'Test::Simple' => '0.97_01',
19757 'Text::Abbrev' => '1.01',
19758 'Text::Balanced' => '2.02',
19759 'Text::ParseWords' => '3.27',
19760 'Text::Soundex' => '3.03_01',
19761 'Text::Tabs' => '2009.0305',
19762 'Text::Wrap' => '2009.0305',
19763 'Thread' => '3.02',
19764 'Thread::Queue' => '2.11',
19765 'Thread::Semaphore' => '2.11',
19766 'Tie::Array' => '1.04',
19767 'Tie::File' => '0.97_02',
19768 'Tie::Handle' => '4.2',
19769 'Tie::Hash' => '1.04',
19770 'Tie::Hash::NamedCapture'=> '0.07',
19771 'Tie::Memoize' => '1.1',
19772 'Tie::RefHash' => '1.38',
19773 'Tie::Scalar' => '1.02',
19774 'Tie::StdHandle' => '4.2',
19775 'Tie::SubstrHash' => '1.00',
19776 'Time::HiRes' => '1.9721',
19777 'Time::Local' => '1.1901_01',
19778 'Time::Piece' => '1.20_01',
19779 'Time::Piece::Seconds' => undef,
19780 'Time::Seconds' => undef,
19781 'Time::gmtime' => '1.03',
19782 'Time::localtime' => '1.02',
19783 'Time::tm' => '1.00',
19784 'UNIVERSAL' => '1.07',
19785 'Unicode' => '5.2.0',
19786 'Unicode::Collate' => '0.63',
19787 'Unicode::Collate::Locale'=> '0.63',
19788 'Unicode::Normalize' => '1.07',
19789 'Unicode::UCD' => '0.29',
19790 'User::grent' => '1.01',
19791 'User::pwent' => '1.00',
19792 'VMS::DCLsym' => '1.04',
19793 'VMS::Filespec' => '1.12',
19794 'VMS::Stdio' => '2.4',
19795 'Win32' => '0.39',
19796 'Win32API::File' => '0.1101',
19797 'Win32API::File::ExtUtils::Myconst2perl'=> '1',
19798 'Win32CORE' => '0.02',
19799 'XS::APItest' => '0.23',
19800 'XS::Typemap' => '0.03',
19801 'XSLoader' => '0.13',
19802 'XSLoader::XSLoader' => '0.13',
19803 'attributes' => '0.13',
19804 'autodie' => '2.10',
19805 'autodie::exception' => '2.10',
19806 'autodie::exception::system'=> '2.10',
19807 'autodie::hints' => '2.10',
19808 'autouse' => '1.06',
19809 'base' => '2.15',
19810 'bigint' => '0.25',
19811 'bignum' => '0.25',
19812 'bigrat' => '0.25',
19813 'blib' => '1.06',
19814 'bytes' => '1.04',
19815 'charnames' => '1.16',
19816 'constant' => '1.20',
19817 'deprecate' => '0.01',
19818 'diagnostics' => '1.20',
19819 'encoding' => '2.6_01',
19820 'encoding::warnings' => '0.11',
19821 'feature' => '1.18',
19822 'fields' => '2.15',
19823 'filetest' => '1.02',
19824 'if' => '0.06',
19825 'inc::latest' => '0.3607',
19826 'integer' => '1.00',
19827 'less' => '0.03',
19828 'lib' => '0.63',
19829 'locale' => '1.00',
19830 'mro' => '1.04',
19831 'open' => '1.08',
19832 'ops' => '1.02',
19833 'overload' => '1.11',
19834 'overload::numbers' => undef,
19835 'overloading' => '0.01',
19836 'parent' => '0.223',
19837 're' => '0.13',
19838 'sigtrap' => '1.05',
19839 'sort' => '2.01',
19840 'strict' => '1.04',
19841 'subs' => '1.00',
19842 'threads' => '1.81_01',
19843 'threads::shared' => '1.34',
19844 'utf8' => '1.08',
19845 'vars' => '1.02',
19846 'version' => '0.82',
19847 'vmsish' => '1.02',
19848 'warnings' => '1.11',
19849 'warnings::register' => '1.02',
19851 5.013007 => {
19852 'AnyDBM_File' => '1.00',
19853 'App::Cpan' => '1.5701',
19854 'App::Prove' => '3.22',
19855 'App::Prove::State' => '3.22',
19856 'App::Prove::State::Result'=> '3.22',
19857 'App::Prove::State::Result::Test'=> '3.22',
19858 'Archive::Extract' => '0.46',
19859 'Archive::Tar' => '1.72',
19860 'Archive::Tar::Constant'=> '1.72',
19861 'Archive::Tar::File' => '1.72',
19862 'Attribute::Handlers' => '0.88',
19863 'AutoLoader' => '5.71',
19864 'AutoSplit' => '1.06',
19865 'B' => '1.26',
19866 'B::Concise' => '0.81',
19867 'B::Debug' => '1.16',
19868 'B::Deparse' => '1.01',
19869 'B::Lint' => '1.12',
19870 'B::Lint::Debug' => '1.12',
19871 'B::Showlex' => '1.02',
19872 'B::Terse' => '1.05',
19873 'B::Xref' => '1.02',
19874 'Benchmark' => '1.11',
19875 'CGI' => '3.50',
19876 'CGI::Apache' => '1.01',
19877 'CGI::Carp' => '3.45',
19878 'CGI::Cookie' => '1.29',
19879 'CGI::Fast' => '1.08',
19880 'CGI::Pretty' => '3.46',
19881 'CGI::Push' => '1.04',
19882 'CGI::Switch' => '1.01',
19883 'CGI::Util' => '3.48',
19884 'CPAN' => '1.94_62',
19885 'CPAN::Author' => '5.5',
19886 'CPAN::Bundle' => '5.5',
19887 'CPAN::CacheMgr' => '5.5',
19888 'CPAN::Complete' => '5.5',
19889 'CPAN::Debug' => '5.5001',
19890 'CPAN::DeferredCode' => '5.50',
19891 'CPAN::Distribution' => '1.9600',
19892 'CPAN::Distroprefs' => '6',
19893 'CPAN::Distrostatus' => '5.5',
19894 'CPAN::Exception::RecursiveDependency'=> '5.5',
19895 'CPAN::Exception::blocked_urllist'=> '1.0',
19896 'CPAN::Exception::yaml_not_installed'=> '5.5',
19897 'CPAN::FTP' => '5.5005',
19898 'CPAN::FTP::netrc' => '1.00',
19899 'CPAN::FirstTime' => '5.5301',
19900 'CPAN::HandleConfig' => '5.5001',
19901 'CPAN::Index' => '1.94',
19902 'CPAN::InfoObj' => '5.5',
19903 'CPAN::Kwalify' => '5.50',
19904 'CPAN::LWP::UserAgent' => '1.94',
19905 'CPAN::Mirrors' => '1.77',
19906 'CPAN::Module' => '5.5',
19907 'CPAN::Nox' => '5.50',
19908 'CPAN::Prompt' => '5.5',
19909 'CPAN::Queue' => '5.5001',
19910 'CPAN::Shell' => '5.5001',
19911 'CPAN::Tarzip' => '5.5011',
19912 'CPAN::URL' => '5.5',
19913 'CPAN::Version' => '5.5001',
19914 'CPANPLUS' => '0.9010',
19915 'CPANPLUS::Backend' => undef,
19916 'CPANPLUS::Backend::RV' => undef,
19917 'CPANPLUS::Config' => undef,
19918 'CPANPLUS::Configure' => undef,
19919 'CPANPLUS::Configure::Setup'=> undef,
19920 'CPANPLUS::Dist' => undef,
19921 'CPANPLUS::Dist::Autobundle'=> undef,
19922 'CPANPLUS::Dist::Base' => undef,
19923 'CPANPLUS::Dist::Build' => '0.50',
19924 'CPANPLUS::Dist::Build::Constants'=> '0.50',
19925 'CPANPLUS::Dist::MM' => undef,
19926 'CPANPLUS::Dist::Sample'=> undef,
19927 'CPANPLUS::Error' => undef,
19928 'CPANPLUS::Internals' => '0.9010',
19929 'CPANPLUS::Internals::Constants'=> undef,
19930 'CPANPLUS::Internals::Constants::Report'=> undef,
19931 'CPANPLUS::Internals::Extract'=> undef,
19932 'CPANPLUS::Internals::Fetch'=> undef,
19933 'CPANPLUS::Internals::Report'=> undef,
19934 'CPANPLUS::Internals::Search'=> undef,
19935 'CPANPLUS::Internals::Source'=> undef,
19936 'CPANPLUS::Internals::Source::Memory'=> undef,
19937 'CPANPLUS::Internals::Source::SQLite'=> undef,
19938 'CPANPLUS::Internals::Source::SQLite::Tie'=> undef,
19939 'CPANPLUS::Internals::Utils'=> undef,
19940 'CPANPLUS::Internals::Utils::Autoflush'=> undef,
19941 'CPANPLUS::Module' => undef,
19942 'CPANPLUS::Module::Author'=> undef,
19943 'CPANPLUS::Module::Author::Fake'=> undef,
19944 'CPANPLUS::Module::Checksums'=> undef,
19945 'CPANPLUS::Module::Fake'=> undef,
19946 'CPANPLUS::Module::Signature'=> undef,
19947 'CPANPLUS::Selfupdate' => undef,
19948 'CPANPLUS::Shell' => undef,
19949 'CPANPLUS::Shell::Classic'=> '0.0562',
19950 'CPANPLUS::Shell::Default'=> '0.9010',
19951 'CPANPLUS::Shell::Default::Plugins::CustomSource'=> undef,
19952 'CPANPLUS::Shell::Default::Plugins::Remote'=> undef,
19953 'CPANPLUS::Shell::Default::Plugins::Source'=> undef,
19954 'Carp' => '1.19',
19955 'Carp::Heavy' => '1.19',
19956 'Class::Struct' => '0.63',
19957 'Compress::Raw::Bzip2' => '2.031',
19958 'Compress::Raw::Zlib' => '2.030',
19959 'Compress::Zlib' => '2.030',
19960 'Config' => undef,
19961 'Config::Extensions' => '0.01',
19962 'Cwd' => '3.34',
19963 'DB' => '1.03',
19964 'DBM_Filter' => '0.03',
19965 'DBM_Filter::compress' => '0.02',
19966 'DBM_Filter::encode' => '0.02',
19967 'DBM_Filter::int32' => '0.02',
19968 'DBM_Filter::null' => '0.02',
19969 'DBM_Filter::utf8' => '0.02',
19970 'DB_File' => '1.820',
19971 'Data::Dumper' => '2.130_01',
19972 'Devel::DProf' => '20080331.00',
19973 'Devel::DProf::dprof::V'=> undef,
19974 'Devel::InnerPackage' => '0.3',
19975 'Devel::PPPort' => '3.19',
19976 'Devel::Peek' => '1.05',
19977 'Devel::SelfStubber' => '1.03',
19978 'Digest' => '1.16',
19979 'Digest::MD5' => '2.51',
19980 'Digest::SHA' => '5.48',
19981 'Digest::base' => '1.16',
19982 'Digest::file' => '1.16',
19983 'DirHandle' => '1.03',
19984 'Dumpvalue' => '1.14',
19985 'DynaLoader' => '1.11',
19986 'Encode' => '2.40',
19987 'Encode::Alias' => '2.12',
19988 'Encode::Byte' => '2.04',
19989 'Encode::CJKConstants' => '2.02',
19990 'Encode::CN' => '2.03',
19991 'Encode::CN::HZ' => '2.05',
19992 'Encode::Config' => '2.05',
19993 'Encode::EBCDIC' => '2.02',
19994 'Encode::Encoder' => '2.01',
19995 'Encode::Encoding' => '2.05',
19996 'Encode::GSM0338' => '2.01',
19997 'Encode::Guess' => '2.04',
19998 'Encode::JP' => '2.04',
19999 'Encode::JP::H2Z' => '2.02',
20000 'Encode::JP::JIS7' => '2.04',
20001 'Encode::KR' => '2.03',
20002 'Encode::KR::2022_KR' => '2.02',
20003 'Encode::MIME::Header' => '2.12',
20004 'Encode::MIME::Header::ISO_2022_JP'=> '1.03',
20005 'Encode::MIME::Name' => '1.01',
20006 'Encode::Symbol' => '2.02',
20007 'Encode::TW' => '2.03',
20008 'Encode::Unicode' => '2.07',
20009 'Encode::Unicode::UTF7' => '2.05',
20010 'English' => '1.04',
20011 'Env' => '1.01',
20012 'Errno' => '1.13',
20013 'Exporter' => '5.64_03',
20014 'Exporter::Heavy' => '5.64_03',
20015 'ExtUtils::CBuilder' => '0.2703',
20016 'ExtUtils::CBuilder::Base'=> '0.2703_01',
20017 'ExtUtils::CBuilder::Platform::Unix'=> '0.2703',
20018 'ExtUtils::CBuilder::Platform::VMS'=> '0.2703',
20019 'ExtUtils::CBuilder::Platform::Windows'=> '0.2703',
20020 'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.2703',
20021 'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.2703',
20022 'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.2703',
20023 'ExtUtils::CBuilder::Platform::aix'=> '0.2703',
20024 'ExtUtils::CBuilder::Platform::cygwin'=> '0.2703',
20025 'ExtUtils::CBuilder::Platform::darwin'=> '0.2703',
20026 'ExtUtils::CBuilder::Platform::dec_osf'=> '0.2703',
20027 'ExtUtils::CBuilder::Platform::os2'=> '0.2703',
20028 'ExtUtils::Command' => '1.16',
20029 'ExtUtils::Command::MM' => '6.57_05',
20030 'ExtUtils::Constant' => '0.23',
20031 'ExtUtils::Constant::Base'=> '0.05',
20032 'ExtUtils::Constant::ProxySubs'=> '0.08',
20033 'ExtUtils::Constant::Utils'=> '0.02',
20034 'ExtUtils::Constant::XS'=> '0.03',
20035 'ExtUtils::Embed' => '1.29',
20036 'ExtUtils::Install' => '1.55',
20037 'ExtUtils::Installed' => '1.999_001',
20038 'ExtUtils::Liblist' => '6.57_05',
20039 'ExtUtils::Liblist::Kid'=> '6.5705',
20040 'ExtUtils::MM' => '6.57_05',
20041 'ExtUtils::MM_AIX' => '6.57_05',
20042 'ExtUtils::MM_Any' => '6.57_05',
20043 'ExtUtils::MM_BeOS' => '6.57_05',
20044 'ExtUtils::MM_Cygwin' => '6.57_05',
20045 'ExtUtils::MM_DOS' => '6.5705',
20046 'ExtUtils::MM_Darwin' => '6.57_05',
20047 'ExtUtils::MM_MacOS' => '6.5705',
20048 'ExtUtils::MM_NW5' => '6.57_05',
20049 'ExtUtils::MM_OS2' => '6.57_05',
20050 'ExtUtils::MM_QNX' => '6.57_05',
20051 'ExtUtils::MM_UWIN' => '6.5705',
20052 'ExtUtils::MM_Unix' => '6.57_05',
20053 'ExtUtils::MM_VMS' => '6.57_05',
20054 'ExtUtils::MM_VOS' => '6.57_05',
20055 'ExtUtils::MM_Win32' => '6.57_05',
20056 'ExtUtils::MM_Win95' => '6.57_05',
20057 'ExtUtils::MY' => '6.5705',
20058 'ExtUtils::MakeMaker' => '6.57_05',
20059 'ExtUtils::MakeMaker::Config'=> '6.57_05',
20060 'ExtUtils::MakeMaker::YAML'=> '1.44',
20061 'ExtUtils::Manifest' => '1.58',
20062 'ExtUtils::Miniperl' => undef,
20063 'ExtUtils::Mkbootstrap' => '6.57_05',
20064 'ExtUtils::Mksymlists' => '6.57_05',
20065 'ExtUtils::Packlist' => '1.44',
20066 'ExtUtils::ParseXS' => '2.2207',
20067 'ExtUtils::XSSymSet' => '1.2',
20068 'ExtUtils::testlib' => '6.5705',
20069 'Fatal' => '2.10',
20070 'Fcntl' => '1.10',
20071 'File::Basename' => '2.79',
20072 'File::CheckTree' => '4.4',
20073 'File::Compare' => '1.1006',
20074 'File::Copy' => '2.20',
20075 'File::DosGlob' => '1.03',
20076 'File::Fetch' => '0.28',
20077 'File::Find' => '1.18',
20078 'File::Glob' => '1.10',
20079 'File::GlobMapper' => '1.000',
20080 'File::Path' => '2.08_01',
20081 'File::Spec' => '3.33',
20082 'File::Spec::Cygwin' => '3.33',
20083 'File::Spec::Epoc' => '3.33',
20084 'File::Spec::Functions' => '3.33',
20085 'File::Spec::Mac' => '3.33',
20086 'File::Spec::OS2' => '3.33',
20087 'File::Spec::Unix' => '3.33',
20088 'File::Spec::VMS' => '3.33',
20089 'File::Spec::Win32' => '3.33',
20090 'File::Temp' => '0.22',
20091 'File::stat' => '1.04',
20092 'FileCache' => '1.08',
20093 'FileHandle' => '2.02',
20094 'Filter::Simple' => '0.85',
20095 'Filter::Util::Call' => '1.08',
20096 'FindBin' => '1.50',
20097 'GDBM_File' => '1.12',
20098 'Getopt::Long' => '2.38',
20099 'Getopt::Std' => '1.06',
20100 'Hash::Util' => '0.10',
20101 'Hash::Util::FieldHash' => '1.06',
20102 'I18N::Collate' => '1.01',
20103 'I18N::LangTags' => '0.35_01',
20104 'I18N::LangTags::Detect'=> '1.04',
20105 'I18N::LangTags::List' => '0.35_01',
20106 'I18N::Langinfo' => '0.07',
20107 'IO' => '1.25_02',
20108 'IO::Compress::Adapter::Bzip2'=> '2.030',
20109 'IO::Compress::Adapter::Deflate'=> '2.030',
20110 'IO::Compress::Adapter::Identity'=> '2.030',
20111 'IO::Compress::Base' => '2.030',
20112 'IO::Compress::Base::Common'=> '2.030',
20113 'IO::Compress::Bzip2' => '2.030',
20114 'IO::Compress::Deflate' => '2.030',
20115 'IO::Compress::Gzip' => '2.030',
20116 'IO::Compress::Gzip::Constants'=> '2.030',
20117 'IO::Compress::RawDeflate'=> '2.030',
20118 'IO::Compress::Zip' => '2.030',
20119 'IO::Compress::Zip::Constants'=> '2.030',
20120 'IO::Compress::Zlib::Constants'=> '2.030',
20121 'IO::Compress::Zlib::Extra'=> '2.030',
20122 'IO::Dir' => '1.07',
20123 'IO::File' => '1.14',
20124 'IO::Handle' => '1.28',
20125 'IO::Pipe' => '1.13',
20126 'IO::Poll' => '0.07',
20127 'IO::Seekable' => '1.10',
20128 'IO::Select' => '1.17',
20129 'IO::Socket' => '1.32',
20130 'IO::Socket::INET' => '1.31',
20131 'IO::Socket::UNIX' => '1.23',
20132 'IO::Uncompress::Adapter::Bunzip2'=> '2.030',
20133 'IO::Uncompress::Adapter::Identity'=> '2.030',
20134 'IO::Uncompress::Adapter::Inflate'=> '2.030',
20135 'IO::Uncompress::AnyInflate'=> '2.030',
20136 'IO::Uncompress::AnyUncompress'=> '2.030',
20137 'IO::Uncompress::Base' => '2.030',
20138 'IO::Uncompress::Bunzip2'=> '2.030',
20139 'IO::Uncompress::Gunzip'=> '2.030',
20140 'IO::Uncompress::Inflate'=> '2.030',
20141 'IO::Uncompress::RawInflate'=> '2.030',
20142 'IO::Uncompress::Unzip' => '2.030',
20143 'IO::Zlib' => '1.10',
20144 'IPC::Cmd' => '0.64',
20145 'IPC::Msg' => '2.03',
20146 'IPC::Open2' => '1.03',
20147 'IPC::Open3' => '1.07',
20148 'IPC::Semaphore' => '2.03',
20149 'IPC::SharedMem' => '2.03',
20150 'IPC::SysV' => '2.03',
20151 'List::Util' => '1.23',
20152 'List::Util::PP' => '1.23',
20153 'List::Util::XS' => '1.23',
20154 'Locale::Codes' => '3.14',
20155 'Locale::Codes::Country'=> '3.14',
20156 'Locale::Codes::Currency'=> '3.14',
20157 'Locale::Codes::Language'=> '3.14',
20158 'Locale::Codes::Script' => '3.14',
20159 'Locale::Constants' => '3.14',
20160 'Locale::Country' => '3.14',
20161 'Locale::Currency' => '3.14',
20162 'Locale::Language' => '3.14',
20163 'Locale::Maketext' => '1.17',
20164 'Locale::Maketext::Guts'=> '1.17',
20165 'Locale::Maketext::GutsLoader'=> '1.17',
20166 'Locale::Maketext::Simple'=> '0.21',
20167 'Locale::Script' => '3.14',
20168 'Log::Message' => '0.02',
20169 'Log::Message::Config' => '0.01',
20170 'Log::Message::Handlers'=> undef,
20171 'Log::Message::Item' => undef,
20172 'Log::Message::Simple' => '0.06',
20173 'MIME::Base64' => '3.10',
20174 'MIME::QuotedPrint' => '3.10',
20175 'Math::BigFloat' => '1.99_01',
20176 'Math::BigFloat::Trace' => '0.01',
20177 'Math::BigInt' => '1.99_01',
20178 'Math::BigInt::Calc' => '1.99_01',
20179 'Math::BigInt::CalcEmu' => '1.99_01',
20180 'Math::BigInt::FastCalc'=> '0.24_01',
20181 'Math::BigInt::Trace' => '0.01',
20182 'Math::BigRat' => '0.26_01',
20183 'Math::Complex' => '1.56',
20184 'Math::Trig' => '1.2',
20185 'Memoize' => '1.01_03',
20186 'Memoize::AnyDBM_File' => '0.65',
20187 'Memoize::Expire' => '1.00',
20188 'Memoize::ExpireFile' => '1.01',
20189 'Memoize::ExpireTest' => '0.65',
20190 'Memoize::NDBM_File' => '0.65',
20191 'Memoize::SDBM_File' => '0.65',
20192 'Memoize::Storable' => '0.65',
20193 'Module::Build' => '0.3607',
20194 'Module::Build::Base' => '0.3607',
20195 'Module::Build::Compat' => '0.3607',
20196 'Module::Build::Config' => '0.3607',
20197 'Module::Build::ConfigData'=> undef,
20198 'Module::Build::Cookbook'=> '0.3607',
20199 'Module::Build::Dumper' => '0.3607',
20200 'Module::Build::ModuleInfo'=> '0.3607',
20201 'Module::Build::Notes' => '0.3607',
20202 'Module::Build::PPMMaker'=> '0.3607',
20203 'Module::Build::Platform::Amiga'=> '0.3607',
20204 'Module::Build::Platform::Default'=> '0.3607',
20205 'Module::Build::Platform::EBCDIC'=> '0.3607',
20206 'Module::Build::Platform::MPEiX'=> '0.3607',
20207 'Module::Build::Platform::MacOS'=> '0.3607',
20208 'Module::Build::Platform::RiscOS'=> '0.3607',
20209 'Module::Build::Platform::Unix'=> '0.3607',
20210 'Module::Build::Platform::VMS'=> '0.3607',
20211 'Module::Build::Platform::VOS'=> '0.3607',
20212 'Module::Build::Platform::Windows'=> '0.3607',
20213 'Module::Build::Platform::aix'=> '0.3607',
20214 'Module::Build::Platform::cygwin'=> '0.3607',
20215 'Module::Build::Platform::darwin'=> '0.3607',
20216 'Module::Build::Platform::os2'=> '0.3607',
20217 'Module::Build::PodParser'=> '0.3607',
20218 'Module::Build::Version'=> '0.77',
20219 'Module::Build::YAML' => '1.40',
20220 'Module::CoreList' => '2.41',
20221 'Module::Load' => '0.18',
20222 'Module::Load::Conditional'=> '0.38',
20223 'Module::Loaded' => '0.06',
20224 'Module::Pluggable' => '3.9',
20225 'Module::Pluggable::Object'=> '3.9',
20226 'Moped::Msg' => '0.01',
20227 'NDBM_File' => '1.10',
20228 'NEXT' => '0.65',
20229 'Net::Cmd' => '2.29',
20230 'Net::Config' => '1.11',
20231 'Net::Domain' => '2.20',
20232 'Net::FTP' => '2.77',
20233 'Net::FTP::A' => '1.18',
20234 'Net::FTP::E' => '0.01',
20235 'Net::FTP::I' => '1.12',
20236 'Net::FTP::L' => '0.01',
20237 'Net::FTP::dataconn' => '0.11',
20238 'Net::NNTP' => '2.24',
20239 'Net::Netrc' => '2.12',
20240 'Net::POP3' => '2.29',
20241 'Net::Ping' => '2.36',
20242 'Net::SMTP' => '2.31',
20243 'Net::Time' => '2.10',
20244 'Net::hostent' => '1.01',
20245 'Net::netent' => '1.00',
20246 'Net::protoent' => '1.00',
20247 'Net::servent' => '1.01',
20248 'O' => '1.01',
20249 'ODBM_File' => '1.09',
20250 'Object::Accessor' => '0.36',
20251 'Opcode' => '1.17',
20252 'POSIX' => '1.22',
20253 'Package::Constants' => '0.02',
20254 'Params::Check' => '0.26',
20255 'Parse::CPAN::Meta' => '1.40',
20256 'PerlIO' => '1.06',
20257 'PerlIO::encoding' => '0.13',
20258 'PerlIO::scalar' => '0.10',
20259 'PerlIO::via' => '0.10',
20260 'PerlIO::via::QuotedPrint'=> '0.06',
20261 'Pod::Checker' => '1.45',
20262 'Pod::Escapes' => '1.04',
20263 'Pod::Find' => '1.35',
20264 'Pod::Functions' => '1.04',
20265 'Pod::Html' => '1.09',
20266 'Pod::InputObjects' => '1.31',
20267 'Pod::LaTeX' => '0.58',
20268 'Pod::Man' => '2.25',
20269 'Pod::ParseLink' => '1.10',
20270 'Pod::ParseUtils' => '1.36',
20271 'Pod::Parser' => '1.37',
20272 'Pod::Perldoc' => '3.15_02',
20273 'Pod::Perldoc::BaseTo' => undef,
20274 'Pod::Perldoc::GetOptsOO'=> undef,
20275 'Pod::Perldoc::ToChecker'=> undef,
20276 'Pod::Perldoc::ToMan' => undef,
20277 'Pod::Perldoc::ToNroff' => undef,
20278 'Pod::Perldoc::ToPod' => undef,
20279 'Pod::Perldoc::ToRtf' => undef,
20280 'Pod::Perldoc::ToText' => undef,
20281 'Pod::Perldoc::ToTk' => undef,
20282 'Pod::Perldoc::ToXml' => undef,
20283 'Pod::PlainText' => '2.04',
20284 'Pod::Select' => '1.36',
20285 'Pod::Simple' => '3.15',
20286 'Pod::Simple::BlackBox' => '3.15',
20287 'Pod::Simple::Checker' => '3.15',
20288 'Pod::Simple::Debug' => '3.15',
20289 'Pod::Simple::DumpAsText'=> '3.15',
20290 'Pod::Simple::DumpAsXML'=> '3.15',
20291 'Pod::Simple::HTML' => '3.15',
20292 'Pod::Simple::HTMLBatch'=> '3.15',
20293 'Pod::Simple::HTMLLegacy'=> '5.01',
20294 'Pod::Simple::LinkSection'=> '3.15',
20295 'Pod::Simple::Methody' => '3.15',
20296 'Pod::Simple::Progress' => '3.15',
20297 'Pod::Simple::PullParser'=> '3.15',
20298 'Pod::Simple::PullParserEndToken'=> '3.15',
20299 'Pod::Simple::PullParserStartToken'=> '3.15',
20300 'Pod::Simple::PullParserTextToken'=> '3.15',
20301 'Pod::Simple::PullParserToken'=> '3.15',
20302 'Pod::Simple::RTF' => '3.15',
20303 'Pod::Simple::Search' => '3.15',
20304 'Pod::Simple::SimpleTree'=> '3.15',
20305 'Pod::Simple::Text' => '3.15',
20306 'Pod::Simple::TextContent'=> '3.15',
20307 'Pod::Simple::TiedOutFH'=> '3.15',
20308 'Pod::Simple::Transcode'=> '3.15',
20309 'Pod::Simple::TranscodeDumb'=> '3.15',
20310 'Pod::Simple::TranscodeSmart'=> '3.15',
20311 'Pod::Simple::XHTML' => '3.15',
20312 'Pod::Simple::XMLOutStream'=> '3.15',
20313 'Pod::Text' => '3.15',
20314 'Pod::Text::Color' => '2.06',
20315 'Pod::Text::Overstrike' => '2.04',
20316 'Pod::Text::Termcap' => '2.06',
20317 'Pod::Usage' => '1.36',
20318 'SDBM_File' => '1.08',
20319 'Safe' => '2.29',
20320 'Scalar::Util' => '1.23',
20321 'Scalar::Util::PP' => '1.23',
20322 'Search::Dict' => '1.03',
20323 'SelectSaver' => '1.02',
20324 'SelfLoader' => '1.18',
20325 'Shell' => '0.72_01',
20326 'Socket' => '1.91',
20327 'Storable' => '2.24',
20328 'Symbol' => '1.07',
20329 'Sys::Hostname' => '1.14',
20330 'Sys::Syslog' => '0.27',
20331 'Sys::Syslog::win32::Win32'=> undef,
20332 'TAP::Base' => '3.22',
20333 'TAP::Formatter::Base' => '3.22',
20334 'TAP::Formatter::Color' => '3.22',
20335 'TAP::Formatter::Console'=> '3.22',
20336 'TAP::Formatter::Console::ParallelSession'=> '3.22',
20337 'TAP::Formatter::Console::Session'=> '3.22',
20338 'TAP::Formatter::File' => '3.22',
20339 'TAP::Formatter::File::Session'=> '3.22',
20340 'TAP::Formatter::Session'=> '3.22',
20341 'TAP::Harness' => '3.22',
20342 'TAP::Object' => '3.22',
20343 'TAP::Parser' => '3.22',
20344 'TAP::Parser::Aggregator'=> '3.22',
20345 'TAP::Parser::Grammar' => '3.22',
20346 'TAP::Parser::Iterator' => '3.22',
20347 'TAP::Parser::Iterator::Array'=> '3.22',
20348 'TAP::Parser::Iterator::Process'=> '3.22',
20349 'TAP::Parser::Iterator::Stream'=> '3.22',
20350 'TAP::Parser::IteratorFactory'=> '3.22',
20351 'TAP::Parser::Multiplexer'=> '3.22',
20352 'TAP::Parser::Result' => '3.22',
20353 'TAP::Parser::Result::Bailout'=> '3.22',
20354 'TAP::Parser::Result::Comment'=> '3.22',
20355 'TAP::Parser::Result::Plan'=> '3.22',
20356 'TAP::Parser::Result::Pragma'=> '3.22',
20357 'TAP::Parser::Result::Test'=> '3.22',
20358 'TAP::Parser::Result::Unknown'=> '3.22',
20359 'TAP::Parser::Result::Version'=> '3.22',
20360 'TAP::Parser::Result::YAML'=> '3.22',
20361 'TAP::Parser::ResultFactory'=> '3.22',
20362 'TAP::Parser::Scheduler'=> '3.22',
20363 'TAP::Parser::Scheduler::Job'=> '3.22',
20364 'TAP::Parser::Scheduler::Spinner'=> '3.22',
20365 'TAP::Parser::Source' => '3.22',
20366 'TAP::Parser::SourceHandler'=> '3.22',
20367 'TAP::Parser::SourceHandler::Executable'=> '3.22',
20368 'TAP::Parser::SourceHandler::File'=> '3.22',
20369 'TAP::Parser::SourceHandler::Handle'=> '3.22',
20370 'TAP::Parser::SourceHandler::Perl'=> '3.22',
20371 'TAP::Parser::SourceHandler::RawTAP'=> '3.22',
20372 'TAP::Parser::Utils' => '3.22',
20373 'TAP::Parser::YAMLish::Reader'=> '3.22',
20374 'TAP::Parser::YAMLish::Writer'=> '3.22',
20375 'Term::ANSIColor' => '3.00',
20376 'Term::Cap' => '1.12',
20377 'Term::Complete' => '1.402',
20378 'Term::ReadLine' => '1.07',
20379 'Term::UI' => '0.20',
20380 'Term::UI::History' => undef,
20381 'Test' => '1.25_02',
20382 'Test::Builder' => '0.97_01',
20383 'Test::Builder::Module' => '0.97_01',
20384 'Test::Builder::Tester' => '1.21_01',
20385 'Test::Builder::Tester::Color'=> '1.21_01',
20386 'Test::Harness' => '3.22',
20387 'Test::More' => '0.97_01',
20388 'Test::Simple' => '0.97_01',
20389 'Text::Abbrev' => '1.01',
20390 'Text::Balanced' => '2.02',
20391 'Text::ParseWords' => '3.27',
20392 'Text::Soundex' => '3.03_01',
20393 'Text::Tabs' => '2009.0305',
20394 'Text::Wrap' => '2009.0305',
20395 'Thread' => '3.02',
20396 'Thread::Queue' => '2.11',
20397 'Thread::Semaphore' => '2.11',
20398 'Tie::Array' => '1.04',
20399 'Tie::File' => '0.97_02',
20400 'Tie::Handle' => '4.2',
20401 'Tie::Hash' => '1.04',
20402 'Tie::Hash::NamedCapture'=> '0.07',
20403 'Tie::Memoize' => '1.1',
20404 'Tie::RefHash' => '1.38',
20405 'Tie::Scalar' => '1.02',
20406 'Tie::StdHandle' => '4.2',
20407 'Tie::SubstrHash' => '1.00',
20408 'Time::HiRes' => '1.9721',
20409 'Time::Local' => '1.1901_01',
20410 'Time::Piece' => '1.20_01',
20411 'Time::Piece::Seconds' => undef,
20412 'Time::Seconds' => undef,
20413 'Time::gmtime' => '1.03',
20414 'Time::localtime' => '1.02',
20415 'Time::tm' => '1.00',
20416 'UNIVERSAL' => '1.07',
20417 'Unicode' => '6.0.0',
20418 'Unicode::Collate' => '0.67',
20419 'Unicode::Collate::CJK::Big5'=> '0.65',
20420 'Unicode::Collate::CJK::GB2312'=> '0.65',
20421 'Unicode::Collate::CJK::JISX0208'=> '0.64',
20422 'Unicode::Collate::CJK::Korean'=> '0.66',
20423 'Unicode::Collate::CJK::Pinyin'=> '0.65',
20424 'Unicode::Collate::CJK::Stroke'=> '0.65',
20425 'Unicode::Collate::Locale'=> '0.67',
20426 'Unicode::Normalize' => '1.07',
20427 'Unicode::UCD' => '0.29',
20428 'User::grent' => '1.01',
20429 'User::pwent' => '1.00',
20430 'VMS::DCLsym' => '1.04',
20431 'VMS::Filespec' => '1.12',
20432 'VMS::Stdio' => '2.4',
20433 'Win32' => '0.39',
20434 'Win32API::File' => '0.1101',
20435 'Win32API::File::ExtUtils::Myconst2perl'=> '1',
20436 'Win32CORE' => '0.02',
20437 'XS::APItest' => '0.26',
20438 'XS::Typemap' => '0.04',
20439 'XSLoader' => '0.13',
20440 'XSLoader::XSLoader' => '0.13',
20441 'attributes' => '0.13',
20442 'autodie' => '2.10',
20443 'autodie::exception' => '2.10',
20444 'autodie::exception::system'=> '2.10',
20445 'autodie::hints' => '2.10',
20446 'autouse' => '1.06',
20447 'base' => '2.15',
20448 'bigint' => '0.25',
20449 'bignum' => '0.25',
20450 'bigrat' => '0.25',
20451 'blib' => '1.06',
20452 'bytes' => '1.04',
20453 'charnames' => '1.17',
20454 'constant' => '1.20',
20455 'deprecate' => '0.01',
20456 'diagnostics' => '1.20',
20457 'encoding' => '2.6_01',
20458 'encoding::warnings' => '0.11',
20459 'feature' => '1.18',
20460 'fields' => '2.15',
20461 'filetest' => '1.02',
20462 'if' => '0.06',
20463 'inc::latest' => '0.3607',
20464 'integer' => '1.00',
20465 'less' => '0.03',
20466 'lib' => '0.63',
20467 'locale' => '1.00',
20468 'mro' => '1.05',
20469 'open' => '1.08',
20470 'ops' => '1.02',
20471 'overload' => '1.11',
20472 'overload::numbers' => undef,
20473 'overloading' => '0.01',
20474 'parent' => '0.224',
20475 're' => '0.14',
20476 'sigtrap' => '1.05',
20477 'sort' => '2.01',
20478 'strict' => '1.04',
20479 'subs' => '1.00',
20480 'threads' => '1.81_02',
20481 'threads::shared' => '1.34',
20482 'utf8' => '1.08',
20483 'vars' => '1.02',
20484 'version' => '0.82',
20485 'vmsish' => '1.02',
20486 'warnings' => '1.11',
20487 'warnings::register' => '1.02',
20489 5.013008 => {
20490 'AnyDBM_File' => '1.00',
20491 'App::Cpan' => '1.5701',
20492 'App::Prove' => '3.22',
20493 'App::Prove::State' => '3.22',
20494 'App::Prove::State::Result'=> '3.22',
20495 'App::Prove::State::Result::Test'=> '3.22',
20496 'Archive::Extract' => '0.46',
20497 'Archive::Tar' => '1.74',
20498 'Archive::Tar::Constant'=> '1.74',
20499 'Archive::Tar::File' => '1.74',
20500 'Attribute::Handlers' => '0.88',
20501 'AutoLoader' => '5.71',
20502 'AutoSplit' => '1.06',
20503 'B' => '1.27',
20504 'B::Concise' => '0.82',
20505 'B::Debug' => '1.16',
20506 'B::Deparse' => '1.02',
20507 'B::Lint' => '1.12',
20508 'B::Lint::Debug' => '1.12',
20509 'B::Showlex' => '1.02',
20510 'B::Terse' => '1.05',
20511 'B::Xref' => '1.02',
20512 'Benchmark' => '1.11',
20513 'CGI' => '3.50',
20514 'CGI::Apache' => '1.01',
20515 'CGI::Carp' => '3.45',
20516 'CGI::Cookie' => '1.29',
20517 'CGI::Fast' => '1.08',
20518 'CGI::Pretty' => '3.46',
20519 'CGI::Push' => '1.04',
20520 'CGI::Switch' => '1.01',
20521 'CGI::Util' => '3.48',
20522 'CPAN' => '1.94_62',
20523 'CPAN::Author' => '5.5',
20524 'CPAN::Bundle' => '5.5',
20525 'CPAN::CacheMgr' => '5.5',
20526 'CPAN::Complete' => '5.5',
20527 'CPAN::Debug' => '5.5001',
20528 'CPAN::DeferredCode' => '5.50',
20529 'CPAN::Distribution' => '1.9600',
20530 'CPAN::Distroprefs' => '6',
20531 'CPAN::Distrostatus' => '5.5',
20532 'CPAN::Exception::RecursiveDependency'=> '5.5',
20533 'CPAN::Exception::blocked_urllist'=> '1.0',
20534 'CPAN::Exception::yaml_not_installed'=> '5.5',
20535 'CPAN::FTP' => '5.5005',
20536 'CPAN::FTP::netrc' => '1.00',
20537 'CPAN::FirstTime' => '5.5301',
20538 'CPAN::HandleConfig' => '5.5001',
20539 'CPAN::Index' => '1.94',
20540 'CPAN::InfoObj' => '5.5',
20541 'CPAN::Kwalify' => '5.50',
20542 'CPAN::LWP::UserAgent' => '1.94',
20543 'CPAN::Mirrors' => '1.77',
20544 'CPAN::Module' => '5.5',
20545 'CPAN::Nox' => '5.50',
20546 'CPAN::Prompt' => '5.5',
20547 'CPAN::Queue' => '5.5001',
20548 'CPAN::Shell' => '5.5001',
20549 'CPAN::Tarzip' => '5.5011',
20550 'CPAN::URL' => '5.5',
20551 'CPAN::Version' => '5.5001',
20552 'CPANPLUS' => '0.9010',
20553 'CPANPLUS::Backend' => undef,
20554 'CPANPLUS::Backend::RV' => undef,
20555 'CPANPLUS::Config' => undef,
20556 'CPANPLUS::Configure' => undef,
20557 'CPANPLUS::Configure::Setup'=> undef,
20558 'CPANPLUS::Dist' => undef,
20559 'CPANPLUS::Dist::Autobundle'=> undef,
20560 'CPANPLUS::Dist::Base' => undef,
20561 'CPANPLUS::Dist::Build' => '0.50',
20562 'CPANPLUS::Dist::Build::Constants'=> '0.50',
20563 'CPANPLUS::Dist::MM' => undef,
20564 'CPANPLUS::Dist::Sample'=> undef,
20565 'CPANPLUS::Error' => undef,
20566 'CPANPLUS::Internals' => '0.9010',
20567 'CPANPLUS::Internals::Constants'=> undef,
20568 'CPANPLUS::Internals::Constants::Report'=> undef,
20569 'CPANPLUS::Internals::Extract'=> undef,
20570 'CPANPLUS::Internals::Fetch'=> undef,
20571 'CPANPLUS::Internals::Report'=> undef,
20572 'CPANPLUS::Internals::Search'=> undef,
20573 'CPANPLUS::Internals::Source'=> undef,
20574 'CPANPLUS::Internals::Source::Memory'=> undef,
20575 'CPANPLUS::Internals::Source::SQLite'=> undef,
20576 'CPANPLUS::Internals::Source::SQLite::Tie'=> undef,
20577 'CPANPLUS::Internals::Utils'=> undef,
20578 'CPANPLUS::Internals::Utils::Autoflush'=> undef,
20579 'CPANPLUS::Module' => undef,
20580 'CPANPLUS::Module::Author'=> undef,
20581 'CPANPLUS::Module::Author::Fake'=> undef,
20582 'CPANPLUS::Module::Checksums'=> undef,
20583 'CPANPLUS::Module::Fake'=> undef,
20584 'CPANPLUS::Module::Signature'=> undef,
20585 'CPANPLUS::Selfupdate' => undef,
20586 'CPANPLUS::Shell' => undef,
20587 'CPANPLUS::Shell::Classic'=> '0.0562',
20588 'CPANPLUS::Shell::Default'=> '0.9010',
20589 'CPANPLUS::Shell::Default::Plugins::CustomSource'=> undef,
20590 'CPANPLUS::Shell::Default::Plugins::Remote'=> undef,
20591 'CPANPLUS::Shell::Default::Plugins::Source'=> undef,
20592 'Carp' => '1.19',
20593 'Carp::Heavy' => '1.17',
20594 'Class::Struct' => '0.63',
20595 'Compress::Raw::Bzip2' => '2.031',
20596 'Compress::Raw::Zlib' => '2.030',
20597 'Compress::Zlib' => '2.030',
20598 'Config' => undef,
20599 'Config::Extensions' => '0.01',
20600 'Cwd' => '3.35',
20601 'DB' => '1.03',
20602 'DBM_Filter' => '0.03',
20603 'DBM_Filter::compress' => '0.02',
20604 'DBM_Filter::encode' => '0.02',
20605 'DBM_Filter::int32' => '0.02',
20606 'DBM_Filter::null' => '0.02',
20607 'DBM_Filter::utf8' => '0.02',
20608 'DB_File' => '1.820',
20609 'Data::Dumper' => '2.130_02',
20610 'Devel::DProf' => '20080331.00',
20611 'Devel::DProf::dprof::V'=> undef,
20612 'Devel::InnerPackage' => '0.3',
20613 'Devel::PPPort' => '3.19',
20614 'Devel::Peek' => '1.06',
20615 'Devel::SelfStubber' => '1.05',
20616 'Digest' => '1.16',
20617 'Digest::MD5' => '2.51',
20618 'Digest::SHA' => '5.50',
20619 'Digest::base' => '1.16',
20620 'Digest::file' => '1.16',
20621 'DirHandle' => '1.03',
20622 'Dumpvalue' => '1.15',
20623 'DynaLoader' => '1.12',
20624 'Encode' => '2.40',
20625 'Encode::Alias' => '2.12',
20626 'Encode::Byte' => '2.04',
20627 'Encode::CJKConstants' => '2.02',
20628 'Encode::CN' => '2.03',
20629 'Encode::CN::HZ' => '2.05',
20630 'Encode::Config' => '2.05',
20631 'Encode::EBCDIC' => '2.02',
20632 'Encode::Encoder' => '2.01',
20633 'Encode::Encoding' => '2.05',
20634 'Encode::GSM0338' => '2.01',
20635 'Encode::Guess' => '2.04',
20636 'Encode::JP' => '2.04',
20637 'Encode::JP::H2Z' => '2.02',
20638 'Encode::JP::JIS7' => '2.04',
20639 'Encode::KR' => '2.03',
20640 'Encode::KR::2022_KR' => '2.02',
20641 'Encode::MIME::Header' => '2.12',
20642 'Encode::MIME::Header::ISO_2022_JP'=> '1.03',
20643 'Encode::MIME::Name' => '1.01',
20644 'Encode::Symbol' => '2.02',
20645 'Encode::TW' => '2.03',
20646 'Encode::Unicode' => '2.07',
20647 'Encode::Unicode::UTF7' => '2.05',
20648 'English' => '1.04',
20649 'Env' => '1.02',
20650 'Errno' => '1.13',
20651 'Exporter' => '5.64_03',
20652 'Exporter::Heavy' => '5.64_01',
20653 'ExtUtils::CBuilder' => '0.280201',
20654 'ExtUtils::CBuilder::Base'=> '0.280201',
20655 'ExtUtils::CBuilder::Platform::Unix'=> '0.280201',
20656 'ExtUtils::CBuilder::Platform::VMS'=> '0.280201',
20657 'ExtUtils::CBuilder::Platform::Windows'=> '0.280201',
20658 'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280201',
20659 'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280201',
20660 'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280201',
20661 'ExtUtils::CBuilder::Platform::aix'=> '0.280201',
20662 'ExtUtils::CBuilder::Platform::cygwin'=> '0.280201',
20663 'ExtUtils::CBuilder::Platform::darwin'=> '0.280201',
20664 'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280201',
20665 'ExtUtils::CBuilder::Platform::os2'=> '0.280201',
20666 'ExtUtils::Command' => '1.16',
20667 'ExtUtils::Command::MM' => '6.57_05',
20668 'ExtUtils::Constant' => '0.23',
20669 'ExtUtils::Constant::Base'=> '0.05',
20670 'ExtUtils::Constant::ProxySubs'=> '0.08',
20671 'ExtUtils::Constant::Utils'=> '0.03',
20672 'ExtUtils::Constant::XS'=> '0.03',
20673 'ExtUtils::Embed' => '1.30',
20674 'ExtUtils::Install' => '1.55',
20675 'ExtUtils::Installed' => '1.999_001',
20676 'ExtUtils::Liblist' => '6.57_05',
20677 'ExtUtils::Liblist::Kid'=> '6.5705',
20678 'ExtUtils::MM' => '6.57_05',
20679 'ExtUtils::MM_AIX' => '6.57_05',
20680 'ExtUtils::MM_Any' => '6.57_05',
20681 'ExtUtils::MM_BeOS' => '6.57_05',
20682 'ExtUtils::MM_Cygwin' => '6.57_05',
20683 'ExtUtils::MM_DOS' => '6.5705',
20684 'ExtUtils::MM_Darwin' => '6.57_05',
20685 'ExtUtils::MM_MacOS' => '6.5705',
20686 'ExtUtils::MM_NW5' => '6.57_05',
20687 'ExtUtils::MM_OS2' => '6.57_05',
20688 'ExtUtils::MM_QNX' => '6.57_05',
20689 'ExtUtils::MM_UWIN' => '6.5705',
20690 'ExtUtils::MM_Unix' => '6.57_05',
20691 'ExtUtils::MM_VMS' => '6.57_05',
20692 'ExtUtils::MM_VOS' => '6.57_05',
20693 'ExtUtils::MM_Win32' => '6.57_05',
20694 'ExtUtils::MM_Win95' => '6.57_05',
20695 'ExtUtils::MY' => '6.5705',
20696 'ExtUtils::MakeMaker' => '6.57_05',
20697 'ExtUtils::MakeMaker::Config'=> '6.57_05',
20698 'ExtUtils::MakeMaker::YAML'=> '1.44',
20699 'ExtUtils::Manifest' => '1.58',
20700 'ExtUtils::Miniperl' => undef,
20701 'ExtUtils::Mkbootstrap' => '6.57_05',
20702 'ExtUtils::Mksymlists' => '6.57_05',
20703 'ExtUtils::Packlist' => '1.44',
20704 'ExtUtils::ParseXS' => '2.2208',
20705 'ExtUtils::XSSymSet' => '1.2',
20706 'ExtUtils::testlib' => '6.5705',
20707 'Fatal' => '2.1001',
20708 'Fcntl' => '1.11',
20709 'File::Basename' => '2.79',
20710 'File::CheckTree' => '4.41',
20711 'File::Compare' => '1.1006',
20712 'File::Copy' => '2.20',
20713 'File::DosGlob' => '1.03',
20714 'File::Fetch' => '0.28',
20715 'File::Find' => '1.18',
20716 'File::Glob' => '1.11',
20717 'File::GlobMapper' => '1.000',
20718 'File::Path' => '2.08_01',
20719 'File::Spec' => '3.33',
20720 'File::Spec::Cygwin' => '3.33',
20721 'File::Spec::Epoc' => '3.33',
20722 'File::Spec::Functions' => '3.33',
20723 'File::Spec::Mac' => '3.33',
20724 'File::Spec::OS2' => '3.33',
20725 'File::Spec::Unix' => '3.33',
20726 'File::Spec::VMS' => '3.33',
20727 'File::Spec::Win32' => '3.33',
20728 'File::Temp' => '0.22',
20729 'File::stat' => '1.04',
20730 'FileCache' => '1.08',
20731 'FileHandle' => '2.02',
20732 'Filter::Simple' => '0.85',
20733 'Filter::Util::Call' => '1.08',
20734 'FindBin' => '1.50',
20735 'GDBM_File' => '1.13',
20736 'Getopt::Long' => '2.38',
20737 'Getopt::Std' => '1.06',
20738 'Hash::Util' => '0.10',
20739 'Hash::Util::FieldHash' => '1.07',
20740 'I18N::Collate' => '1.02',
20741 'I18N::LangTags' => '0.35_01',
20742 'I18N::LangTags::Detect'=> '1.04',
20743 'I18N::LangTags::List' => '0.35_01',
20744 'I18N::Langinfo' => '0.07',
20745 'IO' => '1.25_03',
20746 'IO::Compress::Adapter::Bzip2'=> '2.030',
20747 'IO::Compress::Adapter::Deflate'=> '2.030',
20748 'IO::Compress::Adapter::Identity'=> '2.030',
20749 'IO::Compress::Base' => '2.030',
20750 'IO::Compress::Base::Common'=> '2.030',
20751 'IO::Compress::Bzip2' => '2.030',
20752 'IO::Compress::Deflate' => '2.030',
20753 'IO::Compress::Gzip' => '2.030',
20754 'IO::Compress::Gzip::Constants'=> '2.030',
20755 'IO::Compress::RawDeflate'=> '2.030',
20756 'IO::Compress::Zip' => '2.030',
20757 'IO::Compress::Zip::Constants'=> '2.030',
20758 'IO::Compress::Zlib::Constants'=> '2.030',
20759 'IO::Compress::Zlib::Extra'=> '2.030',
20760 'IO::Dir' => '1.07',
20761 'IO::File' => '1.14',
20762 'IO::Handle' => '1.28',
20763 'IO::Pipe' => '1.13',
20764 'IO::Poll' => '0.07',
20765 'IO::Seekable' => '1.10',
20766 'IO::Select' => '1.17',
20767 'IO::Socket' => '1.32',
20768 'IO::Socket::INET' => '1.31',
20769 'IO::Socket::UNIX' => '1.23',
20770 'IO::Uncompress::Adapter::Bunzip2'=> '2.030',
20771 'IO::Uncompress::Adapter::Identity'=> '2.030',
20772 'IO::Uncompress::Adapter::Inflate'=> '2.030',
20773 'IO::Uncompress::AnyInflate'=> '2.030',
20774 'IO::Uncompress::AnyUncompress'=> '2.030',
20775 'IO::Uncompress::Base' => '2.030',
20776 'IO::Uncompress::Bunzip2'=> '2.030',
20777 'IO::Uncompress::Gunzip'=> '2.030',
20778 'IO::Uncompress::Inflate'=> '2.030',
20779 'IO::Uncompress::RawInflate'=> '2.030',
20780 'IO::Uncompress::Unzip' => '2.030',
20781 'IO::Zlib' => '1.10',
20782 'IPC::Cmd' => '0.66',
20783 'IPC::Msg' => '2.03',
20784 'IPC::Open2' => '1.03',
20785 'IPC::Open3' => '1.08',
20786 'IPC::Semaphore' => '2.03',
20787 'IPC::SharedMem' => '2.03',
20788 'IPC::SysV' => '2.03',
20789 'List::Util' => '1.23',
20790 'List::Util::PP' => '1.23',
20791 'List::Util::XS' => '1.23',
20792 'Locale::Codes' => '3.15',
20793 'Locale::Codes::Country'=> '3.15',
20794 'Locale::Codes::Currency'=> '3.15',
20795 'Locale::Codes::Language'=> '3.15',
20796 'Locale::Codes::Script' => '3.15',
20797 'Locale::Constants' => '3.15',
20798 'Locale::Country' => '3.15',
20799 'Locale::Currency' => '3.15',
20800 'Locale::Language' => '3.15',
20801 'Locale::Maketext' => '1.17',
20802 'Locale::Maketext::Guts'=> '1.17',
20803 'Locale::Maketext::GutsLoader'=> '1.17',
20804 'Locale::Maketext::Simple'=> '0.21',
20805 'Locale::Script' => '3.15',
20806 'Log::Message' => '0.02',
20807 'Log::Message::Config' => '0.01',
20808 'Log::Message::Handlers'=> undef,
20809 'Log::Message::Item' => undef,
20810 'Log::Message::Simple' => '0.06',
20811 'MIME::Base64' => '3.13',
20812 'MIME::QuotedPrint' => '3.13',
20813 'Math::BigFloat' => '1.99_02',
20814 'Math::BigFloat::Trace' => '0.01',
20815 'Math::BigInt' => '1.99_02',
20816 'Math::BigInt::Calc' => '1.99_02',
20817 'Math::BigInt::CalcEmu' => '1.99_02',
20818 'Math::BigInt::FastCalc'=> '0.24_01',
20819 'Math::BigInt::Trace' => '0.01',
20820 'Math::BigRat' => '0.26_01',
20821 'Math::Complex' => '1.56',
20822 'Math::Trig' => '1.2',
20823 'Memoize' => '1.02',
20824 'Memoize::AnyDBM_File' => '1.02',
20825 'Memoize::Expire' => '1.02',
20826 'Memoize::ExpireFile' => '1.02',
20827 'Memoize::ExpireTest' => '1.02',
20828 'Memoize::NDBM_File' => '1.02',
20829 'Memoize::SDBM_File' => '1.02',
20830 'Memoize::Storable' => '1.02',
20831 'Module::Build' => '0.3607',
20832 'Module::Build::Base' => '0.3607',
20833 'Module::Build::Compat' => '0.3607',
20834 'Module::Build::Config' => '0.3607',
20835 'Module::Build::ConfigData'=> undef,
20836 'Module::Build::Cookbook'=> '0.3607',
20837 'Module::Build::Dumper' => '0.3607',
20838 'Module::Build::ModuleInfo'=> '0.3607',
20839 'Module::Build::Notes' => '0.3607',
20840 'Module::Build::PPMMaker'=> '0.3607',
20841 'Module::Build::Platform::Amiga'=> '0.3607',
20842 'Module::Build::Platform::Default'=> '0.3607',
20843 'Module::Build::Platform::EBCDIC'=> '0.3607',
20844 'Module::Build::Platform::MPEiX'=> '0.3607',
20845 'Module::Build::Platform::MacOS'=> '0.3607',
20846 'Module::Build::Platform::RiscOS'=> '0.3607',
20847 'Module::Build::Platform::Unix'=> '0.3607',
20848 'Module::Build::Platform::VMS'=> '0.3607',
20849 'Module::Build::Platform::VOS'=> '0.3607',
20850 'Module::Build::Platform::Windows'=> '0.3607',
20851 'Module::Build::Platform::aix'=> '0.3607',
20852 'Module::Build::Platform::cygwin'=> '0.3607',
20853 'Module::Build::Platform::darwin'=> '0.3607',
20854 'Module::Build::Platform::os2'=> '0.3607',
20855 'Module::Build::PodParser'=> '0.3607',
20856 'Module::Build::Version'=> '0.77',
20857 'Module::Build::YAML' => '1.40',
20858 'Module::CoreList' => '2.43',
20859 'Module::Load' => '0.18',
20860 'Module::Load::Conditional'=> '0.38',
20861 'Module::Loaded' => '0.06',
20862 'Module::Pluggable' => '3.9',
20863 'Module::Pluggable::Object'=> '3.9',
20864 'Moped::Msg' => '0.01',
20865 'NDBM_File' => '1.11',
20866 'NEXT' => '0.65',
20867 'Net::Cmd' => '2.29',
20868 'Net::Config' => '1.11',
20869 'Net::Domain' => '2.20',
20870 'Net::FTP' => '2.77',
20871 'Net::FTP::A' => '1.18',
20872 'Net::FTP::E' => '0.01',
20873 'Net::FTP::I' => '1.12',
20874 'Net::FTP::L' => '0.01',
20875 'Net::FTP::dataconn' => '0.11',
20876 'Net::NNTP' => '2.24',
20877 'Net::Netrc' => '2.12',
20878 'Net::POP3' => '2.29',
20879 'Net::Ping' => '2.37',
20880 'Net::SMTP' => '2.31',
20881 'Net::Time' => '2.10',
20882 'Net::hostent' => '1.01',
20883 'Net::netent' => '1.00',
20884 'Net::protoent' => '1.00',
20885 'Net::servent' => '1.01',
20886 'O' => '1.01',
20887 'ODBM_File' => '1.10',
20888 'Object::Accessor' => '0.36',
20889 'Opcode' => '1.18',
20890 'POSIX' => '1.23',
20891 'Package::Constants' => '0.02',
20892 'Params::Check' => '0.26',
20893 'Parse::CPAN::Meta' => '1.40',
20894 'PerlIO' => '1.06',
20895 'PerlIO::encoding' => '0.14',
20896 'PerlIO::scalar' => '0.11',
20897 'PerlIO::via' => '0.11',
20898 'PerlIO::via::QuotedPrint'=> '0.06',
20899 'Pod::Checker' => '1.45',
20900 'Pod::Escapes' => '1.04',
20901 'Pod::Find' => '1.35',
20902 'Pod::Functions' => '1.04',
20903 'Pod::Html' => '1.09',
20904 'Pod::InputObjects' => '1.31',
20905 'Pod::LaTeX' => '0.58',
20906 'Pod::Man' => '2.25',
20907 'Pod::ParseLink' => '1.10',
20908 'Pod::ParseUtils' => '1.36',
20909 'Pod::Parser' => '1.37',
20910 'Pod::Perldoc' => '3.15_02',
20911 'Pod::Perldoc::BaseTo' => undef,
20912 'Pod::Perldoc::GetOptsOO'=> undef,
20913 'Pod::Perldoc::ToChecker'=> undef,
20914 'Pod::Perldoc::ToMan' => undef,
20915 'Pod::Perldoc::ToNroff' => undef,
20916 'Pod::Perldoc::ToPod' => undef,
20917 'Pod::Perldoc::ToRtf' => undef,
20918 'Pod::Perldoc::ToText' => undef,
20919 'Pod::Perldoc::ToTk' => undef,
20920 'Pod::Perldoc::ToXml' => undef,
20921 'Pod::PlainText' => '2.04',
20922 'Pod::Select' => '1.36',
20923 'Pod::Simple' => '3.15',
20924 'Pod::Simple::BlackBox' => '3.15',
20925 'Pod::Simple::Checker' => '3.15',
20926 'Pod::Simple::Debug' => '3.15',
20927 'Pod::Simple::DumpAsText'=> '3.15',
20928 'Pod::Simple::DumpAsXML'=> '3.15',
20929 'Pod::Simple::HTML' => '3.15',
20930 'Pod::Simple::HTMLBatch'=> '3.15',
20931 'Pod::Simple::HTMLLegacy'=> '5.01',
20932 'Pod::Simple::LinkSection'=> '3.15',
20933 'Pod::Simple::Methody' => '3.15',
20934 'Pod::Simple::Progress' => '3.15',
20935 'Pod::Simple::PullParser'=> '3.15',
20936 'Pod::Simple::PullParserEndToken'=> '3.15',
20937 'Pod::Simple::PullParserStartToken'=> '3.15',
20938 'Pod::Simple::PullParserTextToken'=> '3.15',
20939 'Pod::Simple::PullParserToken'=> '3.15',
20940 'Pod::Simple::RTF' => '3.15',
20941 'Pod::Simple::Search' => '3.15',
20942 'Pod::Simple::SimpleTree'=> '3.15',
20943 'Pod::Simple::Text' => '3.15',
20944 'Pod::Simple::TextContent'=> '3.15',
20945 'Pod::Simple::TiedOutFH'=> '3.15',
20946 'Pod::Simple::Transcode'=> '3.15',
20947 'Pod::Simple::TranscodeDumb'=> '3.15',
20948 'Pod::Simple::TranscodeSmart'=> '3.15',
20949 'Pod::Simple::XHTML' => '3.15',
20950 'Pod::Simple::XMLOutStream'=> '3.15',
20951 'Pod::Text' => '3.15',
20952 'Pod::Text::Color' => '2.06',
20953 'Pod::Text::Overstrike' => '2.04',
20954 'Pod::Text::Termcap' => '2.06',
20955 'Pod::Usage' => '1.36',
20956 'SDBM_File' => '1.09',
20957 'Safe' => '2.29',
20958 'Scalar::Util' => '1.23',
20959 'Scalar::Util::PP' => '1.23',
20960 'Search::Dict' => '1.03',
20961 'SelectSaver' => '1.02',
20962 'SelfLoader' => '1.18',
20963 'Shell' => '0.72_01',
20964 'Socket' => '1.92',
20965 'Storable' => '2.25',
20966 'Symbol' => '1.07',
20967 'Sys::Hostname' => '1.14',
20968 'Sys::Syslog' => '0.27',
20969 'Sys::Syslog::win32::Win32'=> undef,
20970 'TAP::Base' => '3.22',
20971 'TAP::Formatter::Base' => '3.22',
20972 'TAP::Formatter::Color' => '3.22',
20973 'TAP::Formatter::Console'=> '3.22',
20974 'TAP::Formatter::Console::ParallelSession'=> '3.22',
20975 'TAP::Formatter::Console::Session'=> '3.22',
20976 'TAP::Formatter::File' => '3.22',
20977 'TAP::Formatter::File::Session'=> '3.22',
20978 'TAP::Formatter::Session'=> '3.22',
20979 'TAP::Harness' => '3.22',
20980 'TAP::Object' => '3.22',
20981 'TAP::Parser' => '3.22',
20982 'TAP::Parser::Aggregator'=> '3.22',
20983 'TAP::Parser::Grammar' => '3.22',
20984 'TAP::Parser::Iterator' => '3.22',
20985 'TAP::Parser::Iterator::Array'=> '3.22',
20986 'TAP::Parser::Iterator::Process'=> '3.22',
20987 'TAP::Parser::Iterator::Stream'=> '3.22',
20988 'TAP::Parser::IteratorFactory'=> '3.22',
20989 'TAP::Parser::Multiplexer'=> '3.22',
20990 'TAP::Parser::Result' => '3.22',
20991 'TAP::Parser::Result::Bailout'=> '3.22',
20992 'TAP::Parser::Result::Comment'=> '3.22',
20993 'TAP::Parser::Result::Plan'=> '3.22',
20994 'TAP::Parser::Result::Pragma'=> '3.22',
20995 'TAP::Parser::Result::Test'=> '3.22',
20996 'TAP::Parser::Result::Unknown'=> '3.22',
20997 'TAP::Parser::Result::Version'=> '3.22',
20998 'TAP::Parser::Result::YAML'=> '3.22',
20999 'TAP::Parser::ResultFactory'=> '3.22',
21000 'TAP::Parser::Scheduler'=> '3.22',
21001 'TAP::Parser::Scheduler::Job'=> '3.22',
21002 'TAP::Parser::Scheduler::Spinner'=> '3.22',
21003 'TAP::Parser::Source' => '3.22',
21004 'TAP::Parser::SourceHandler'=> '3.22',
21005 'TAP::Parser::SourceHandler::Executable'=> '3.22',
21006 'TAP::Parser::SourceHandler::File'=> '3.22',
21007 'TAP::Parser::SourceHandler::Handle'=> '3.22',
21008 'TAP::Parser::SourceHandler::Perl'=> '3.22',
21009 'TAP::Parser::SourceHandler::RawTAP'=> '3.22',
21010 'TAP::Parser::Utils' => '3.22',
21011 'TAP::Parser::YAMLish::Reader'=> '3.22',
21012 'TAP::Parser::YAMLish::Writer'=> '3.22',
21013 'Term::ANSIColor' => '3.00',
21014 'Term::Cap' => '1.12',
21015 'Term::Complete' => '1.402',
21016 'Term::ReadLine' => '1.07',
21017 'Term::UI' => '0.20',
21018 'Term::UI::History' => undef,
21019 'Test' => '1.25_02',
21020 'Test::Builder' => '0.97_01',
21021 'Test::Builder::Module' => '0.97_01',
21022 'Test::Builder::Tester' => '1.21_01',
21023 'Test::Builder::Tester::Color'=> '1.21_01',
21024 'Test::Harness' => '3.22',
21025 'Test::More' => '0.97_01',
21026 'Test::Simple' => '0.97_01',
21027 'Text::Abbrev' => '1.01',
21028 'Text::Balanced' => '2.02',
21029 'Text::ParseWords' => '3.27',
21030 'Text::Soundex' => '3.03_01',
21031 'Text::Tabs' => '2009.0305',
21032 'Text::Wrap' => '2009.0305',
21033 'Thread' => '3.02',
21034 'Thread::Queue' => '2.11',
21035 'Thread::Semaphore' => '2.11',
21036 'Tie::Array' => '1.04',
21037 'Tie::File' => '0.97_02',
21038 'Tie::Handle' => '4.2',
21039 'Tie::Hash' => '1.04',
21040 'Tie::Hash::NamedCapture'=> '0.07',
21041 'Tie::Memoize' => '1.1',
21042 'Tie::RefHash' => '1.38',
21043 'Tie::Scalar' => '1.02',
21044 'Tie::StdHandle' => '4.2',
21045 'Tie::SubstrHash' => '1.00',
21046 'Time::HiRes' => '1.9721_01',
21047 'Time::Local' => '1.1901_01',
21048 'Time::Piece' => '1.20_01',
21049 'Time::Piece::Seconds' => undef,
21050 'Time::Seconds' => undef,
21051 'Time::gmtime' => '1.03',
21052 'Time::localtime' => '1.02',
21053 'Time::tm' => '1.00',
21054 'UNIVERSAL' => '1.07',
21055 'Unicode' => '6.0.0',
21056 'Unicode::Collate' => '0.6801',
21057 'Unicode::Collate::CJK::Big5'=> '0.65',
21058 'Unicode::Collate::CJK::GB2312'=> '0.65',
21059 'Unicode::Collate::CJK::JISX0208'=> '0.64',
21060 'Unicode::Collate::CJK::Korean'=> '0.66',
21061 'Unicode::Collate::CJK::Pinyin'=> '0.65',
21062 'Unicode::Collate::CJK::Stroke'=> '0.65',
21063 'Unicode::Collate::Locale'=> '0.68',
21064 'Unicode::Normalize' => '1.08',
21065 'Unicode::UCD' => '0.30',
21066 'User::grent' => '1.01',
21067 'User::pwent' => '1.00',
21068 'VMS::DCLsym' => '1.04',
21069 'VMS::Filespec' => '1.12',
21070 'VMS::Stdio' => '2.4',
21071 'Win32' => '0.41',
21072 'Win32API::File' => '0.1101',
21073 'Win32API::File::ExtUtils::Myconst2perl'=> '1',
21074 'Win32CORE' => '0.02',
21075 'XS::APItest' => '0.27',
21076 'XS::Typemap' => '0.04',
21077 'XSLoader' => '0.13',
21078 'XSLoader::XSLoader' => '0.13',
21079 'attributes' => '0.13',
21080 'autodie' => '2.1001',
21081 'autodie::exception' => '2.1001',
21082 'autodie::exception::system'=> '2.1001',
21083 'autodie::hints' => '2.1001',
21084 'autouse' => '1.06',
21085 'base' => '2.15',
21086 'bigint' => '0.25',
21087 'bignum' => '0.25',
21088 'bigrat' => '0.25',
21089 'blib' => '1.06',
21090 'bytes' => '1.04',
21091 'charnames' => '1.17',
21092 'constant' => '1.20',
21093 'deprecate' => '0.01',
21094 'diagnostics' => '1.20',
21095 'encoding' => '2.6_01',
21096 'encoding::warnings' => '0.11',
21097 'feature' => '1.19',
21098 'fields' => '2.15',
21099 'filetest' => '1.02',
21100 'if' => '0.0601',
21101 'inc::latest' => '0.3607',
21102 'integer' => '1.00',
21103 'less' => '0.03',
21104 'lib' => '0.63',
21105 'locale' => '1.00',
21106 'mro' => '1.06',
21107 'open' => '1.08',
21108 'ops' => '1.02',
21109 'overload' => '1.12',
21110 'overload::numbers' => undef,
21111 'overloading' => '0.01',
21112 'parent' => '0.224',
21113 're' => '0.15',
21114 'sigtrap' => '1.05',
21115 'sort' => '2.01',
21116 'strict' => '1.04',
21117 'subs' => '1.00',
21118 'threads' => '1.81_03',
21119 'threads::shared' => '1.35',
21120 'utf8' => '1.08',
21121 'vars' => '1.02',
21122 'version' => '0.86',
21123 'vmsish' => '1.02',
21124 'warnings' => '1.11',
21125 'warnings::register' => '1.02',
21128 5.012003 => {
21129 'AnyDBM_File' => '1.00',
21130 'App::Cpan' => '1.5701',
21131 'App::Prove' => '3.17',
21132 'App::Prove::State' => '3.17',
21133 'App::Prove::State::Result'=> '3.17',
21134 'App::Prove::State::Result::Test'=> '3.17',
21135 'Archive::Extract' => '0.38',
21136 'Archive::Tar' => '1.54',
21137 'Archive::Tar::Constant'=> '0.02',
21138 'Archive::Tar::File' => '0.02',
21139 'Attribute::Handlers' => '0.87',
21140 'AutoLoader' => '5.70',
21141 'AutoSplit' => '1.06',
21142 'B' => '1.23',
21143 'B::Concise' => '0.78',
21144 'B::Debug' => '1.12',
21145 'B::Deparse' => '0.9701',
21146 'B::Lint' => '1.11_01',
21147 'B::Lint::Debug' => '0.01',
21148 'B::Showlex' => '1.02',
21149 'B::Terse' => '1.05',
21150 'B::Xref' => '1.02',
21151 'Benchmark' => '1.11',
21152 'CGI' => '3.49',
21153 'CGI::Apache' => '1.01',
21154 'CGI::Carp' => '3.45',
21155 'CGI::Cookie' => '1.29',
21156 'CGI::Fast' => '1.08',
21157 'CGI::Pretty' => '3.46',
21158 'CGI::Push' => '1.04',
21159 'CGI::Switch' => '1.01',
21160 'CGI::Util' => '3.48',
21161 'CPAN' => '1.94_56',
21162 'CPAN::Author' => '5.5',
21163 'CPAN::Bundle' => '5.5',
21164 'CPAN::CacheMgr' => '5.5',
21165 'CPAN::Complete' => '5.5',
21166 'CPAN::Debug' => '5.5001',
21167 'CPAN::DeferredCode' => '5.50',
21168 'CPAN::Distribution' => '1.9456_01',
21169 'CPAN::Distroprefs' => '6',
21170 'CPAN::Distrostatus' => '5.5',
21171 'CPAN::Exception::RecursiveDependency'=> '5.5',
21172 'CPAN::Exception::blocked_urllist'=> '1.0',
21173 'CPAN::Exception::yaml_not_installed'=> '5.5',
21174 'CPAN::FTP' => '5.5004',
21175 'CPAN::FTP::netrc' => '1.00',
21176 'CPAN::FirstTime' => '5.5301',
21177 'CPAN::HandleConfig' => '5.5001',
21178 'CPAN::Index' => '1.94',
21179 'CPAN::InfoObj' => '5.5',
21180 'CPAN::Kwalify' => '5.50',
21181 'CPAN::LWP::UserAgent' => '1.94',
21182 'CPAN::Mirrors' => '1.77',
21183 'CPAN::Module' => '5.5',
21184 'CPAN::Nox' => '5.50',
21185 'CPAN::Prompt' => '5.5',
21186 'CPAN::Queue' => '5.5',
21187 'CPAN::Shell' => '5.5001',
21188 'CPAN::Tarzip' => '5.5011',
21189 'CPAN::URL' => '5.5',
21190 'CPAN::Version' => '5.5',
21191 'CPANPLUS' => '0.90',
21192 'CPANPLUS::Backend' => undef,
21193 'CPANPLUS::Backend::RV' => undef,
21194 'CPANPLUS::Config' => undef,
21195 'CPANPLUS::Configure' => undef,
21196 'CPANPLUS::Configure::Setup'=> undef,
21197 'CPANPLUS::Dist' => undef,
21198 'CPANPLUS::Dist::Autobundle'=> undef,
21199 'CPANPLUS::Dist::Base' => undef,
21200 'CPANPLUS::Dist::Build' => '0.46',
21201 'CPANPLUS::Dist::Build::Constants'=> '0.46',
21202 'CPANPLUS::Dist::MM' => undef,
21203 'CPANPLUS::Dist::Sample'=> undef,
21204 'CPANPLUS::Error' => undef,
21205 'CPANPLUS::Internals' => '0.90',
21206 'CPANPLUS::Internals::Constants'=> undef,
21207 'CPANPLUS::Internals::Constants::Report'=> undef,
21208 'CPANPLUS::Internals::Extract'=> undef,
21209 'CPANPLUS::Internals::Fetch'=> undef,
21210 'CPANPLUS::Internals::Report'=> undef,
21211 'CPANPLUS::Internals::Search'=> undef,
21212 'CPANPLUS::Internals::Source'=> undef,
21213 'CPANPLUS::Internals::Source::Memory'=> undef,
21214 'CPANPLUS::Internals::Source::SQLite'=> undef,
21215 'CPANPLUS::Internals::Source::SQLite::Tie'=> undef,
21216 'CPANPLUS::Internals::Utils'=> undef,
21217 'CPANPLUS::Internals::Utils::Autoflush'=> undef,
21218 'CPANPLUS::Module' => undef,
21219 'CPANPLUS::Module::Author'=> undef,
21220 'CPANPLUS::Module::Author::Fake'=> undef,
21221 'CPANPLUS::Module::Checksums'=> undef,
21222 'CPANPLUS::Module::Fake'=> undef,
21223 'CPANPLUS::Module::Signature'=> undef,
21224 'CPANPLUS::Selfupdate' => undef,
21225 'CPANPLUS::Shell' => undef,
21226 'CPANPLUS::Shell::Classic'=> '0.0562',
21227 'CPANPLUS::Shell::Default'=> '0.90',
21228 'CPANPLUS::Shell::Default::Plugins::CustomSource'=> undef,
21229 'CPANPLUS::Shell::Default::Plugins::Remote'=> undef,
21230 'CPANPLUS::Shell::Default::Plugins::Source'=> undef,
21231 'Carp' => '1.17',
21232 'Carp::Heavy' => '1.17',
21233 'Class::ISA' => '0.36',
21234 'Class::Struct' => '0.63',
21235 'Compress::Raw::Bzip2' => '2.024',
21236 'Compress::Raw::Zlib' => '2.024',
21237 'Compress::Zlib' => '2.024',
21238 'Config' => undef,
21239 'Config::Extensions' => '0.01',
21240 'Cwd' => '3.31',
21241 'DB' => '1.02',
21242 'DBM_Filter' => '0.03',
21243 'DBM_Filter::compress' => '0.02',
21244 'DBM_Filter::encode' => '0.02',
21245 'DBM_Filter::int32' => '0.02',
21246 'DBM_Filter::null' => '0.02',
21247 'DBM_Filter::utf8' => '0.02',
21248 'DB_File' => '1.820',
21249 'Data::Dumper' => '2.125',
21250 'Devel::DProf' => '20080331.00',
21251 'Devel::DProf::V' => undef,
21252 'Devel::DProf::dprof::V'=> undef,
21253 'Devel::InnerPackage' => '0.3',
21254 'Devel::PPPort' => '3.19',
21255 'Devel::Peek' => '1.04',
21256 'Devel::SelfStubber' => '1.03',
21257 'Digest' => '1.16',
21258 'Digest::MD5' => '2.39',
21259 'Digest::SHA' => '5.47',
21260 'Digest::base' => '1.16',
21261 'Digest::file' => '1.16',
21262 'DirHandle' => '1.03',
21263 'Dumpvalue' => '1.13',
21264 'DynaLoader' => '1.10',
21265 'Encode' => '2.39',
21266 'Encode::Alias' => '2.12',
21267 'Encode::Byte' => '2.04',
21268 'Encode::CJKConstants' => '2.02',
21269 'Encode::CN' => '2.03',
21270 'Encode::CN::HZ' => '2.05',
21271 'Encode::Config' => '2.05',
21272 'Encode::EBCDIC' => '2.02',
21273 'Encode::Encoder' => '2.01',
21274 'Encode::Encoding' => '2.05',
21275 'Encode::GSM0338' => '2.01',
21276 'Encode::Guess' => '2.03',
21277 'Encode::JP' => '2.04',
21278 'Encode::JP::H2Z' => '2.02',
21279 'Encode::JP::JIS7' => '2.04',
21280 'Encode::KR' => '2.03',
21281 'Encode::KR::2022_KR' => '2.02',
21282 'Encode::MIME::Header' => '2.11',
21283 'Encode::MIME::Header::ISO_2022_JP'=> '1.03',
21284 'Encode::MIME::Name' => '1.01',
21285 'Encode::Symbol' => '2.02',
21286 'Encode::TW' => '2.03',
21287 'Encode::Unicode' => '2.07',
21288 'Encode::Unicode::UTF7' => '2.04',
21289 'English' => '1.04',
21290 'Env' => '1.01',
21291 'Errno' => '1.11',
21292 'Exporter' => '5.64_01',
21293 'Exporter::Heavy' => '5.64_01',
21294 'ExtUtils::CBuilder' => '0.27',
21295 'ExtUtils::CBuilder::Base'=> '0.27',
21296 'ExtUtils::CBuilder::Platform::Unix'=> '0.27',
21297 'ExtUtils::CBuilder::Platform::VMS'=> '0.27',
21298 'ExtUtils::CBuilder::Platform::Windows'=> '0.27',
21299 'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.27',
21300 'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.27',
21301 'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.27',
21302 'ExtUtils::CBuilder::Platform::aix'=> '0.27',
21303 'ExtUtils::CBuilder::Platform::cygwin'=> '0.27',
21304 'ExtUtils::CBuilder::Platform::darwin'=> '0.27',
21305 'ExtUtils::CBuilder::Platform::dec_osf'=> '0.27',
21306 'ExtUtils::CBuilder::Platform::os2'=> '0.27',
21307 'ExtUtils::Command' => '1.16',
21308 'ExtUtils::Command::MM' => '6.56',
21309 'ExtUtils::Constant' => '0.22',
21310 'ExtUtils::Constant::Base'=> '0.04',
21311 'ExtUtils::Constant::ProxySubs'=> '0.06',
21312 'ExtUtils::Constant::Utils'=> '0.02',
21313 'ExtUtils::Constant::XS'=> '0.03',
21314 'ExtUtils::Embed' => '1.28',
21315 'ExtUtils::Install' => '1.55',
21316 'ExtUtils::Installed' => '1.999_001',
21317 'ExtUtils::Liblist' => '6.56',
21318 'ExtUtils::Liblist::Kid'=> '6.56',
21319 'ExtUtils::MM' => '6.56',
21320 'ExtUtils::MM_AIX' => '6.56',
21321 'ExtUtils::MM_Any' => '6.56',
21322 'ExtUtils::MM_BeOS' => '6.56',
21323 'ExtUtils::MM_Cygwin' => '6.56',
21324 'ExtUtils::MM_DOS' => '6.56',
21325 'ExtUtils::MM_Darwin' => '6.56',
21326 'ExtUtils::MM_MacOS' => '6.56',
21327 'ExtUtils::MM_NW5' => '6.56',
21328 'ExtUtils::MM_OS2' => '6.56',
21329 'ExtUtils::MM_QNX' => '6.56',
21330 'ExtUtils::MM_UWIN' => '6.56',
21331 'ExtUtils::MM_Unix' => '6.56',
21332 'ExtUtils::MM_VMS' => '6.56',
21333 'ExtUtils::MM_VOS' => '6.56',
21334 'ExtUtils::MM_Win32' => '6.56',
21335 'ExtUtils::MM_Win95' => '6.56',
21336 'ExtUtils::MY' => '6.56',
21337 'ExtUtils::MakeMaker' => '6.56',
21338 'ExtUtils::MakeMaker::Config'=> '6.56',
21339 'ExtUtils::Manifest' => '1.57',
21340 'ExtUtils::Miniperl' => undef,
21341 'ExtUtils::Mkbootstrap' => '6.56',
21342 'ExtUtils::Mksymlists' => '6.56',
21343 'ExtUtils::Packlist' => '1.44',
21344 'ExtUtils::ParseXS' => '2.21',
21345 'ExtUtils::XSSymSet' => '1.1',
21346 'ExtUtils::testlib' => '6.56',
21347 'Fatal' => '2.06_01',
21348 'Fcntl' => '1.06',
21349 'File::Basename' => '2.78',
21350 'File::CheckTree' => '4.4',
21351 'File::Compare' => '1.1006',
21352 'File::Copy' => '2.18',
21353 'File::DosGlob' => '1.01',
21354 'File::Fetch' => '0.24',
21355 'File::Find' => '1.15',
21356 'File::Glob' => '1.07',
21357 'File::GlobMapper' => '1.000',
21358 'File::Path' => '2.08_01',
21359 'File::Spec' => '3.31_01',
21360 'File::Spec::Cygwin' => '3.30',
21361 'File::Spec::Epoc' => '3.30',
21362 'File::Spec::Functions' => '3.30',
21363 'File::Spec::Mac' => '3.30',
21364 'File::Spec::OS2' => '3.30',
21365 'File::Spec::Unix' => '3.30',
21366 'File::Spec::VMS' => '3.30',
21367 'File::Spec::Win32' => '3.30',
21368 'File::Temp' => '0.22',
21369 'File::stat' => '1.02',
21370 'FileCache' => '1.08',
21371 'FileHandle' => '2.02',
21372 'Filter::Simple' => '0.84',
21373 'Filter::Util::Call' => '1.08',
21374 'FindBin' => '1.50',
21375 'GDBM_File' => '1.10',
21376 'Getopt::Long' => '2.38',
21377 'Getopt::Std' => '1.06',
21378 'Hash::Util' => '0.07',
21379 'Hash::Util::FieldHash' => '1.04',
21380 'I18N::Collate' => '1.01',
21381 'I18N::LangTags' => '0.35',
21382 'I18N::LangTags::Detect'=> '1.04',
21383 'I18N::LangTags::List' => '0.35',
21384 'I18N::Langinfo' => '0.03',
21385 'IO' => '1.25_02',
21386 'IO::Compress::Adapter::Bzip2'=> '2.024',
21387 'IO::Compress::Adapter::Deflate'=> '2.024',
21388 'IO::Compress::Adapter::Identity'=> '2.024',
21389 'IO::Compress::Base' => '2.024',
21390 'IO::Compress::Base::Common'=> '2.024',
21391 'IO::Compress::Bzip2' => '2.024',
21392 'IO::Compress::Deflate' => '2.024',
21393 'IO::Compress::Gzip' => '2.024',
21394 'IO::Compress::Gzip::Constants'=> '2.024',
21395 'IO::Compress::RawDeflate'=> '2.024',
21396 'IO::Compress::Zip' => '2.024',
21397 'IO::Compress::Zip::Constants'=> '2.024',
21398 'IO::Compress::Zlib::Constants'=> '2.024',
21399 'IO::Compress::Zlib::Extra'=> '2.024',
21400 'IO::Dir' => '1.07',
21401 'IO::File' => '1.14',
21402 'IO::Handle' => '1.28',
21403 'IO::Pipe' => '1.13',
21404 'IO::Poll' => '0.07',
21405 'IO::Seekable' => '1.10',
21406 'IO::Select' => '1.17',
21407 'IO::Socket' => '1.31',
21408 'IO::Socket::INET' => '1.31',
21409 'IO::Socket::UNIX' => '1.23',
21410 'IO::Uncompress::Adapter::Bunzip2'=> '2.024',
21411 'IO::Uncompress::Adapter::Identity'=> '2.024',
21412 'IO::Uncompress::Adapter::Inflate'=> '2.024',
21413 'IO::Uncompress::AnyInflate'=> '2.024',
21414 'IO::Uncompress::AnyUncompress'=> '2.024',
21415 'IO::Uncompress::Base' => '2.024',
21416 'IO::Uncompress::Bunzip2'=> '2.024',
21417 'IO::Uncompress::Gunzip'=> '2.024',
21418 'IO::Uncompress::Inflate'=> '2.024',
21419 'IO::Uncompress::RawInflate'=> '2.024',
21420 'IO::Uncompress::Unzip' => '2.024',
21421 'IO::Zlib' => '1.10',
21422 'IPC::Cmd' => '0.54',
21423 'IPC::Msg' => '2.01',
21424 'IPC::Open2' => '1.03',
21425 'IPC::Open3' => '1.05',
21426 'IPC::Semaphore' => '2.01',
21427 'IPC::SharedMem' => '2.01',
21428 'IPC::SysV' => '2.01',
21429 'List::Util' => '1.22',
21430 'List::Util::PP' => '1.22',
21431 'List::Util::XS' => '1.22',
21432 'Locale::Constants' => '2.07',
21433 'Locale::Country' => '2.07',
21434 'Locale::Currency' => '2.07',
21435 'Locale::Language' => '2.07',
21436 'Locale::Maketext' => '1.14',
21437 'Locale::Maketext::Guts'=> '1.13',
21438 'Locale::Maketext::GutsLoader'=> '1.13',
21439 'Locale::Maketext::Simple'=> '0.21',
21440 'Locale::Script' => '2.07',
21441 'Log::Message' => '0.02',
21442 'Log::Message::Config' => '0.01',
21443 'Log::Message::Handlers'=> undef,
21444 'Log::Message::Item' => undef,
21445 'Log::Message::Simple' => '0.06',
21446 'MIME::Base64' => '3.08',
21447 'MIME::QuotedPrint' => '3.08',
21448 'Math::BigFloat' => '1.60',
21449 'Math::BigFloat::Trace' => '0.01',
21450 'Math::BigInt' => '1.89_01',
21451 'Math::BigInt::Calc' => '0.52',
21452 'Math::BigInt::CalcEmu' => '0.05',
21453 'Math::BigInt::FastCalc'=> '0.19',
21454 'Math::BigInt::Trace' => '0.01',
21455 'Math::BigRat' => '0.24',
21456 'Math::Complex' => '1.56',
21457 'Math::Trig' => '1.2',
21458 'Memoize' => '1.01_03',
21459 'Memoize::AnyDBM_File' => '0.65',
21460 'Memoize::Expire' => '1.00',
21461 'Memoize::ExpireFile' => '1.01',
21462 'Memoize::ExpireTest' => '0.65',
21463 'Memoize::NDBM_File' => '0.65',
21464 'Memoize::SDBM_File' => '0.65',
21465 'Memoize::Storable' => '0.65',
21466 'Module::Build' => '0.3603',
21467 'Module::Build::Base' => '0.3603',
21468 'Module::Build::Compat' => '0.3603',
21469 'Module::Build::Config' => '0.3603',
21470 'Module::Build::ConfigData'=> undef,
21471 'Module::Build::Cookbook'=> '0.3603',
21472 'Module::Build::Dumper' => '0.3603',
21473 'Module::Build::ModuleInfo'=> '0.3603',
21474 'Module::Build::Notes' => '0.3603',
21475 'Module::Build::PPMMaker'=> '0.3603',
21476 'Module::Build::Platform::Amiga'=> '0.3603',
21477 'Module::Build::Platform::Default'=> '0.3603',
21478 'Module::Build::Platform::EBCDIC'=> '0.3603',
21479 'Module::Build::Platform::MPEiX'=> '0.3603',
21480 'Module::Build::Platform::MacOS'=> '0.3603',
21481 'Module::Build::Platform::RiscOS'=> '0.3603',
21482 'Module::Build::Platform::Unix'=> '0.3603',
21483 'Module::Build::Platform::VMS'=> '0.3603',
21484 'Module::Build::Platform::VOS'=> '0.3603',
21485 'Module::Build::Platform::Windows'=> '0.3603',
21486 'Module::Build::Platform::aix'=> '0.3603',
21487 'Module::Build::Platform::cygwin'=> '0.360301',
21488 'Module::Build::Platform::darwin'=> '0.3603',
21489 'Module::Build::Platform::os2'=> '0.3603',
21490 'Module::Build::PodParser'=> '0.3603',
21491 'Module::Build::Version'=> '0.77',
21492 'Module::Build::YAML' => '1.40',
21493 'Module::CoreList' => '2.38',
21494 'Module::Load' => '0.16',
21495 'Module::Load::Conditional'=> '0.38',
21496 'Module::Loaded' => '0.06',
21497 'Module::Pluggable' => '3.9',
21498 'Module::Pluggable::Object'=> '3.9',
21499 'Moped::Msg' => '0.01',
21500 'NDBM_File' => '1.08',
21501 'NEXT' => '0.64',
21502 'Net::Cmd' => '2.29',
21503 'Net::Config' => '1.11',
21504 'Net::Domain' => '2.20',
21505 'Net::FTP' => '2.77',
21506 'Net::FTP::A' => '1.18',
21507 'Net::FTP::E' => '0.01',
21508 'Net::FTP::I' => '1.12',
21509 'Net::FTP::L' => '0.01',
21510 'Net::FTP::dataconn' => '0.11',
21511 'Net::NNTP' => '2.24',
21512 'Net::Netrc' => '2.12',
21513 'Net::POP3' => '2.29',
21514 'Net::Ping' => '2.36',
21515 'Net::SMTP' => '2.31',
21516 'Net::Time' => '2.10',
21517 'Net::hostent' => '1.01',
21518 'Net::netent' => '1.00',
21519 'Net::protoent' => '1.00',
21520 'Net::servent' => '1.01',
21521 'O' => '1.01',
21522 'ODBM_File' => '1.07',
21523 'Object::Accessor' => '0.36',
21524 'Opcode' => '1.15',
21525 'POSIX' => '1.19',
21526 'Package::Constants' => '0.02',
21527 'Params::Check' => '0.26',
21528 'Parse::CPAN::Meta' => '1.40',
21529 'PerlIO' => '1.06',
21530 'PerlIO::encoding' => '0.12',
21531 'PerlIO::scalar' => '0.08',
21532 'PerlIO::via' => '0.09',
21533 'PerlIO::via::QuotedPrint'=> '0.06',
21534 'Pod::Checker' => '1.45',
21535 'Pod::Escapes' => '1.04',
21536 'Pod::Find' => '1.35',
21537 'Pod::Functions' => '1.04',
21538 'Pod::Html' => '1.09',
21539 'Pod::InputObjects' => '1.31',
21540 'Pod::LaTeX' => '0.58',
21541 'Pod::Man' => '2.23',
21542 'Pod::ParseLink' => '1.10',
21543 'Pod::ParseUtils' => '1.36',
21544 'Pod::Parser' => '1.37',
21545 'Pod::Perldoc' => '3.15_02',
21546 'Pod::Perldoc::BaseTo' => undef,
21547 'Pod::Perldoc::GetOptsOO'=> undef,
21548 'Pod::Perldoc::ToChecker'=> undef,
21549 'Pod::Perldoc::ToMan' => undef,
21550 'Pod::Perldoc::ToNroff' => undef,
21551 'Pod::Perldoc::ToPod' => undef,
21552 'Pod::Perldoc::ToRtf' => undef,
21553 'Pod::Perldoc::ToText' => undef,
21554 'Pod::Perldoc::ToTk' => undef,
21555 'Pod::Perldoc::ToXml' => undef,
21556 'Pod::PlainText' => '2.04',
21557 'Pod::Plainer' => '1.02',
21558 'Pod::Select' => '1.36',
21559 'Pod::Simple' => '3.14',
21560 'Pod::Simple::BlackBox' => '3.14',
21561 'Pod::Simple::Checker' => '3.14',
21562 'Pod::Simple::Debug' => '3.14',
21563 'Pod::Simple::DumpAsText'=> '3.14',
21564 'Pod::Simple::DumpAsXML'=> '3.14',
21565 'Pod::Simple::HTML' => '3.14',
21566 'Pod::Simple::HTMLBatch'=> '3.14',
21567 'Pod::Simple::HTMLLegacy'=> '5.01',
21568 'Pod::Simple::LinkSection'=> '3.14',
21569 'Pod::Simple::Methody' => '3.14',
21570 'Pod::Simple::Progress' => '3.14',
21571 'Pod::Simple::PullParser'=> '3.14',
21572 'Pod::Simple::PullParserEndToken'=> '3.14',
21573 'Pod::Simple::PullParserStartToken'=> '3.14',
21574 'Pod::Simple::PullParserTextToken'=> '3.14',
21575 'Pod::Simple::PullParserToken'=> '3.14',
21576 'Pod::Simple::RTF' => '3.14',
21577 'Pod::Simple::Search' => '3.14',
21578 'Pod::Simple::SimpleTree'=> '3.14',
21579 'Pod::Simple::Text' => '3.14',
21580 'Pod::Simple::TextContent'=> '3.14',
21581 'Pod::Simple::TiedOutFH'=> '3.14',
21582 'Pod::Simple::Transcode'=> '3.14',
21583 'Pod::Simple::TranscodeDumb'=> '3.14',
21584 'Pod::Simple::TranscodeSmart'=> '3.14',
21585 'Pod::Simple::XHTML' => '3.14',
21586 'Pod::Simple::XMLOutStream'=> '3.14',
21587 'Pod::Text' => '3.14',
21588 'Pod::Text::Color' => '2.06',
21589 'Pod::Text::Overstrike' => '2.04',
21590 'Pod::Text::Termcap' => '2.06',
21591 'Pod::Usage' => '1.36',
21592 'SDBM_File' => '1.06',
21593 'Safe' => '2.27',
21594 'Scalar::Util' => '1.22',
21595 'Scalar::Util::PP' => '1.22',
21596 'Search::Dict' => '1.02',
21597 'SelectSaver' => '1.02',
21598 'SelfLoader' => '1.17',
21599 'Shell' => '0.72_01',
21600 'Socket' => '1.87_01',
21601 'Storable' => '2.22',
21602 'Switch' => '2.16',
21603 'Symbol' => '1.07',
21604 'Sys::Hostname' => '1.11',
21605 'Sys::Syslog' => '0.27',
21606 'Sys::Syslog::win32::Win32'=> undef,
21607 'TAP::Base' => '3.17',
21608 'TAP::Formatter::Base' => '3.17',
21609 'TAP::Formatter::Color' => '3.17',
21610 'TAP::Formatter::Console'=> '3.17',
21611 'TAP::Formatter::Console::ParallelSession'=> '3.17',
21612 'TAP::Formatter::Console::Session'=> '3.17',
21613 'TAP::Formatter::File' => '3.17',
21614 'TAP::Formatter::File::Session'=> '3.17',
21615 'TAP::Formatter::Session'=> '3.17',
21616 'TAP::Harness' => '3.17',
21617 'TAP::Object' => '3.17',
21618 'TAP::Parser' => '3.17',
21619 'TAP::Parser::Aggregator'=> '3.17',
21620 'TAP::Parser::Grammar' => '3.17',
21621 'TAP::Parser::Iterator' => '3.17',
21622 'TAP::Parser::Iterator::Array'=> '3.17',
21623 'TAP::Parser::Iterator::Process'=> '3.17',
21624 'TAP::Parser::Iterator::Stream'=> '3.17',
21625 'TAP::Parser::IteratorFactory'=> '3.17',
21626 'TAP::Parser::Multiplexer'=> '3.17',
21627 'TAP::Parser::Result' => '3.17',
21628 'TAP::Parser::Result::Bailout'=> '3.17',
21629 'TAP::Parser::Result::Comment'=> '3.17',
21630 'TAP::Parser::Result::Plan'=> '3.17',
21631 'TAP::Parser::Result::Pragma'=> '3.17',
21632 'TAP::Parser::Result::Test'=> '3.17',
21633 'TAP::Parser::Result::Unknown'=> '3.17',
21634 'TAP::Parser::Result::Version'=> '3.17',
21635 'TAP::Parser::Result::YAML'=> '3.17',
21636 'TAP::Parser::ResultFactory'=> '3.17',
21637 'TAP::Parser::Scheduler'=> '3.17',
21638 'TAP::Parser::Scheduler::Job'=> '3.17',
21639 'TAP::Parser::Scheduler::Spinner'=> '3.17',
21640 'TAP::Parser::Source' => '3.17',
21641 'TAP::Parser::Source::Perl'=> '3.17',
21642 'TAP::Parser::Utils' => '3.17',
21643 'TAP::Parser::YAMLish::Reader'=> '3.17',
21644 'TAP::Parser::YAMLish::Writer'=> '3.17',
21645 'Term::ANSIColor' => '2.02',
21646 'Term::Cap' => '1.12',
21647 'Term::Complete' => '1.402',
21648 'Term::ReadLine' => '1.05',
21649 'Term::UI' => '0.20',
21650 'Term::UI::History' => undef,
21651 'Test' => '1.25_02',
21652 'Test::Builder' => '0.94',
21653 'Test::Builder::Module' => '0.94',
21654 'Test::Builder::Tester' => '1.18',
21655 'Test::Builder::Tester::Color'=> '1.18',
21656 'Test::Harness' => '3.17',
21657 'Test::More' => '0.94',
21658 'Test::Simple' => '0.94',
21659 'Text::Abbrev' => '1.01',
21660 'Text::Balanced' => '2.02',
21661 'Text::ParseWords' => '3.27',
21662 'Text::Soundex' => '3.03_01',
21663 'Text::Tabs' => '2009.0305',
21664 'Text::Wrap' => '2009.0305',
21665 'Thread' => '3.02',
21666 'Thread::Queue' => '2.11',
21667 'Thread::Semaphore' => '2.09',
21668 'Tie::Array' => '1.03',
21669 'Tie::File' => '0.97_02',
21670 'Tie::Handle' => '4.2',
21671 'Tie::Hash' => '1.03',
21672 'Tie::Hash::NamedCapture'=> '0.06',
21673 'Tie::Memoize' => '1.1',
21674 'Tie::RefHash' => '1.38',
21675 'Tie::Scalar' => '1.02',
21676 'Tie::StdHandle' => '4.2',
21677 'Tie::SubstrHash' => '1.00',
21678 'Time::HiRes' => '1.9719',
21679 'Time::Local' => '1.1901_01',
21680 'Time::Piece' => '1.15_01',
21681 'Time::Piece::Seconds' => undef,
21682 'Time::Seconds' => undef,
21683 'Time::gmtime' => '1.03',
21684 'Time::localtime' => '1.02',
21685 'Time::tm' => '1.00',
21686 'UNIVERSAL' => '1.06',
21687 'Unicode' => '5.2.0',
21688 'Unicode::Collate' => '0.52_01',
21689 'Unicode::Normalize' => '1.03',
21690 'Unicode::UCD' => '0.27',
21691 'User::grent' => '1.01',
21692 'User::pwent' => '1.00',
21693 'VMS::DCLsym' => '1.03',
21694 'VMS::Stdio' => '2.4',
21695 'Win32' => '0.39',
21696 'Win32API::File' => '0.1101',
21697 'Win32API::File::ExtUtils::Myconst2perl'=> '1',
21698 'Win32CORE' => '0.02',
21699 'XS::APItest' => '0.17',
21700 'XS::APItest::KeywordRPN'=> '0.003',
21701 'XS::Typemap' => '0.03',
21702 'XSLoader' => '0.10',
21703 'XSLoader::XSLoader' => '0.10',
21704 'attributes' => '0.12',
21705 'autodie' => '2.06_01',
21706 'autodie::exception' => '2.06_01',
21707 'autodie::exception::system'=> '2.06_01',
21708 'autodie::hints' => '2.06_01',
21709 'autouse' => '1.06',
21710 'base' => '2.15',
21711 'bigint' => '0.23',
21712 'bignum' => '0.23',
21713 'bigrat' => '0.23',
21714 'blib' => '1.04',
21715 'bytes' => '1.04',
21716 'charnames' => '1.07',
21717 'constant' => '1.20',
21718 'deprecate' => '0.01',
21719 'diagnostics' => '1.19',
21720 'encoding' => '2.6_01',
21721 'encoding::warnings' => '0.11',
21722 'feature' => '1.16',
21723 'fields' => '2.15',
21724 'filetest' => '1.02',
21725 'if' => '0.05',
21726 'inc::latest' => '0.3603',
21727 'integer' => '1.00',
21728 'less' => '0.03',
21729 'lib' => '0.62',
21730 'locale' => '1.00',
21731 'mro' => '1.02',
21732 'open' => '1.07',
21733 'ops' => '1.02',
21734 'overload' => '1.10',
21735 'overload::numbers' => undef,
21736 'overloading' => '0.01',
21737 'parent' => '0.223',
21738 're' => '0.11',
21739 'sigtrap' => '1.04',
21740 'sort' => '2.01',
21741 'strict' => '1.04',
21742 'subs' => '1.00',
21743 'threads' => '1.75',
21744 'threads::shared' => '1.32',
21745 'utf8' => '1.08',
21746 'vars' => '1.01',
21747 'version' => '0.82',
21748 'vmsish' => '1.02',
21749 'warnings' => '1.09',
21750 'warnings::register' => '1.01',
21752 5.013009 => {
21753 'AnyDBM_File' => '1.00',
21754 'App::Cpan' => '1.5701',
21755 'App::Prove' => '3.22',
21756 'App::Prove::State' => '3.22',
21757 'App::Prove::State::Result'=> '3.22',
21758 'App::Prove::State::Result::Test'=> '3.22',
21759 'Archive::Extract' => '0.48',
21760 'Archive::Tar' => '1.76',
21761 'Archive::Tar::Constant'=> '1.76',
21762 'Archive::Tar::File' => '1.76',
21763 'Attribute::Handlers' => '0.88',
21764 'AutoLoader' => '5.71',
21765 'AutoSplit' => '1.06',
21766 'B' => '1.27',
21767 'B::Concise' => '0.83',
21768 'B::Debug' => '1.16',
21769 'B::Deparse' => '1.03',
21770 'B::Lint' => '1.13',
21771 'B::Lint::Debug' => '1.12',
21772 'B::Showlex' => '1.02',
21773 'B::Terse' => '1.05',
21774 'B::Xref' => '1.02',
21775 'Benchmark' => '1.12',
21776 'CGI' => '3.51',
21777 'CGI::Apache' => '1.01',
21778 'CGI::Carp' => '3.51',
21779 'CGI::Cookie' => '1.30',
21780 'CGI::Fast' => '1.08',
21781 'CGI::Pretty' => '3.46',
21782 'CGI::Push' => '1.05',
21783 'CGI::Switch' => '1.01',
21784 'CGI::Util' => '3.51',
21785 'CPAN' => '1.94_63',
21786 'CPAN::Author' => '5.5',
21787 'CPAN::Bundle' => '5.5',
21788 'CPAN::CacheMgr' => '5.5',
21789 'CPAN::Complete' => '5.5',
21790 'CPAN::Debug' => '5.5001',
21791 'CPAN::DeferredCode' => '5.50',
21792 'CPAN::Distribution' => '1.9600',
21793 'CPAN::Distroprefs' => '6',
21794 'CPAN::Distrostatus' => '5.5',
21795 'CPAN::Exception::RecursiveDependency'=> '5.5',
21796 'CPAN::Exception::blocked_urllist'=> '1.0',
21797 'CPAN::Exception::yaml_not_installed'=> '5.5',
21798 'CPAN::FTP' => '5.5005',
21799 'CPAN::FTP::netrc' => '1.00',
21800 'CPAN::FirstTime' => '5.5301',
21801 'CPAN::HTTP::Client' => '1.94',
21802 'CPAN::HTTP::Credentials'=> '1.94',
21803 'CPAN::HandleConfig' => '5.5001',
21804 'CPAN::Index' => '1.94',
21805 'CPAN::InfoObj' => '5.5',
21806 'CPAN::Kwalify' => '5.50',
21807 'CPAN::LWP::UserAgent' => '1.94',
21808 'CPAN::Meta::YAML' => '0.003',
21809 'CPAN::Mirrors' => '1.77',
21810 'CPAN::Module' => '5.5',
21811 'CPAN::Nox' => '5.50',
21812 'CPAN::Prompt' => '5.5',
21813 'CPAN::Queue' => '5.5001',
21814 'CPAN::Shell' => '5.5001',
21815 'CPAN::Tarzip' => '5.5011',
21816 'CPAN::URL' => '5.5',
21817 'CPAN::Version' => '5.5001',
21818 'CPANPLUS' => '0.9011',
21819 'CPANPLUS::Backend' => undef,
21820 'CPANPLUS::Backend::RV' => undef,
21821 'CPANPLUS::Config' => undef,
21822 'CPANPLUS::Configure' => undef,
21823 'CPANPLUS::Configure::Setup'=> undef,
21824 'CPANPLUS::Dist' => undef,
21825 'CPANPLUS::Dist::Autobundle'=> undef,
21826 'CPANPLUS::Dist::Base' => undef,
21827 'CPANPLUS::Dist::Build' => '0.52',
21828 'CPANPLUS::Dist::Build::Constants'=> '0.52',
21829 'CPANPLUS::Dist::MM' => undef,
21830 'CPANPLUS::Dist::Sample'=> undef,
21831 'CPANPLUS::Error' => undef,
21832 'CPANPLUS::Internals' => '0.9011',
21833 'CPANPLUS::Internals::Constants'=> undef,
21834 'CPANPLUS::Internals::Constants::Report'=> undef,
21835 'CPANPLUS::Internals::Extract'=> undef,
21836 'CPANPLUS::Internals::Fetch'=> undef,
21837 'CPANPLUS::Internals::Report'=> undef,
21838 'CPANPLUS::Internals::Search'=> undef,
21839 'CPANPLUS::Internals::Source'=> undef,
21840 'CPANPLUS::Internals::Source::Memory'=> undef,
21841 'CPANPLUS::Internals::Source::SQLite'=> undef,
21842 'CPANPLUS::Internals::Source::SQLite::Tie'=> undef,
21843 'CPANPLUS::Internals::Utils'=> undef,
21844 'CPANPLUS::Internals::Utils::Autoflush'=> undef,
21845 'CPANPLUS::Module' => undef,
21846 'CPANPLUS::Module::Author'=> undef,
21847 'CPANPLUS::Module::Author::Fake'=> undef,
21848 'CPANPLUS::Module::Checksums'=> undef,
21849 'CPANPLUS::Module::Fake'=> undef,
21850 'CPANPLUS::Module::Signature'=> undef,
21851 'CPANPLUS::Selfupdate' => undef,
21852 'CPANPLUS::Shell' => undef,
21853 'CPANPLUS::Shell::Classic'=> '0.0562',
21854 'CPANPLUS::Shell::Default'=> '0.9011',
21855 'CPANPLUS::Shell::Default::Plugins::CustomSource'=> undef,
21856 'CPANPLUS::Shell::Default::Plugins::Remote'=> undef,
21857 'CPANPLUS::Shell::Default::Plugins::Source'=> undef,
21858 'Carp' => '1.19',
21859 'Carp::Heavy' => '1.19',
21860 'Class::Struct' => '0.63',
21861 'Compress::Raw::Bzip2' => '2.033',
21862 'Compress::Raw::Zlib' => '2.033',
21863 'Compress::Zlib' => '2.033',
21864 'Config' => undef,
21865 'Config::Extensions' => '0.01',
21866 'Cwd' => '3.36',
21867 'DB' => '1.03',
21868 'DBM_Filter' => '0.04',
21869 'DBM_Filter::compress' => '0.02',
21870 'DBM_Filter::encode' => '0.02',
21871 'DBM_Filter::int32' => '0.02',
21872 'DBM_Filter::null' => '0.02',
21873 'DBM_Filter::utf8' => '0.02',
21874 'DB_File' => '1.821',
21875 'Data::Dumper' => '2.130_02',
21876 'Devel::DProf' => '20080331.00',
21877 'Devel::DProf::dprof::V'=> undef,
21878 'Devel::InnerPackage' => '0.3',
21879 'Devel::PPPort' => '3.19',
21880 'Devel::Peek' => '1.07',
21881 'Devel::SelfStubber' => '1.05',
21882 'Digest' => '1.16',
21883 'Digest::MD5' => '2.51',
21884 'Digest::SHA' => '5.50',
21885 'Digest::base' => '1.16',
21886 'Digest::file' => '1.16',
21887 'DirHandle' => '1.04',
21888 'Dumpvalue' => '1.16',
21889 'DynaLoader' => '1.12',
21890 'Encode' => '2.42',
21891 'Encode::Alias' => '2.13',
21892 'Encode::Byte' => '2.04',
21893 'Encode::CJKConstants' => '2.02',
21894 'Encode::CN' => '2.03',
21895 'Encode::CN::HZ' => '2.05',
21896 'Encode::Config' => '2.05',
21897 'Encode::EBCDIC' => '2.02',
21898 'Encode::Encoder' => '2.01',
21899 'Encode::Encoding' => '2.05',
21900 'Encode::GSM0338' => '2.01',
21901 'Encode::Guess' => '2.04',
21902 'Encode::JP' => '2.04',
21903 'Encode::JP::H2Z' => '2.02',
21904 'Encode::JP::JIS7' => '2.04',
21905 'Encode::KR' => '2.03',
21906 'Encode::KR::2022_KR' => '2.02',
21907 'Encode::MIME::Header' => '2.13',
21908 'Encode::MIME::Header::ISO_2022_JP'=> '1.03',
21909 'Encode::MIME::Name' => '1.01',
21910 'Encode::Symbol' => '2.02',
21911 'Encode::TW' => '2.03',
21912 'Encode::Unicode' => '2.07',
21913 'Encode::Unicode::UTF7' => '2.05',
21914 'English' => '1.04',
21915 'Env' => '1.02',
21916 'Errno' => '1.13',
21917 'Exporter' => '5.64_03',
21918 'Exporter::Heavy' => '5.64_03',
21919 'ExtUtils::CBuilder' => '0.280201',
21920 'ExtUtils::CBuilder::Base'=> '0.280201',
21921 'ExtUtils::CBuilder::Platform::Unix'=> '0.280201',
21922 'ExtUtils::CBuilder::Platform::VMS'=> '0.280201',
21923 'ExtUtils::CBuilder::Platform::Windows'=> '0.280201',
21924 'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280201',
21925 'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280201',
21926 'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280201',
21927 'ExtUtils::CBuilder::Platform::aix'=> '0.280201',
21928 'ExtUtils::CBuilder::Platform::cygwin'=> '0.280201',
21929 'ExtUtils::CBuilder::Platform::darwin'=> '0.280201',
21930 'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280201',
21931 'ExtUtils::CBuilder::Platform::os2'=> '0.280201',
21932 'ExtUtils::Command' => '1.16',
21933 'ExtUtils::Command::MM' => '6.57_05',
21934 'ExtUtils::Constant' => '0.23',
21935 'ExtUtils::Constant::Base'=> '0.05',
21936 'ExtUtils::Constant::ProxySubs'=> '0.08',
21937 'ExtUtils::Constant::Utils'=> '0.03',
21938 'ExtUtils::Constant::XS'=> '0.03',
21939 'ExtUtils::Embed' => '1.30',
21940 'ExtUtils::Install' => '1.56',
21941 'ExtUtils::Installed' => '1.999_001',
21942 'ExtUtils::Liblist' => '6.57_05',
21943 'ExtUtils::Liblist::Kid'=> '6.5705',
21944 'ExtUtils::MM' => '6.57_05',
21945 'ExtUtils::MM_AIX' => '6.57_05',
21946 'ExtUtils::MM_Any' => '6.57_05',
21947 'ExtUtils::MM_BeOS' => '6.57_05',
21948 'ExtUtils::MM_Cygwin' => '6.57_05',
21949 'ExtUtils::MM_DOS' => '6.5705',
21950 'ExtUtils::MM_Darwin' => '6.57_05',
21951 'ExtUtils::MM_MacOS' => '6.5705',
21952 'ExtUtils::MM_NW5' => '6.57_05',
21953 'ExtUtils::MM_OS2' => '6.57_05',
21954 'ExtUtils::MM_QNX' => '6.57_05',
21955 'ExtUtils::MM_UWIN' => '6.5705',
21956 'ExtUtils::MM_Unix' => '6.57_05',
21957 'ExtUtils::MM_VMS' => '6.57_05',
21958 'ExtUtils::MM_VOS' => '6.57_05',
21959 'ExtUtils::MM_Win32' => '6.57_05',
21960 'ExtUtils::MM_Win95' => '6.57_05',
21961 'ExtUtils::MY' => '6.5705',
21962 'ExtUtils::MakeMaker' => '6.57_05',
21963 'ExtUtils::MakeMaker::Config'=> '6.57_05',
21964 'ExtUtils::MakeMaker::YAML'=> '1.44',
21965 'ExtUtils::Manifest' => '1.58',
21966 'ExtUtils::Miniperl' => undef,
21967 'ExtUtils::Mkbootstrap' => '6.57_05',
21968 'ExtUtils::Mksymlists' => '6.57_05',
21969 'ExtUtils::Packlist' => '1.44',
21970 'ExtUtils::ParseXS' => '2.2209',
21971 'ExtUtils::XSSymSet' => '1.2',
21972 'ExtUtils::testlib' => '6.5705',
21973 'Fatal' => '2.1001',
21974 'Fcntl' => '1.11',
21975 'File::Basename' => '2.80',
21976 'File::CheckTree' => '4.41',
21977 'File::Compare' => '1.1006',
21978 'File::Copy' => '2.21',
21979 'File::DosGlob' => '1.04',
21980 'File::Fetch' => '0.32',
21981 'File::Find' => '1.19',
21982 'File::Glob' => '1.11',
21983 'File::GlobMapper' => '1.000',
21984 'File::Path' => '2.08_01',
21985 'File::Spec' => '3.33',
21986 'File::Spec::Cygwin' => '3.33',
21987 'File::Spec::Epoc' => '3.33',
21988 'File::Spec::Functions' => '3.33',
21989 'File::Spec::Mac' => '3.34',
21990 'File::Spec::OS2' => '3.33',
21991 'File::Spec::Unix' => '3.33',
21992 'File::Spec::VMS' => '3.34',
21993 'File::Spec::Win32' => '3.33',
21994 'File::Temp' => '0.22',
21995 'File::stat' => '1.05',
21996 'FileCache' => '1.08',
21997 'FileHandle' => '2.02',
21998 'Filter::Simple' => '0.85',
21999 'Filter::Util::Call' => '1.08',
22000 'FindBin' => '1.50',
22001 'GDBM_File' => '1.13',
22002 'Getopt::Long' => '2.38',
22003 'Getopt::Std' => '1.06',
22004 'HTTP::Tiny' => '0.009',
22005 'Hash::Util' => '0.10',
22006 'Hash::Util::FieldHash' => '1.08',
22007 'I18N::Collate' => '1.02',
22008 'I18N::LangTags' => '0.35_01',
22009 'I18N::LangTags::Detect'=> '1.04',
22010 'I18N::LangTags::List' => '0.35_01',
22011 'I18N::Langinfo' => '0.07',
22012 'IO' => '1.25_03',
22013 'IO::Compress::Adapter::Bzip2'=> '2.033',
22014 'IO::Compress::Adapter::Deflate'=> '2.033',
22015 'IO::Compress::Adapter::Identity'=> '2.033',
22016 'IO::Compress::Base' => '2.033',
22017 'IO::Compress::Base::Common'=> '2.033',
22018 'IO::Compress::Bzip2' => '2.033',
22019 'IO::Compress::Deflate' => '2.033',
22020 'IO::Compress::Gzip' => '2.033',
22021 'IO::Compress::Gzip::Constants'=> '2.033',
22022 'IO::Compress::RawDeflate'=> '2.033',
22023 'IO::Compress::Zip' => '2.033',
22024 'IO::Compress::Zip::Constants'=> '2.033',
22025 'IO::Compress::Zlib::Constants'=> '2.033',
22026 'IO::Compress::Zlib::Extra'=> '2.033',
22027 'IO::Dir' => '1.07',
22028 'IO::File' => '1.14',
22029 'IO::Handle' => '1.29',
22030 'IO::Pipe' => '1.13',
22031 'IO::Poll' => '0.07',
22032 'IO::Seekable' => '1.10',
22033 'IO::Select' => '1.17',
22034 'IO::Socket' => '1.32',
22035 'IO::Socket::INET' => '1.31',
22036 'IO::Socket::UNIX' => '1.23',
22037 'IO::Uncompress::Adapter::Bunzip2'=> '2.033',
22038 'IO::Uncompress::Adapter::Identity'=> '2.033',
22039 'IO::Uncompress::Adapter::Inflate'=> '2.033',
22040 'IO::Uncompress::AnyInflate'=> '2.033',
22041 'IO::Uncompress::AnyUncompress'=> '2.033',
22042 'IO::Uncompress::Base' => '2.033',
22043 'IO::Uncompress::Bunzip2'=> '2.033',
22044 'IO::Uncompress::Gunzip'=> '2.033',
22045 'IO::Uncompress::Inflate'=> '2.033',
22046 'IO::Uncompress::RawInflate'=> '2.033',
22047 'IO::Uncompress::Unzip' => '2.033',
22048 'IO::Zlib' => '1.10',
22049 'IPC::Cmd' => '0.68',
22050 'IPC::Msg' => '2.03',
22051 'IPC::Open2' => '1.03',
22052 'IPC::Open3' => '1.09',
22053 'IPC::Semaphore' => '2.03',
22054 'IPC::SharedMem' => '2.03',
22055 'IPC::SysV' => '2.03',
22056 'JSON::PP' => '2.27103',
22057 'JSON::PP::Boolean' => undef,
22058 'List::Util' => '1.23',
22059 'List::Util::PP' => '1.23',
22060 'List::Util::XS' => '1.23',
22061 'Locale::Codes' => '3.15',
22062 'Locale::Codes::Country'=> '3.15',
22063 'Locale::Codes::Currency'=> '3.15',
22064 'Locale::Codes::Language'=> '3.15',
22065 'Locale::Codes::Script' => '3.15',
22066 'Locale::Constants' => '3.15',
22067 'Locale::Country' => '3.15',
22068 'Locale::Currency' => '3.15',
22069 'Locale::Language' => '3.15',
22070 'Locale::Maketext' => '1.18',
22071 'Locale::Maketext::Guts'=> '1.17',
22072 'Locale::Maketext::GutsLoader'=> '1.17',
22073 'Locale::Maketext::Simple'=> '0.21',
22074 'Locale::Script' => '3.15',
22075 'Log::Message' => '0.04',
22076 'Log::Message::Config' => '0.04',
22077 'Log::Message::Handlers'=> '0.04',
22078 'Log::Message::Item' => '0.04',
22079 'Log::Message::Simple' => '0.08',
22080 'MIME::Base64' => '3.13',
22081 'MIME::QuotedPrint' => '3.13',
22082 'Math::BigFloat' => '1.99_03',
22083 'Math::BigFloat::Trace' => '0.01',
22084 'Math::BigInt' => '1.99_03',
22085 'Math::BigInt::Calc' => '1.99_03',
22086 'Math::BigInt::CalcEmu' => '1.99_02',
22087 'Math::BigInt::FastCalc'=> '0.24_02',
22088 'Math::BigInt::Trace' => '0.01',
22089 'Math::BigRat' => '0.26_02',
22090 'Math::Complex' => '1.56',
22091 'Math::Trig' => '1.2',
22092 'Memoize' => '1.02',
22093 'Memoize::AnyDBM_File' => '1.02',
22094 'Memoize::Expire' => '1.02',
22095 'Memoize::ExpireFile' => '1.02',
22096 'Memoize::ExpireTest' => '1.02',
22097 'Memoize::NDBM_File' => '1.02',
22098 'Memoize::SDBM_File' => '1.02',
22099 'Memoize::Storable' => '1.02',
22100 'Module::Build' => '0.3607',
22101 'Module::Build::Base' => '0.3607',
22102 'Module::Build::Compat' => '0.3607',
22103 'Module::Build::Config' => '0.3607',
22104 'Module::Build::ConfigData'=> undef,
22105 'Module::Build::Cookbook'=> '0.3607',
22106 'Module::Build::Dumper' => '0.3607',
22107 'Module::Build::ModuleInfo'=> '0.3607',
22108 'Module::Build::Notes' => '0.3607',
22109 'Module::Build::PPMMaker'=> '0.3607',
22110 'Module::Build::Platform::Amiga'=> '0.3607',
22111 'Module::Build::Platform::Default'=> '0.3607',
22112 'Module::Build::Platform::EBCDIC'=> '0.3607',
22113 'Module::Build::Platform::MPEiX'=> '0.3607',
22114 'Module::Build::Platform::MacOS'=> '0.3607',
22115 'Module::Build::Platform::RiscOS'=> '0.3607',
22116 'Module::Build::Platform::Unix'=> '0.3607',
22117 'Module::Build::Platform::VMS'=> '0.3607',
22118 'Module::Build::Platform::VOS'=> '0.3607',
22119 'Module::Build::Platform::Windows'=> '0.3607',
22120 'Module::Build::Platform::aix'=> '0.3607',
22121 'Module::Build::Platform::cygwin'=> '0.3607',
22122 'Module::Build::Platform::darwin'=> '0.3607',
22123 'Module::Build::Platform::os2'=> '0.3607',
22124 'Module::Build::PodParser'=> '0.3607',
22125 'Module::Build::Version'=> '0.77',
22126 'Module::Build::YAML' => '1.40',
22127 'Module::CoreList' => '2.42_01',
22128 'Module::Load' => '0.18',
22129 'Module::Load::Conditional'=> '0.40',
22130 'Module::Loaded' => '0.06',
22131 'Module::Metadata' => '1.000003',
22132 'Module::Pluggable' => '3.9',
22133 'Module::Pluggable::Object'=> '3.9',
22134 'Moped::Msg' => '0.01',
22135 'NDBM_File' => '1.11',
22136 'NEXT' => '0.65',
22137 'Net::Cmd' => '2.29',
22138 'Net::Config' => '1.11',
22139 'Net::Domain' => '2.20',
22140 'Net::FTP' => '2.77',
22141 'Net::FTP::A' => '1.18',
22142 'Net::FTP::E' => '0.01',
22143 'Net::FTP::I' => '1.12',
22144 'Net::FTP::L' => '0.01',
22145 'Net::FTP::dataconn' => '0.11',
22146 'Net::NNTP' => '2.24',
22147 'Net::Netrc' => '2.12',
22148 'Net::POP3' => '2.29',
22149 'Net::Ping' => '2.38',
22150 'Net::SMTP' => '2.31',
22151 'Net::Time' => '2.10',
22152 'Net::hostent' => '1.01',
22153 'Net::netent' => '1.00',
22154 'Net::protoent' => '1.00',
22155 'Net::servent' => '1.01',
22156 'O' => '1.01',
22157 'ODBM_File' => '1.10',
22158 'Object::Accessor' => '0.38',
22159 'Opcode' => '1.18',
22160 'POSIX' => '1.24',
22161 'Package::Constants' => '0.02',
22162 'Params::Check' => '0.28',
22163 'Parse::CPAN::Meta' => '1.40',
22164 'Perl::OSType' => '1.002',
22165 'PerlIO' => '1.06',
22166 'PerlIO::encoding' => '0.14',
22167 'PerlIO::scalar' => '0.11',
22168 'PerlIO::via' => '0.11',
22169 'PerlIO::via::QuotedPrint'=> '0.06',
22170 'Pod::Checker' => '1.45',
22171 'Pod::Escapes' => '1.04',
22172 'Pod::Find' => '1.35',
22173 'Pod::Functions' => '1.04',
22174 'Pod::Html' => '1.09',
22175 'Pod::InputObjects' => '1.31',
22176 'Pod::LaTeX' => '0.59',
22177 'Pod::Man' => '2.25',
22178 'Pod::ParseLink' => '1.10',
22179 'Pod::ParseUtils' => '1.36',
22180 'Pod::Parser' => '1.37',
22181 'Pod::Perldoc' => '3.15_03',
22182 'Pod::Perldoc::BaseTo' => undef,
22183 'Pod::Perldoc::GetOptsOO'=> undef,
22184 'Pod::Perldoc::ToChecker'=> undef,
22185 'Pod::Perldoc::ToMan' => undef,
22186 'Pod::Perldoc::ToNroff' => undef,
22187 'Pod::Perldoc::ToPod' => undef,
22188 'Pod::Perldoc::ToRtf' => undef,
22189 'Pod::Perldoc::ToText' => undef,
22190 'Pod::Perldoc::ToTk' => undef,
22191 'Pod::Perldoc::ToXml' => undef,
22192 'Pod::PlainText' => '2.04',
22193 'Pod::Select' => '1.36',
22194 'Pod::Simple' => '3.15',
22195 'Pod::Simple::BlackBox' => '3.15',
22196 'Pod::Simple::Checker' => '3.15',
22197 'Pod::Simple::Debug' => '3.15',
22198 'Pod::Simple::DumpAsText'=> '3.15',
22199 'Pod::Simple::DumpAsXML'=> '3.15',
22200 'Pod::Simple::HTML' => '3.15',
22201 'Pod::Simple::HTMLBatch'=> '3.15',
22202 'Pod::Simple::HTMLLegacy'=> '5.01',
22203 'Pod::Simple::LinkSection'=> '3.15',
22204 'Pod::Simple::Methody' => '3.15',
22205 'Pod::Simple::Progress' => '3.15',
22206 'Pod::Simple::PullParser'=> '3.15',
22207 'Pod::Simple::PullParserEndToken'=> '3.15',
22208 'Pod::Simple::PullParserStartToken'=> '3.15',
22209 'Pod::Simple::PullParserTextToken'=> '3.15',
22210 'Pod::Simple::PullParserToken'=> '3.15',
22211 'Pod::Simple::RTF' => '3.15',
22212 'Pod::Simple::Search' => '3.15',
22213 'Pod::Simple::SimpleTree'=> '3.15',
22214 'Pod::Simple::Text' => '3.15',
22215 'Pod::Simple::TextContent'=> '3.15',
22216 'Pod::Simple::TiedOutFH'=> '3.15',
22217 'Pod::Simple::Transcode'=> '3.15',
22218 'Pod::Simple::TranscodeDumb'=> '3.15',
22219 'Pod::Simple::TranscodeSmart'=> '3.15',
22220 'Pod::Simple::XHTML' => '3.15',
22221 'Pod::Simple::XMLOutStream'=> '3.15',
22222 'Pod::Text' => '3.15',
22223 'Pod::Text::Color' => '2.06',
22224 'Pod::Text::Overstrike' => '2.04',
22225 'Pod::Text::Termcap' => '2.06',
22226 'Pod::Usage' => '1.36',
22227 'SDBM_File' => '1.09',
22228 'Safe' => '2.29',
22229 'Scalar::Util' => '1.23',
22230 'Scalar::Util::PP' => '1.23',
22231 'Search::Dict' => '1.03',
22232 'SelectSaver' => '1.02',
22233 'SelfLoader' => '1.18',
22234 'Shell' => '0.72_01',
22235 'Socket' => '1.93',
22236 'Storable' => '2.26',
22237 'Symbol' => '1.07',
22238 'Sys::Hostname' => '1.15',
22239 'Sys::Syslog' => '0.27',
22240 'Sys::Syslog::win32::Win32'=> undef,
22241 'TAP::Base' => '3.22',
22242 'TAP::Formatter::Base' => '3.22',
22243 'TAP::Formatter::Color' => '3.22',
22244 'TAP::Formatter::Console'=> '3.22',
22245 'TAP::Formatter::Console::ParallelSession'=> '3.22',
22246 'TAP::Formatter::Console::Session'=> '3.22',
22247 'TAP::Formatter::File' => '3.22',
22248 'TAP::Formatter::File::Session'=> '3.22',
22249 'TAP::Formatter::Session'=> '3.22',
22250 'TAP::Harness' => '3.22',
22251 'TAP::Object' => '3.22',
22252 'TAP::Parser' => '3.22',
22253 'TAP::Parser::Aggregator'=> '3.22',
22254 'TAP::Parser::Grammar' => '3.22',
22255 'TAP::Parser::Iterator' => '3.22',
22256 'TAP::Parser::Iterator::Array'=> '3.22',
22257 'TAP::Parser::Iterator::Process'=> '3.22',
22258 'TAP::Parser::Iterator::Stream'=> '3.22',
22259 'TAP::Parser::IteratorFactory'=> '3.22',
22260 'TAP::Parser::Multiplexer'=> '3.22',
22261 'TAP::Parser::Result' => '3.22',
22262 'TAP::Parser::Result::Bailout'=> '3.22',
22263 'TAP::Parser::Result::Comment'=> '3.22',
22264 'TAP::Parser::Result::Plan'=> '3.22',
22265 'TAP::Parser::Result::Pragma'=> '3.22',
22266 'TAP::Parser::Result::Test'=> '3.22',
22267 'TAP::Parser::Result::Unknown'=> '3.22',
22268 'TAP::Parser::Result::Version'=> '3.22',
22269 'TAP::Parser::Result::YAML'=> '3.22',
22270 'TAP::Parser::ResultFactory'=> '3.22',
22271 'TAP::Parser::Scheduler'=> '3.22',
22272 'TAP::Parser::Scheduler::Job'=> '3.22',
22273 'TAP::Parser::Scheduler::Spinner'=> '3.22',
22274 'TAP::Parser::Source' => '3.22',
22275 'TAP::Parser::SourceHandler'=> '3.22',
22276 'TAP::Parser::SourceHandler::Executable'=> '3.22',
22277 'TAP::Parser::SourceHandler::File'=> '3.22',
22278 'TAP::Parser::SourceHandler::Handle'=> '3.22',
22279 'TAP::Parser::SourceHandler::Perl'=> '3.22',
22280 'TAP::Parser::SourceHandler::RawTAP'=> '3.22',
22281 'TAP::Parser::Utils' => '3.22',
22282 'TAP::Parser::YAMLish::Reader'=> '3.22',
22283 'TAP::Parser::YAMLish::Writer'=> '3.22',
22284 'Term::ANSIColor' => '3.00',
22285 'Term::Cap' => '1.12',
22286 'Term::Complete' => '1.402',
22287 'Term::ReadLine' => '1.07',
22288 'Term::UI' => '0.24',
22289 'Term::UI::History' => undef,
22290 'Test' => '1.25_02',
22291 'Test::Builder' => '0.97_01',
22292 'Test::Builder::Module' => '0.97_01',
22293 'Test::Builder::Tester' => '1.21_01',
22294 'Test::Builder::Tester::Color'=> '1.21_01',
22295 'Test::Harness' => '3.22',
22296 'Test::More' => '0.97_01',
22297 'Test::Simple' => '0.97_01',
22298 'Text::Abbrev' => '1.01',
22299 'Text::Balanced' => '2.02',
22300 'Text::ParseWords' => '3.27',
22301 'Text::Soundex' => '3.03_01',
22302 'Text::Tabs' => '2009.0305',
22303 'Text::Wrap' => '2009.0305',
22304 'Thread' => '3.02',
22305 'Thread::Queue' => '2.12',
22306 'Thread::Semaphore' => '2.12',
22307 'Tie::Array' => '1.04',
22308 'Tie::File' => '0.97_02',
22309 'Tie::Handle' => '4.2',
22310 'Tie::Hash' => '1.04',
22311 'Tie::Hash::NamedCapture'=> '0.07',
22312 'Tie::Memoize' => '1.1',
22313 'Tie::RefHash' => '1.38',
22314 'Tie::Scalar' => '1.02',
22315 'Tie::StdHandle' => '4.2',
22316 'Tie::SubstrHash' => '1.00',
22317 'Time::HiRes' => '1.9721_01',
22318 'Time::Local' => '1.2000',
22319 'Time::Piece' => '1.20_01',
22320 'Time::Piece::Seconds' => undef,
22321 'Time::Seconds' => undef,
22322 'Time::gmtime' => '1.03',
22323 'Time::localtime' => '1.02',
22324 'Time::tm' => '1.00',
22325 'UNIVERSAL' => '1.08',
22326 'Unicode' => '6.0.0',
22327 'Unicode::Collate' => '0.6801',
22328 'Unicode::Collate::CJK::Big5'=> '0.65',
22329 'Unicode::Collate::CJK::GB2312'=> '0.65',
22330 'Unicode::Collate::CJK::JISX0208'=> '0.64',
22331 'Unicode::Collate::CJK::Korean'=> '0.66',
22332 'Unicode::Collate::CJK::Pinyin'=> '0.65',
22333 'Unicode::Collate::CJK::Stroke'=> '0.65',
22334 'Unicode::Collate::Locale'=> '0.68',
22335 'Unicode::Normalize' => '1.10',
22336 'Unicode::UCD' => '0.30',
22337 'User::grent' => '1.01',
22338 'User::pwent' => '1.00',
22339 'VMS::DCLsym' => '1.04',
22340 'VMS::Filespec' => '1.12',
22341 'VMS::Stdio' => '2.4',
22342 'Win32' => '0.44',
22343 'Win32API::File' => '0.1101',
22344 'Win32API::File::ExtUtils::Myconst2perl'=> '1',
22345 'Win32CORE' => '0.02',
22346 'XS::APItest' => '0.27',
22347 'XS::Typemap' => '0.04',
22348 'XSLoader' => '0.13',
22349 'XSLoader::XSLoader' => '0.13',
22350 'attributes' => '0.13',
22351 'autodie' => '2.1001',
22352 'autodie::exception' => '2.1001',
22353 'autodie::exception::system'=> '2.1001',
22354 'autodie::hints' => '2.1001',
22355 'autouse' => '1.06',
22356 'base' => '2.15',
22357 'bigint' => '0.26',
22358 'bignum' => '0.26',
22359 'bigrat' => '0.26',
22360 'blib' => '1.06',
22361 'bytes' => '1.04',
22362 'charnames' => '1.18',
22363 'constant' => '1.20',
22364 'deprecate' => '0.01',
22365 'diagnostics' => '1.21',
22366 'encoding' => '2.6_01',
22367 'encoding::warnings' => '0.11',
22368 'feature' => '1.19',
22369 'fields' => '2.15',
22370 'filetest' => '1.02',
22371 'if' => '0.0601',
22372 'inc::latest' => '0.3607',
22373 'integer' => '1.00',
22374 'less' => '0.03',
22375 'lib' => '0.63',
22376 'locale' => '1.00',
22377 'mro' => '1.06',
22378 'open' => '1.08',
22379 'ops' => '1.02',
22380 'overload' => '1.12',
22381 'overload::numbers' => undef,
22382 'overloading' => '0.01',
22383 'parent' => '0.224',
22384 're' => '0.16',
22385 'sigtrap' => '1.05',
22386 'sort' => '2.01',
22387 'strict' => '1.04',
22388 'subs' => '1.00',
22389 'threads' => '1.83',
22390 'threads::shared' => '1.36',
22391 'utf8' => '1.08',
22392 'vars' => '1.02',
22393 'version' => '0.88',
22394 'vmsish' => '1.02',
22395 'warnings' => '1.11',
22396 'warnings::register' => '1.02',
22400 %deprecated = (
22401 5.011 => {
22402 'Class::ISA' => '1',
22403 'Pod::Plainer' => '1',
22404 'Shell' => '1',
22405 'Switch' => '1',
22407 5.011001 => {
22408 'Class::ISA' => '1',
22409 'Pod::Plainer' => '1',
22410 'Shell' => '1',
22411 'Switch' => '1',
22413 5.011002 => {
22414 'Class::ISA' => '1',
22415 'Pod::Plainer' => '1',
22416 'Shell' => '1',
22417 'Switch' => '1',
22419 5.011003 => {
22420 'Class::ISA' => '1',
22421 'Pod::Plainer' => '1',
22422 'Shell' => '1',
22423 'Switch' => '1',
22425 5.011004 => {
22426 'Class::ISA' => '1',
22427 'Pod::Plainer' => '1',
22428 'Shell' => '1',
22429 'Switch' => '1',
22431 5.011005 => {
22432 'Class::ISA' => '1',
22433 'Pod::Plainer' => '1',
22434 'Shell' => '1',
22435 'Switch' => '1',
22437 5.012000 => {
22438 'Class::ISA' => '1',
22439 'Pod::Plainer' => '1',
22440 'Shell' => '1',
22441 'Switch' => '1',
22443 5.013000 => {
22444 'Class::ISA' => '1',
22445 'Pod::Plainer' => '1',
22446 'Shell' => '1',
22447 'Switch' => '1',
22449 5.012001 => {
22450 'Class::ISA' => '1',
22451 'Pod::Plainer' => '1',
22452 'Shell' => '1',
22453 'Switch' => '1',
22455 5.013001 => {
22456 'Shell' => '1',
22458 5.013002 => {
22459 'Shell' => '1',
22461 5.013003 => {
22462 'Shell' => '1',
22464 5.013004 => {
22465 'Shell' => '1',
22467 5.012002 => {
22468 'Class::ISA' => '1',
22469 'Pod::Plainer' => '1',
22470 'Shell' => '1',
22471 'Switch' => '1',
22473 5.013005 => {
22474 'Shell' => '1',
22476 5.013006 => {
22477 'Shell' => '1',
22479 5.013007 => {
22480 'Shell' => '1',
22482 5.013008 => {
22483 'Shell' => '1',
22485 5.012003 => {
22486 'Class::ISA' => '1',
22487 'Pod::Plainer' => '1',
22488 'Shell' => '1',
22489 'Switch' => '1',
22491 5.013009 => {
22492 'Shell' => '1',
22496 %upstream = (
22497 'App::Cpan' => 'cpan',
22498 'App::Prove' => 'cpan',
22499 'App::Prove::State' => 'cpan',
22500 'App::Prove::State::Result'=> 'cpan',
22501 'App::Prove::State::Result::Test'=> 'cpan',
22502 'Archive::Extract' => 'cpan',
22503 'Archive::Tar' => 'cpan',
22504 'Archive::Tar::Constant'=> 'cpan',
22505 'Archive::Tar::File' => 'cpan',
22506 'Attribute::Handlers' => 'blead',
22507 'AutoLoader' => 'cpan',
22508 'AutoSplit' => 'cpan',
22509 'B::Concise' => undef,
22510 'B::Debug' => 'cpan',
22511 'B::Deparse' => 'blead',
22512 'B::Lint' => 'blead',
22513 'B::Lint::Debug' => 'blead',
22514 'CGI' => 'cpan',
22515 'CGI::Apache' => 'cpan',
22516 'CGI::Carp' => 'cpan',
22517 'CGI::Cookie' => 'cpan',
22518 'CGI::Fast' => 'cpan',
22519 'CGI::Pretty' => 'cpan',
22520 'CGI::Push' => 'cpan',
22521 'CGI::Switch' => 'cpan',
22522 'CGI::Util' => 'cpan',
22523 'CPAN' => 'cpan',
22524 'CPAN::Author' => 'cpan',
22525 'CPAN::Bundle' => 'cpan',
22526 'CPAN::CacheMgr' => 'cpan',
22527 'CPAN::Complete' => 'cpan',
22528 'CPAN::Debug' => 'cpan',
22529 'CPAN::DeferredCode' => 'cpan',
22530 'CPAN::Distribution' => 'cpan',
22531 'CPAN::Distroprefs' => 'cpan',
22532 'CPAN::Distrostatus' => 'cpan',
22533 'CPAN::Exception::RecursiveDependency'=> 'cpan',
22534 'CPAN::Exception::blocked_urllist'=> 'cpan',
22535 'CPAN::Exception::yaml_not_installed'=> 'cpan',
22536 'CPAN::FTP' => 'cpan',
22537 'CPAN::FTP::netrc' => 'cpan',
22538 'CPAN::FirstTime' => 'cpan',
22539 'CPAN::HTTP::Client' => 'cpan',
22540 'CPAN::HTTP::Credentials'=> 'cpan',
22541 'CPAN::HandleConfig' => 'cpan',
22542 'CPAN::Index' => 'cpan',
22543 'CPAN::InfoObj' => 'cpan',
22544 'CPAN::Kwalify' => 'cpan',
22545 'CPAN::LWP::UserAgent' => 'cpan',
22546 'CPAN::Meta::YAML' => 'cpan',
22547 'CPAN::Mirrors' => 'cpan',
22548 'CPAN::Module' => 'cpan',
22549 'CPAN::Nox' => 'cpan',
22550 'CPAN::Prompt' => 'cpan',
22551 'CPAN::Queue' => 'cpan',
22552 'CPAN::Shell' => 'cpan',
22553 'CPAN::Tarzip' => 'cpan',
22554 'CPAN::URL' => 'cpan',
22555 'CPAN::Version' => 'cpan',
22556 'CPANPLUS' => 'cpan',
22557 'CPANPLUS::Backend' => 'cpan',
22558 'CPANPLUS::Backend::RV' => 'cpan',
22559 'CPANPLUS::Config' => 'cpan',
22560 'CPANPLUS::Configure' => 'cpan',
22561 'CPANPLUS::Configure::Setup'=> 'cpan',
22562 'CPANPLUS::Dist' => 'cpan',
22563 'CPANPLUS::Dist::Autobundle'=> 'cpan',
22564 'CPANPLUS::Dist::Base' => 'cpan',
22565 'CPANPLUS::Dist::Build' => 'cpan',
22566 'CPANPLUS::Dist::Build::Constants'=> 'cpan',
22567 'CPANPLUS::Dist::MM' => 'cpan',
22568 'CPANPLUS::Dist::Sample'=> 'cpan',
22569 'CPANPLUS::Error' => 'cpan',
22570 'CPANPLUS::Internals' => 'cpan',
22571 'CPANPLUS::Internals::Constants'=> 'cpan',
22572 'CPANPLUS::Internals::Constants::Report'=> 'cpan',
22573 'CPANPLUS::Internals::Extract'=> 'cpan',
22574 'CPANPLUS::Internals::Fetch'=> 'cpan',
22575 'CPANPLUS::Internals::Report'=> 'cpan',
22576 'CPANPLUS::Internals::Search'=> 'cpan',
22577 'CPANPLUS::Internals::Source'=> 'cpan',
22578 'CPANPLUS::Internals::Source::Memory'=> 'cpan',
22579 'CPANPLUS::Internals::Source::SQLite'=> 'cpan',
22580 'CPANPLUS::Internals::Source::SQLite::Tie'=> 'cpan',
22581 'CPANPLUS::Internals::Utils'=> 'cpan',
22582 'CPANPLUS::Internals::Utils::Autoflush'=> 'cpan',
22583 'CPANPLUS::Module' => 'cpan',
22584 'CPANPLUS::Module::Author'=> 'cpan',
22585 'CPANPLUS::Module::Author::Fake'=> 'cpan',
22586 'CPANPLUS::Module::Checksums'=> 'cpan',
22587 'CPANPLUS::Module::Fake'=> 'cpan',
22588 'CPANPLUS::Module::Signature'=> 'cpan',
22589 'CPANPLUS::Selfupdate' => 'cpan',
22590 'CPANPLUS::Shell' => 'cpan',
22591 'CPANPLUS::Shell::Classic'=> 'cpan',
22592 'CPANPLUS::Shell::Default'=> 'cpan',
22593 'CPANPLUS::Shell::Default::Plugins::CustomSource'=> 'cpan',
22594 'CPANPLUS::Shell::Default::Plugins::Remote'=> 'cpan',
22595 'CPANPLUS::Shell::Default::Plugins::Source'=> 'cpan',
22596 'Compress::Raw::Bzip2' => 'cpan',
22597 'Compress::Raw::Zlib' => 'cpan',
22598 'Compress::Zlib' => 'cpan',
22599 'Cwd' => 'blead',
22600 'DB_File' => undef,
22601 'Devel::InnerPackage' => 'cpan',
22602 'Devel::PPPort' => 'cpan',
22603 'Digest' => 'cpan',
22604 'Digest::MD5' => 'cpan',
22605 'Digest::SHA' => 'cpan',
22606 'Digest::base' => 'cpan',
22607 'Digest::file' => 'cpan',
22608 'Encode' => 'cpan',
22609 'Encode::Alias' => 'cpan',
22610 'Encode::Byte' => 'cpan',
22611 'Encode::CJKConstants' => 'cpan',
22612 'Encode::CN' => 'cpan',
22613 'Encode::CN::HZ' => 'cpan',
22614 'Encode::Config' => 'cpan',
22615 'Encode::EBCDIC' => 'cpan',
22616 'Encode::Encoder' => 'cpan',
22617 'Encode::Encoding' => 'cpan',
22618 'Encode::GSM0338' => 'cpan',
22619 'Encode::Guess' => 'cpan',
22620 'Encode::JP' => 'cpan',
22621 'Encode::JP::H2Z' => 'cpan',
22622 'Encode::JP::JIS7' => 'cpan',
22623 'Encode::KR' => 'cpan',
22624 'Encode::KR::2022_KR' => 'cpan',
22625 'Encode::MIME::Header' => 'cpan',
22626 'Encode::MIME::Header::ISO_2022_JP'=> 'cpan',
22627 'Encode::MIME::Name' => 'cpan',
22628 'Encode::Symbol' => 'cpan',
22629 'Encode::TW' => 'cpan',
22630 'Encode::Unicode' => 'cpan',
22631 'Encode::Unicode::UTF7' => 'cpan',
22632 'Exporter' => 'blead',
22633 'Exporter::Heavy' => 'blead',
22634 'ExtUtils::CBuilder' => 'blead',
22635 'ExtUtils::CBuilder::Base'=> 'blead',
22636 'ExtUtils::CBuilder::Platform::Unix'=> 'blead',
22637 'ExtUtils::CBuilder::Platform::VMS'=> 'blead',
22638 'ExtUtils::CBuilder::Platform::Windows'=> 'blead',
22639 'ExtUtils::CBuilder::Platform::Windows::BCC'=> 'blead',
22640 'ExtUtils::CBuilder::Platform::Windows::GCC'=> 'blead',
22641 'ExtUtils::CBuilder::Platform::Windows::MSVC'=> 'blead',
22642 'ExtUtils::CBuilder::Platform::aix'=> 'blead',
22643 'ExtUtils::CBuilder::Platform::cygwin'=> 'blead',
22644 'ExtUtils::CBuilder::Platform::darwin'=> 'blead',
22645 'ExtUtils::CBuilder::Platform::dec_osf'=> 'blead',
22646 'ExtUtils::CBuilder::Platform::os2'=> 'blead',
22647 'ExtUtils::Command::MM' => 'first-come',
22648 'ExtUtils::Constant' => undef,
22649 'ExtUtils::Constant::Base'=> undef,
22650 'ExtUtils::Constant::ProxySubs'=> undef,
22651 'ExtUtils::Constant::Utils'=> undef,
22652 'ExtUtils::Constant::XS'=> undef,
22653 'ExtUtils::Install' => 'blead',
22654 'ExtUtils::Installed' => 'blead',
22655 'ExtUtils::Liblist' => 'first-come',
22656 'ExtUtils::Liblist::Kid'=> 'first-come',
22657 'ExtUtils::MM' => 'first-come',
22658 'ExtUtils::MM_AIX' => 'first-come',
22659 'ExtUtils::MM_Any' => 'first-come',
22660 'ExtUtils::MM_BeOS' => 'first-come',
22661 'ExtUtils::MM_Cygwin' => 'first-come',
22662 'ExtUtils::MM_DOS' => 'first-come',
22663 'ExtUtils::MM_Darwin' => 'first-come',
22664 'ExtUtils::MM_MacOS' => 'first-come',
22665 'ExtUtils::MM_NW5' => 'first-come',
22666 'ExtUtils::MM_OS2' => 'first-come',
22667 'ExtUtils::MM_QNX' => 'first-come',
22668 'ExtUtils::MM_UWIN' => 'first-come',
22669 'ExtUtils::MM_Unix' => 'first-come',
22670 'ExtUtils::MM_VMS' => 'first-come',
22671 'ExtUtils::MM_VOS' => 'first-come',
22672 'ExtUtils::MM_Win32' => 'first-come',
22673 'ExtUtils::MM_Win95' => 'first-come',
22674 'ExtUtils::MY' => 'first-come',
22675 'ExtUtils::MakeMaker' => 'first-come',
22676 'ExtUtils::MakeMaker::Config'=> 'first-come',
22677 'ExtUtils::MakeMaker::YAML'=> 'first-come',
22678 'ExtUtils::Mkbootstrap' => 'first-come',
22679 'ExtUtils::Mksymlists' => 'first-come',
22680 'ExtUtils::Packlist' => 'blead',
22681 'ExtUtils::ParseXS' => 'blead',
22682 'ExtUtils::testlib' => 'first-come',
22683 'Fatal' => 'cpan',
22684 'File::Fetch' => 'cpan',
22685 'File::GlobMapper' => 'cpan',
22686 'File::Path' => undef,
22687 'File::Spec' => 'blead',
22688 'File::Spec::Cygwin' => 'blead',
22689 'File::Spec::Epoc' => 'blead',
22690 'File::Spec::Functions' => 'blead',
22691 'File::Spec::Mac' => 'blead',
22692 'File::Spec::OS2' => 'blead',
22693 'File::Spec::Unix' => 'blead',
22694 'File::Spec::VMS' => 'blead',
22695 'File::Spec::Win32' => 'blead',
22696 'File::Temp' => undef,
22697 'Filter::Simple' => 'blead',
22698 'Filter::Util::Call' => undef,
22699 'Getopt::Long' => 'cpan',
22700 'HTTP::Tiny' => 'cpan',
22701 'IO::Compress::Adapter::Bzip2'=> 'cpan',
22702 'IO::Compress::Adapter::Deflate'=> 'cpan',
22703 'IO::Compress::Adapter::Identity'=> 'cpan',
22704 'IO::Compress::Base' => 'cpan',
22705 'IO::Compress::Base::Common'=> 'cpan',
22706 'IO::Compress::Bzip2' => 'cpan',
22707 'IO::Compress::Deflate' => 'cpan',
22708 'IO::Compress::Gzip' => 'cpan',
22709 'IO::Compress::Gzip::Constants'=> 'cpan',
22710 'IO::Compress::RawDeflate'=> 'cpan',
22711 'IO::Compress::Zip' => 'cpan',
22712 'IO::Compress::Zip::Constants'=> 'cpan',
22713 'IO::Compress::Zlib::Constants'=> 'cpan',
22714 'IO::Compress::Zlib::Extra'=> 'cpan',
22715 'IO::Uncompress::Adapter::Bunzip2'=> 'cpan',
22716 'IO::Uncompress::Adapter::Identity'=> 'cpan',
22717 'IO::Uncompress::Adapter::Inflate'=> 'cpan',
22718 'IO::Uncompress::AnyInflate'=> 'cpan',
22719 'IO::Uncompress::AnyUncompress'=> 'cpan',
22720 'IO::Uncompress::Base' => 'cpan',
22721 'IO::Uncompress::Bunzip2'=> 'cpan',
22722 'IO::Uncompress::Gunzip'=> 'cpan',
22723 'IO::Uncompress::Inflate'=> 'cpan',
22724 'IO::Uncompress::RawInflate'=> 'cpan',
22725 'IO::Uncompress::Unzip' => 'cpan',
22726 'IO::Zlib' => undef,
22727 'IPC::Cmd' => 'cpan',
22728 'IPC::Msg' => 'cpan',
22729 'IPC::Semaphore' => 'cpan',
22730 'IPC::SharedMem' => 'cpan',
22731 'IPC::SysV' => 'cpan',
22732 'JSON::PP' => 'cpan',
22733 'JSON::PP::Boolean' => 'cpan',
22734 'List::Util' => undef,
22735 'List::Util::PP' => undef,
22736 'List::Util::XS' => undef,
22737 'Locale::Codes' => 'cpan',
22738 'Locale::Codes::Country'=> 'cpan',
22739 'Locale::Codes::Currency'=> 'cpan',
22740 'Locale::Codes::Language'=> 'cpan',
22741 'Locale::Codes::Script' => 'cpan',
22742 'Locale::Constants' => 'cpan',
22743 'Locale::Country' => 'cpan',
22744 'Locale::Currency' => 'cpan',
22745 'Locale::Language' => 'cpan',
22746 'Locale::Maketext' => 'blead',
22747 'Locale::Maketext::Guts'=> 'blead',
22748 'Locale::Maketext::GutsLoader'=> 'blead',
22749 'Locale::Maketext::Simple'=> 'cpan',
22750 'Locale::Script' => 'cpan',
22751 'Log::Message' => 'cpan',
22752 'Log::Message::Config' => 'cpan',
22753 'Log::Message::Handlers'=> 'cpan',
22754 'Log::Message::Item' => 'cpan',
22755 'Log::Message::Simple' => 'cpan',
22756 'MIME::Base64' => 'cpan',
22757 'MIME::QuotedPrint' => 'cpan',
22758 'Math::BigFloat' => 'blead',
22759 'Math::BigFloat::Trace' => 'blead',
22760 'Math::BigInt' => 'blead',
22761 'Math::BigInt::Calc' => 'blead',
22762 'Math::BigInt::CalcEmu' => 'blead',
22763 'Math::BigInt::FastCalc'=> 'blead',
22764 'Math::BigInt::Trace' => 'blead',
22765 'Math::BigRat' => 'blead',
22766 'Math::Complex' => 'cpan',
22767 'Math::Trig' => 'cpan',
22768 'Memoize' => 'cpan',
22769 'Memoize::AnyDBM_File' => 'cpan',
22770 'Memoize::Expire' => 'cpan',
22771 'Memoize::ExpireFile' => 'cpan',
22772 'Memoize::ExpireTest' => 'cpan',
22773 'Memoize::NDBM_File' => 'cpan',
22774 'Memoize::SDBM_File' => 'cpan',
22775 'Memoize::Storable' => 'cpan',
22776 'Module::Build' => 'cpan',
22777 'Module::Build::Base' => 'cpan',
22778 'Module::Build::Compat' => 'cpan',
22779 'Module::Build::Config' => 'cpan',
22780 'Module::Build::ConfigData'=> 'cpan',
22781 'Module::Build::Cookbook'=> 'cpan',
22782 'Module::Build::Dumper' => 'cpan',
22783 'Module::Build::ModuleInfo'=> 'cpan',
22784 'Module::Build::Notes' => 'cpan',
22785 'Module::Build::PPMMaker'=> 'cpan',
22786 'Module::Build::Platform::Amiga'=> 'cpan',
22787 'Module::Build::Platform::Default'=> 'cpan',
22788 'Module::Build::Platform::EBCDIC'=> 'cpan',
22789 'Module::Build::Platform::MPEiX'=> 'cpan',
22790 'Module::Build::Platform::MacOS'=> 'cpan',
22791 'Module::Build::Platform::RiscOS'=> 'cpan',
22792 'Module::Build::Platform::Unix'=> 'cpan',
22793 'Module::Build::Platform::VMS'=> 'cpan',
22794 'Module::Build::Platform::VOS'=> 'cpan',
22795 'Module::Build::Platform::Windows'=> 'cpan',
22796 'Module::Build::Platform::aix'=> 'cpan',
22797 'Module::Build::Platform::cygwin'=> 'cpan',
22798 'Module::Build::Platform::darwin'=> 'cpan',
22799 'Module::Build::Platform::os2'=> 'cpan',
22800 'Module::Build::PodParser'=> 'cpan',
22801 'Module::Build::Version'=> 'cpan',
22802 'Module::Build::YAML' => 'cpan',
22803 'Module::CoreList' => 'blead',
22804 'Module::Load' => 'cpan',
22805 'Module::Load::Conditional'=> 'cpan',
22806 'Module::Loaded' => 'cpan',
22807 'Module::Metadata' => 'cpan',
22808 'Module::Pluggable' => 'cpan',
22809 'Module::Pluggable::Object'=> 'cpan',
22810 'NEXT' => 'cpan',
22811 'Net::Cmd' => undef,
22812 'Net::Config' => undef,
22813 'Net::Domain' => undef,
22814 'Net::FTP' => undef,
22815 'Net::FTP::A' => undef,
22816 'Net::FTP::E' => undef,
22817 'Net::FTP::I' => undef,
22818 'Net::FTP::L' => undef,
22819 'Net::FTP::dataconn' => undef,
22820 'Net::NNTP' => undef,
22821 'Net::Netrc' => undef,
22822 'Net::POP3' => undef,
22823 'Net::Ping' => 'blead',
22824 'Net::SMTP' => undef,
22825 'Net::Time' => undef,
22826 'Object::Accessor' => 'cpan',
22827 'Package::Constants' => 'cpan',
22828 'Params::Check' => 'cpan',
22829 'Parse::CPAN::Meta' => 'cpan',
22830 'Perl::OSType' => 'cpan',
22831 'PerlIO::via::QuotedPrint'=> undef,
22832 'Pod::Checker' => undef,
22833 'Pod::Escapes' => undef,
22834 'Pod::Find' => undef,
22835 'Pod::InputObjects' => undef,
22836 'Pod::LaTeX' => undef,
22837 'Pod::Man' => 'cpan',
22838 'Pod::ParseLink' => 'cpan',
22839 'Pod::ParseUtils' => undef,
22840 'Pod::Parser' => undef,
22841 'Pod::Perldoc' => 'blead',
22842 'Pod::Perldoc::BaseTo' => 'blead',
22843 'Pod::Perldoc::GetOptsOO'=> 'blead',
22844 'Pod::Perldoc::ToChecker'=> 'blead',
22845 'Pod::Perldoc::ToMan' => 'blead',
22846 'Pod::Perldoc::ToNroff' => 'blead',
22847 'Pod::Perldoc::ToPod' => 'blead',
22848 'Pod::Perldoc::ToRtf' => 'blead',
22849 'Pod::Perldoc::ToText' => 'blead',
22850 'Pod::Perldoc::ToTk' => 'blead',
22851 'Pod::Perldoc::ToXml' => 'blead',
22852 'Pod::PlainText' => undef,
22853 'Pod::Select' => undef,
22854 'Pod::Simple' => 'cpan',
22855 'Pod::Simple::BlackBox' => 'cpan',
22856 'Pod::Simple::Checker' => 'cpan',
22857 'Pod::Simple::Debug' => 'cpan',
22858 'Pod::Simple::DumpAsText'=> 'cpan',
22859 'Pod::Simple::DumpAsXML'=> 'cpan',
22860 'Pod::Simple::HTML' => 'cpan',
22861 'Pod::Simple::HTMLBatch'=> 'cpan',
22862 'Pod::Simple::HTMLLegacy'=> 'cpan',
22863 'Pod::Simple::LinkSection'=> 'cpan',
22864 'Pod::Simple::Methody' => 'cpan',
22865 'Pod::Simple::Progress' => 'cpan',
22866 'Pod::Simple::PullParser'=> 'cpan',
22867 'Pod::Simple::PullParserEndToken'=> 'cpan',
22868 'Pod::Simple::PullParserStartToken'=> 'cpan',
22869 'Pod::Simple::PullParserTextToken'=> 'cpan',
22870 'Pod::Simple::PullParserToken'=> 'cpan',
22871 'Pod::Simple::RTF' => 'cpan',
22872 'Pod::Simple::Search' => 'cpan',
22873 'Pod::Simple::SimpleTree'=> 'cpan',
22874 'Pod::Simple::Text' => 'cpan',
22875 'Pod::Simple::TextContent'=> 'cpan',
22876 'Pod::Simple::TiedOutFH'=> 'cpan',
22877 'Pod::Simple::Transcode'=> 'cpan',
22878 'Pod::Simple::TranscodeDumb'=> 'cpan',
22879 'Pod::Simple::TranscodeSmart'=> 'cpan',
22880 'Pod::Simple::XHTML' => 'cpan',
22881 'Pod::Simple::XMLOutStream'=> 'cpan',
22882 'Pod::Text' => 'cpan',
22883 'Pod::Text::Color' => 'cpan',
22884 'Pod::Text::Overstrike' => 'cpan',
22885 'Pod::Text::Termcap' => 'cpan',
22886 'Pod::Usage' => undef,
22887 'Safe' => 'blead',
22888 'Scalar::Util' => undef,
22889 'Scalar::Util::PP' => undef,
22890 'SelfLoader' => 'blead',
22891 'Shell' => undef,
22892 'Storable' => 'blead',
22893 'Sys::Syslog' => 'cpan',
22894 'Sys::Syslog::win32::Win32'=> 'cpan',
22895 'TAP::Base' => 'cpan',
22896 'TAP::Formatter::Base' => 'cpan',
22897 'TAP::Formatter::Color' => 'cpan',
22898 'TAP::Formatter::Console'=> 'cpan',
22899 'TAP::Formatter::Console::ParallelSession'=> 'cpan',
22900 'TAP::Formatter::Console::Session'=> 'cpan',
22901 'TAP::Formatter::File' => 'cpan',
22902 'TAP::Formatter::File::Session'=> 'cpan',
22903 'TAP::Formatter::Session'=> 'cpan',
22904 'TAP::Harness' => 'cpan',
22905 'TAP::Object' => 'cpan',
22906 'TAP::Parser' => 'cpan',
22907 'TAP::Parser::Aggregator'=> 'cpan',
22908 'TAP::Parser::Grammar' => 'cpan',
22909 'TAP::Parser::Iterator' => 'cpan',
22910 'TAP::Parser::Iterator::Array'=> 'cpan',
22911 'TAP::Parser::Iterator::Process'=> 'cpan',
22912 'TAP::Parser::Iterator::Stream'=> 'cpan',
22913 'TAP::Parser::IteratorFactory'=> 'cpan',
22914 'TAP::Parser::Multiplexer'=> 'cpan',
22915 'TAP::Parser::Result' => 'cpan',
22916 'TAP::Parser::Result::Bailout'=> 'cpan',
22917 'TAP::Parser::Result::Comment'=> 'cpan',
22918 'TAP::Parser::Result::Plan'=> 'cpan',
22919 'TAP::Parser::Result::Pragma'=> 'cpan',
22920 'TAP::Parser::Result::Test'=> 'cpan',
22921 'TAP::Parser::Result::Unknown'=> 'cpan',
22922 'TAP::Parser::Result::Version'=> 'cpan',
22923 'TAP::Parser::Result::YAML'=> 'cpan',
22924 'TAP::Parser::ResultFactory'=> 'cpan',
22925 'TAP::Parser::Scheduler'=> 'cpan',
22926 'TAP::Parser::Scheduler::Job'=> 'cpan',
22927 'TAP::Parser::Scheduler::Spinner'=> 'cpan',
22928 'TAP::Parser::Source' => 'cpan',
22929 'TAP::Parser::SourceHandler'=> 'cpan',
22930 'TAP::Parser::SourceHandler::Executable'=> 'cpan',
22931 'TAP::Parser::SourceHandler::File'=> 'cpan',
22932 'TAP::Parser::SourceHandler::Handle'=> 'cpan',
22933 'TAP::Parser::SourceHandler::Perl'=> 'cpan',
22934 'TAP::Parser::SourceHandler::RawTAP'=> 'cpan',
22935 'TAP::Parser::Utils' => 'cpan',
22936 'TAP::Parser::YAMLish::Reader'=> 'cpan',
22937 'TAP::Parser::YAMLish::Writer'=> 'cpan',
22938 'Term::ANSIColor' => 'cpan',
22939 'Term::Cap' => undef,
22940 'Term::UI' => 'cpan',
22941 'Term::UI::History' => 'cpan',
22942 'Test' => 'cpan',
22943 'Test::Builder' => 'cpan',
22944 'Test::Builder::Module' => 'cpan',
22945 'Test::Builder::Tester' => 'cpan',
22946 'Test::Builder::Tester::Color'=> 'cpan',
22947 'Test::Harness' => 'cpan',
22948 'Test::More' => 'cpan',
22949 'Test::Simple' => 'cpan',
22950 'Text::Balanced' => undef,
22951 'Text::ParseWords' => undef,
22952 'Text::Soundex' => undef,
22953 'Text::Tabs' => 'cpan',
22954 'Text::Wrap' => 'cpan',
22955 'Thread::Queue' => 'blead',
22956 'Thread::Semaphore' => 'blead',
22957 'Tie::File' => 'first-come',
22958 'Tie::RefHash' => 'cpan',
22959 'Time::HiRes' => undef,
22960 'Time::Local' => 'cpan',
22961 'Time::Piece' => undef,
22962 'Time::Piece::Seconds' => undef,
22963 'Unicode::Collate' => 'first-come',
22964 'Unicode::Collate::CJK::Big5'=> 'first-come',
22965 'Unicode::Collate::CJK::GB2312'=> 'first-come',
22966 'Unicode::Collate::CJK::JISX0208'=> 'first-come',
22967 'Unicode::Collate::CJK::Korean'=> 'first-come',
22968 'Unicode::Collate::CJK::Pinyin'=> 'first-come',
22969 'Unicode::Collate::CJK::Stroke'=> 'first-come',
22970 'Unicode::Collate::Locale'=> 'first-come',
22971 'Unicode::Normalize' => 'first-come',
22972 'VMS::DCLsym' => undef,
22973 'VMS::Filespec' => undef,
22974 'VMS::Stdio' => undef,
22975 'Win32' => 'cpan',
22976 'Win32API::File' => 'cpan',
22977 'Win32API::File::ExtUtils::Myconst2perl'=> 'cpan',
22978 'Win32CORE' => undef,
22979 'XSLoader' => 'blead',
22980 'XSLoader::XSLoader' => 'blead',
22981 'autodie' => 'cpan',
22982 'autodie::exception' => 'cpan',
22983 'autodie::exception::system'=> 'cpan',
22984 'autodie::hints' => 'cpan',
22985 'base' => 'blead',
22986 'bigint' => 'blead',
22987 'bignum' => 'blead',
22988 'bigrat' => 'blead',
22989 'constant' => 'blead',
22990 'encoding' => 'cpan',
22991 'encoding::warnings' => undef,
22992 'fields' => 'blead',
22993 'if' => 'blead',
22994 'inc::latest' => 'cpan',
22995 'lib' => 'blead',
22996 'parent' => undef,
22997 'threads' => 'blead',
22998 'threads::shared' => 'blead',
22999 'version' => undef,
23000 'warnings' => undef,
23001 'warnings::register' => undef,
23004 %bug_tracker = (
23005 'App::Cpan' => undef,
23006 'App::Prove' => 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
23007 'App::Prove::State' => 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
23008 'App::Prove::State::Result'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
23009 'App::Prove::State::Result::Test'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
23010 'Archive::Extract' => undef,
23011 'Archive::Tar' => undef,
23012 'Archive::Tar::Constant'=> undef,
23013 'Archive::Tar::File' => undef,
23014 'Attribute::Handlers' => undef,
23015 'B::Debug' => undef,
23016 'B::Deparse' => undef,
23017 'B::Lint' => undef,
23018 'B::Lint::Debug' => undef,
23019 'CGI' => undef,
23020 'CGI::Apache' => undef,
23021 'CGI::Carp' => undef,
23022 'CGI::Cookie' => undef,
23023 'CGI::Fast' => undef,
23024 'CGI::Pretty' => undef,
23025 'CGI::Push' => undef,
23026 'CGI::Switch' => undef,
23027 'CGI::Util' => undef,
23028 'CPAN' => undef,
23029 'CPAN::Author' => undef,
23030 'CPAN::Bundle' => undef,
23031 'CPAN::CacheMgr' => undef,
23032 'CPAN::Complete' => undef,
23033 'CPAN::Debug' => undef,
23034 'CPAN::DeferredCode' => undef,
23035 'CPAN::Distribution' => undef,
23036 'CPAN::Distroprefs' => undef,
23037 'CPAN::Distrostatus' => undef,
23038 'CPAN::Exception::RecursiveDependency'=> undef,
23039 'CPAN::Exception::blocked_urllist'=> undef,
23040 'CPAN::Exception::yaml_not_installed'=> undef,
23041 'CPAN::FTP' => undef,
23042 'CPAN::FTP::netrc' => undef,
23043 'CPAN::FirstTime' => undef,
23044 'CPAN::HTTP::Client' => undef,
23045 'CPAN::HTTP::Credentials'=> undef,
23046 'CPAN::HandleConfig' => undef,
23047 'CPAN::Index' => undef,
23048 'CPAN::InfoObj' => undef,
23049 'CPAN::Kwalify' => undef,
23050 'CPAN::LWP::UserAgent' => undef,
23051 'CPAN::Meta::YAML' => undef,
23052 'CPAN::Mirrors' => undef,
23053 'CPAN::Module' => undef,
23054 'CPAN::Nox' => undef,
23055 'CPAN::Prompt' => undef,
23056 'CPAN::Queue' => undef,
23057 'CPAN::Shell' => undef,
23058 'CPAN::Tarzip' => undef,
23059 'CPAN::URL' => undef,
23060 'CPAN::Version' => undef,
23061 'CPANPLUS' => undef,
23062 'CPANPLUS::Backend' => undef,
23063 'CPANPLUS::Backend::RV' => undef,
23064 'CPANPLUS::Config' => undef,
23065 'CPANPLUS::Configure' => undef,
23066 'CPANPLUS::Configure::Setup'=> undef,
23067 'CPANPLUS::Dist' => undef,
23068 'CPANPLUS::Dist::Autobundle'=> undef,
23069 'CPANPLUS::Dist::Base' => undef,
23070 'CPANPLUS::Dist::Build' => undef,
23071 'CPANPLUS::Dist::Build::Constants'=> undef,
23072 'CPANPLUS::Dist::MM' => undef,
23073 'CPANPLUS::Dist::Sample'=> undef,
23074 'CPANPLUS::Error' => undef,
23075 'CPANPLUS::Internals' => undef,
23076 'CPANPLUS::Internals::Constants'=> undef,
23077 'CPANPLUS::Internals::Constants::Report'=> undef,
23078 'CPANPLUS::Internals::Extract'=> undef,
23079 'CPANPLUS::Internals::Fetch'=> undef,
23080 'CPANPLUS::Internals::Report'=> undef,
23081 'CPANPLUS::Internals::Search'=> undef,
23082 'CPANPLUS::Internals::Source'=> undef,
23083 'CPANPLUS::Internals::Source::Memory'=> undef,
23084 'CPANPLUS::Internals::Source::SQLite'=> undef,
23085 'CPANPLUS::Internals::Source::SQLite::Tie'=> undef,
23086 'CPANPLUS::Internals::Utils'=> undef,
23087 'CPANPLUS::Internals::Utils::Autoflush'=> undef,
23088 'CPANPLUS::Module' => undef,
23089 'CPANPLUS::Module::Author'=> undef,
23090 'CPANPLUS::Module::Author::Fake'=> undef,
23091 'CPANPLUS::Module::Checksums'=> undef,
23092 'CPANPLUS::Module::Fake'=> undef,
23093 'CPANPLUS::Module::Signature'=> undef,
23094 'CPANPLUS::Selfupdate' => undef,
23095 'CPANPLUS::Shell' => undef,
23096 'CPANPLUS::Shell::Classic'=> undef,
23097 'CPANPLUS::Shell::Default'=> undef,
23098 'CPANPLUS::Shell::Default::Plugins::CustomSource'=> undef,
23099 'CPANPLUS::Shell::Default::Plugins::Remote'=> undef,
23100 'CPANPLUS::Shell::Default::Plugins::Source'=> undef,
23101 'Compress::Raw::Bzip2' => undef,
23102 'Compress::Raw::Zlib' => undef,
23103 'Compress::Zlib' => undef,
23104 'Cwd' => undef,
23105 'DB_File' => undef,
23106 'Devel::InnerPackage' => undef,
23107 'Devel::PPPort' => undef,
23108 'Digest' => undef,
23109 'Digest::MD5' => undef,
23110 'Digest::SHA' => undef,
23111 'Digest::base' => undef,
23112 'Digest::file' => undef,
23113 'Encode' => undef,
23114 'Encode::Alias' => undef,
23115 'Encode::Byte' => undef,
23116 'Encode::CJKConstants' => undef,
23117 'Encode::CN' => undef,
23118 'Encode::CN::HZ' => undef,
23119 'Encode::Config' => undef,
23120 'Encode::EBCDIC' => undef,
23121 'Encode::Encoder' => undef,
23122 'Encode::Encoding' => undef,
23123 'Encode::GSM0338' => undef,
23124 'Encode::Guess' => undef,
23125 'Encode::JP' => undef,
23126 'Encode::JP::H2Z' => undef,
23127 'Encode::JP::JIS7' => undef,
23128 'Encode::KR' => undef,
23129 'Encode::KR::2022_KR' => undef,
23130 'Encode::MIME::Header' => undef,
23131 'Encode::MIME::Header::ISO_2022_JP'=> undef,
23132 'Encode::MIME::Name' => undef,
23133 'Encode::Symbol' => undef,
23134 'Encode::TW' => undef,
23135 'Encode::Unicode' => undef,
23136 'Encode::Unicode::UTF7' => undef,
23137 'Exporter' => undef,
23138 'Exporter::Heavy' => undef,
23139 'ExtUtils::CBuilder' => undef,
23140 'ExtUtils::CBuilder::Base'=> undef,
23141 'ExtUtils::CBuilder::Platform::Unix'=> undef,
23142 'ExtUtils::CBuilder::Platform::VMS'=> undef,
23143 'ExtUtils::CBuilder::Platform::Windows'=> undef,
23144 'ExtUtils::CBuilder::Platform::Windows::BCC'=> undef,
23145 'ExtUtils::CBuilder::Platform::Windows::GCC'=> undef,
23146 'ExtUtils::CBuilder::Platform::Windows::MSVC'=> undef,
23147 'ExtUtils::CBuilder::Platform::aix'=> undef,
23148 'ExtUtils::CBuilder::Platform::cygwin'=> undef,
23149 'ExtUtils::CBuilder::Platform::darwin'=> undef,
23150 'ExtUtils::CBuilder::Platform::dec_osf'=> undef,
23151 'ExtUtils::CBuilder::Platform::os2'=> undef,
23152 'ExtUtils::Command::MM' => undef,
23153 'ExtUtils::Constant' => undef,
23154 'ExtUtils::Constant::Base'=> undef,
23155 'ExtUtils::Constant::ProxySubs'=> undef,
23156 'ExtUtils::Constant::Utils'=> undef,
23157 'ExtUtils::Constant::XS'=> undef,
23158 'ExtUtils::Install' => undef,
23159 'ExtUtils::Installed' => undef,
23160 'ExtUtils::Liblist' => undef,
23161 'ExtUtils::Liblist::Kid'=> undef,
23162 'ExtUtils::MM' => undef,
23163 'ExtUtils::MM_AIX' => undef,
23164 'ExtUtils::MM_Any' => undef,
23165 'ExtUtils::MM_BeOS' => undef,
23166 'ExtUtils::MM_Cygwin' => undef,
23167 'ExtUtils::MM_DOS' => undef,
23168 'ExtUtils::MM_Darwin' => undef,
23169 'ExtUtils::MM_MacOS' => undef,
23170 'ExtUtils::MM_NW5' => undef,
23171 'ExtUtils::MM_OS2' => undef,
23172 'ExtUtils::MM_QNX' => undef,
23173 'ExtUtils::MM_UWIN' => undef,
23174 'ExtUtils::MM_Unix' => undef,
23175 'ExtUtils::MM_VMS' => undef,
23176 'ExtUtils::MM_VOS' => undef,
23177 'ExtUtils::MM_Win32' => undef,
23178 'ExtUtils::MM_Win95' => undef,
23179 'ExtUtils::MY' => undef,
23180 'ExtUtils::MakeMaker' => undef,
23181 'ExtUtils::MakeMaker::Config'=> undef,
23182 'ExtUtils::MakeMaker::YAML'=> undef,
23183 'ExtUtils::Mkbootstrap' => undef,
23184 'ExtUtils::Mksymlists' => undef,
23185 'ExtUtils::Packlist' => undef,
23186 'ExtUtils::ParseXS' => undef,
23187 'ExtUtils::testlib' => undef,
23188 'Fatal' => 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=autodie',
23189 'File::Fetch' => undef,
23190 'File::GlobMapper' => undef,
23191 'File::Path' => undef,
23192 'File::Spec' => undef,
23193 'File::Spec::Cygwin' => undef,
23194 'File::Spec::Epoc' => undef,
23195 'File::Spec::Functions' => undef,
23196 'File::Spec::Mac' => undef,
23197 'File::Spec::OS2' => undef,
23198 'File::Spec::Unix' => undef,
23199 'File::Spec::VMS' => undef,
23200 'File::Spec::Win32' => undef,
23201 'File::Temp' => undef,
23202 'Filter::Simple' => undef,
23203 'Filter::Util::Call' => undef,
23204 'Getopt::Long' => undef,
23205 'HTTP::Tiny' => undef,
23206 'IO::Compress::Adapter::Bzip2'=> undef,
23207 'IO::Compress::Adapter::Deflate'=> undef,
23208 'IO::Compress::Adapter::Identity'=> undef,
23209 'IO::Compress::Base' => undef,
23210 'IO::Compress::Base::Common'=> undef,
23211 'IO::Compress::Bzip2' => undef,
23212 'IO::Compress::Deflate' => undef,
23213 'IO::Compress::Gzip' => undef,
23214 'IO::Compress::Gzip::Constants'=> undef,
23215 'IO::Compress::RawDeflate'=> undef,
23216 'IO::Compress::Zip' => undef,
23217 'IO::Compress::Zip::Constants'=> undef,
23218 'IO::Compress::Zlib::Constants'=> undef,
23219 'IO::Compress::Zlib::Extra'=> undef,
23220 'IO::Uncompress::Adapter::Bunzip2'=> undef,
23221 'IO::Uncompress::Adapter::Identity'=> undef,
23222 'IO::Uncompress::Adapter::Inflate'=> undef,
23223 'IO::Uncompress::AnyInflate'=> undef,
23224 'IO::Uncompress::AnyUncompress'=> undef,
23225 'IO::Uncompress::Base' => undef,
23226 'IO::Uncompress::Bunzip2'=> undef,
23227 'IO::Uncompress::Gunzip'=> undef,
23228 'IO::Uncompress::Inflate'=> undef,
23229 'IO::Uncompress::RawInflate'=> undef,
23230 'IO::Uncompress::Unzip' => undef,
23231 'IO::Zlib' => undef,
23232 'IPC::Cmd' => undef,
23233 'IPC::Msg' => undef,
23234 'IPC::Semaphore' => undef,
23235 'IPC::SharedMem' => undef,
23236 'IPC::SysV' => undef,
23237 'JSON::PP' => undef,
23238 'JSON::PP::Boolean' => undef,
23239 'List::Util' => undef,
23240 'List::Util::PP' => undef,
23241 'List::Util::XS' => undef,
23242 'Locale::Codes' => undef,
23243 'Locale::Codes::Country'=> undef,
23244 'Locale::Codes::Currency'=> undef,
23245 'Locale::Codes::Language'=> undef,
23246 'Locale::Codes::Script' => undef,
23247 'Locale::Constants' => undef,
23248 'Locale::Country' => undef,
23249 'Locale::Currency' => undef,
23250 'Locale::Language' => undef,
23251 'Locale::Maketext' => undef,
23252 'Locale::Maketext::Guts'=> undef,
23253 'Locale::Maketext::GutsLoader'=> undef,
23254 'Locale::Maketext::Simple'=> undef,
23255 'Locale::Script' => undef,
23256 'Log::Message' => undef,
23257 'Log::Message::Config' => undef,
23258 'Log::Message::Handlers'=> undef,
23259 'Log::Message::Item' => undef,
23260 'Log::Message::Simple' => undef,
23261 'MIME::Base64' => undef,
23262 'MIME::QuotedPrint' => undef,
23263 'Math::BigFloat' => undef,
23264 'Math::BigFloat::Trace' => undef,
23265 'Math::BigInt' => undef,
23266 'Math::BigInt::Calc' => undef,
23267 'Math::BigInt::CalcEmu' => undef,
23268 'Math::BigInt::FastCalc'=> undef,
23269 'Math::BigInt::Trace' => undef,
23270 'Math::BigRat' => undef,
23271 'Math::Complex' => undef,
23272 'Math::Trig' => undef,
23273 'Memoize' => undef,
23274 'Memoize::AnyDBM_File' => undef,
23275 'Memoize::Expire' => undef,
23276 'Memoize::ExpireFile' => undef,
23277 'Memoize::ExpireTest' => undef,
23278 'Memoize::NDBM_File' => undef,
23279 'Memoize::SDBM_File' => undef,
23280 'Memoize::Storable' => undef,
23281 'Module::Build' => undef,
23282 'Module::Build::Base' => undef,
23283 'Module::Build::Compat' => undef,
23284 'Module::Build::Config' => undef,
23285 'Module::Build::Cookbook'=> undef,
23286 'Module::Build::Dumper' => undef,
23287 'Module::Build::ModuleInfo'=> undef,
23288 'Module::Build::Notes' => undef,
23289 'Module::Build::PPMMaker'=> undef,
23290 'Module::Build::Platform::Amiga'=> undef,
23291 'Module::Build::Platform::Default'=> undef,
23292 'Module::Build::Platform::EBCDIC'=> undef,
23293 'Module::Build::Platform::MPEiX'=> undef,
23294 'Module::Build::Platform::MacOS'=> undef,
23295 'Module::Build::Platform::RiscOS'=> undef,
23296 'Module::Build::Platform::Unix'=> undef,
23297 'Module::Build::Platform::VMS'=> undef,
23298 'Module::Build::Platform::VOS'=> undef,
23299 'Module::Build::Platform::Windows'=> undef,
23300 'Module::Build::Platform::aix'=> undef,
23301 'Module::Build::Platform::cygwin'=> undef,
23302 'Module::Build::Platform::darwin'=> undef,
23303 'Module::Build::Platform::os2'=> undef,
23304 'Module::Build::PodParser'=> undef,
23305 'Module::Build::Version'=> undef,
23306 'Module::Build::YAML' => undef,
23307 'Module::CoreList' => undef,
23308 'Module::Load' => undef,
23309 'Module::Load::Conditional'=> undef,
23310 'Module::Loaded' => undef,
23311 'Module::Metadata' => undef,
23312 'Module::Pluggable' => undef,
23313 'Module::Pluggable::Object'=> undef,
23314 'NEXT' => undef,
23315 'Net::Cmd' => undef,
23316 'Net::Config' => undef,
23317 'Net::Domain' => undef,
23318 'Net::FTP' => undef,
23319 'Net::FTP::A' => undef,
23320 'Net::FTP::E' => undef,
23321 'Net::FTP::I' => undef,
23322 'Net::FTP::L' => undef,
23323 'Net::FTP::dataconn' => undef,
23324 'Net::NNTP' => undef,
23325 'Net::Netrc' => undef,
23326 'Net::POP3' => undef,
23327 'Net::Ping' => undef,
23328 'Net::SMTP' => undef,
23329 'Net::Time' => undef,
23330 'Object::Accessor' => undef,
23331 'Package::Constants' => undef,
23332 'Params::Check' => undef,
23333 'Parse::CPAN::Meta' => undef,
23334 'Perl::OSType' => undef,
23335 'PerlIO::via::QuotedPrint'=> undef,
23336 'Pod::Checker' => undef,
23337 'Pod::Escapes' => undef,
23338 'Pod::Find' => undef,
23339 'Pod::InputObjects' => undef,
23340 'Pod::LaTeX' => undef,
23341 'Pod::Man' => undef,
23342 'Pod::ParseLink' => undef,
23343 'Pod::ParseUtils' => undef,
23344 'Pod::Parser' => undef,
23345 'Pod::Perldoc' => undef,
23346 'Pod::Perldoc::BaseTo' => undef,
23347 'Pod::Perldoc::GetOptsOO'=> undef,
23348 'Pod::Perldoc::ToChecker'=> undef,
23349 'Pod::Perldoc::ToMan' => undef,
23350 'Pod::Perldoc::ToNroff' => undef,
23351 'Pod::Perldoc::ToPod' => undef,
23352 'Pod::Perldoc::ToRtf' => undef,
23353 'Pod::Perldoc::ToText' => undef,
23354 'Pod::Perldoc::ToTk' => undef,
23355 'Pod::Perldoc::ToXml' => undef,
23356 'Pod::PlainText' => undef,
23357 'Pod::Select' => undef,
23358 'Pod::Simple' => 'mailto:bug-pod-simple@rt.cpan.org',
23359 'Pod::Simple::BlackBox' => 'mailto:bug-pod-simple@rt.cpan.org',
23360 'Pod::Simple::Checker' => 'mailto:bug-pod-simple@rt.cpan.org',
23361 'Pod::Simple::Debug' => 'mailto:bug-pod-simple@rt.cpan.org',
23362 'Pod::Simple::DumpAsText'=> 'mailto:bug-pod-simple@rt.cpan.org',
23363 'Pod::Simple::DumpAsXML'=> 'mailto:bug-pod-simple@rt.cpan.org',
23364 'Pod::Simple::HTML' => 'mailto:bug-pod-simple@rt.cpan.org',
23365 'Pod::Simple::HTMLBatch'=> 'mailto:bug-pod-simple@rt.cpan.org',
23366 'Pod::Simple::HTMLLegacy'=> 'mailto:bug-pod-simple@rt.cpan.org',
23367 'Pod::Simple::LinkSection'=> 'mailto:bug-pod-simple@rt.cpan.org',
23368 'Pod::Simple::Methody' => 'mailto:bug-pod-simple@rt.cpan.org',
23369 'Pod::Simple::Progress' => 'mailto:bug-pod-simple@rt.cpan.org',
23370 'Pod::Simple::PullParser'=> 'mailto:bug-pod-simple@rt.cpan.org',
23371 'Pod::Simple::PullParserEndToken'=> 'mailto:bug-pod-simple@rt.cpan.org',
23372 'Pod::Simple::PullParserStartToken'=> 'mailto:bug-pod-simple@rt.cpan.org',
23373 'Pod::Simple::PullParserTextToken'=> 'mailto:bug-pod-simple@rt.cpan.org',
23374 'Pod::Simple::PullParserToken'=> 'mailto:bug-pod-simple@rt.cpan.org',
23375 'Pod::Simple::RTF' => 'mailto:bug-pod-simple@rt.cpan.org',
23376 'Pod::Simple::Search' => 'mailto:bug-pod-simple@rt.cpan.org',
23377 'Pod::Simple::SimpleTree'=> 'mailto:bug-pod-simple@rt.cpan.org',
23378 'Pod::Simple::Text' => 'mailto:bug-pod-simple@rt.cpan.org',
23379 'Pod::Simple::TextContent'=> 'mailto:bug-pod-simple@rt.cpan.org',
23380 'Pod::Simple::TiedOutFH'=> 'mailto:bug-pod-simple@rt.cpan.org',
23381 'Pod::Simple::Transcode'=> 'mailto:bug-pod-simple@rt.cpan.org',
23382 'Pod::Simple::TranscodeDumb'=> 'mailto:bug-pod-simple@rt.cpan.org',
23383 'Pod::Simple::TranscodeSmart'=> 'mailto:bug-pod-simple@rt.cpan.org',
23384 'Pod::Simple::XHTML' => 'mailto:bug-pod-simple@rt.cpan.org',
23385 'Pod::Simple::XMLOutStream'=> 'mailto:bug-pod-simple@rt.cpan.org',
23386 'Pod::Text' => undef,
23387 'Pod::Text::Color' => undef,
23388 'Pod::Text::Overstrike' => undef,
23389 'Pod::Text::Termcap' => undef,
23390 'Pod::Usage' => undef,
23391 'Safe' => undef,
23392 'Scalar::Util' => undef,
23393 'Scalar::Util::PP' => undef,
23394 'SelfLoader' => undef,
23395 'Shell' => undef,
23396 'Storable' => undef,
23397 'Sys::Syslog' => undef,
23398 'Sys::Syslog::win32::Win32'=> undef,
23399 'TAP::Base' => 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
23400 'TAP::Formatter::Base' => 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
23401 'TAP::Formatter::Color' => 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
23402 'TAP::Formatter::Console'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
23403 'TAP::Formatter::Console::ParallelSession'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
23404 'TAP::Formatter::Console::Session'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
23405 'TAP::Formatter::File' => 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
23406 'TAP::Formatter::File::Session'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
23407 'TAP::Formatter::Session'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
23408 'TAP::Harness' => 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
23409 'TAP::Object' => 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
23410 'TAP::Parser' => 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
23411 'TAP::Parser::Aggregator'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
23412 'TAP::Parser::Grammar' => 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
23413 'TAP::Parser::Iterator' => 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
23414 'TAP::Parser::Iterator::Array'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
23415 'TAP::Parser::Iterator::Process'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
23416 'TAP::Parser::Iterator::Stream'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
23417 'TAP::Parser::IteratorFactory'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
23418 'TAP::Parser::Multiplexer'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
23419 'TAP::Parser::Result' => 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
23420 'TAP::Parser::Result::Bailout'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
23421 'TAP::Parser::Result::Comment'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
23422 'TAP::Parser::Result::Plan'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
23423 'TAP::Parser::Result::Pragma'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
23424 'TAP::Parser::Result::Test'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
23425 'TAP::Parser::Result::Unknown'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
23426 'TAP::Parser::Result::Version'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
23427 'TAP::Parser::Result::YAML'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
23428 'TAP::Parser::ResultFactory'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
23429 'TAP::Parser::Scheduler'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
23430 'TAP::Parser::Scheduler::Job'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
23431 'TAP::Parser::Scheduler::Spinner'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
23432 'TAP::Parser::Source' => 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
23433 'TAP::Parser::SourceHandler'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
23434 'TAP::Parser::SourceHandler::Executable'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
23435 'TAP::Parser::SourceHandler::File'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
23436 'TAP::Parser::SourceHandler::Handle'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
23437 'TAP::Parser::SourceHandler::Perl'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
23438 'TAP::Parser::SourceHandler::RawTAP'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
23439 'TAP::Parser::Utils' => 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
23440 'TAP::Parser::YAMLish::Reader'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
23441 'TAP::Parser::YAMLish::Writer'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
23442 'Term::ANSIColor' => undef,
23443 'Term::Cap' => undef,
23444 'Term::UI' => undef,
23445 'Term::UI::History' => undef,
23446 'Test' => undef,
23447 'Test::Builder' => 'http://github.com/schwern/test-more/issues',
23448 'Test::Builder::Module' => 'http://github.com/schwern/test-more/issues',
23449 'Test::Builder::Tester' => 'http://github.com/schwern/test-more/issues',
23450 'Test::Builder::Tester::Color'=> 'http://github.com/schwern/test-more/issues',
23451 'Test::Harness' => 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
23452 'Test::More' => 'http://github.com/schwern/test-more/issues',
23453 'Test::Simple' => 'http://github.com/schwern/test-more/issues',
23454 'Text::Balanced' => undef,
23455 'Text::ParseWords' => undef,
23456 'Text::Soundex' => undef,
23457 'Text::Tabs' => undef,
23458 'Text::Wrap' => undef,
23459 'Thread::Queue' => undef,
23460 'Thread::Semaphore' => undef,
23461 'Tie::File' => undef,
23462 'Tie::RefHash' => undef,
23463 'Time::HiRes' => undef,
23464 'Time::Local' => undef,
23465 'Time::Piece' => undef,
23466 'Time::Piece::Seconds' => undef,
23467 'Unicode::Collate' => undef,
23468 'Unicode::Collate::CJK::Big5'=> undef,
23469 'Unicode::Collate::CJK::GB2312'=> undef,
23470 'Unicode::Collate::CJK::JISX0208'=> undef,
23471 'Unicode::Collate::CJK::Korean'=> undef,
23472 'Unicode::Collate::CJK::Pinyin'=> undef,
23473 'Unicode::Collate::CJK::Stroke'=> undef,
23474 'Unicode::Collate::Locale'=> undef,
23475 'Unicode::Normalize' => undef,
23476 'Win32' => undef,
23477 'Win32API::File' => undef,
23478 'Win32API::File::ExtUtils::Myconst2perl'=> undef,
23479 'XSLoader' => undef,
23480 'XSLoader::XSLoader' => undef,
23481 'autodie' => 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=autodie',
23482 'autodie::exception' => 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=autodie',
23483 'autodie::exception::system'=> 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=autodie',
23484 'autodie::hints' => 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=autodie',
23485 'base' => undef,
23486 'bigint' => undef,
23487 'bignum' => undef,
23488 'bigrat' => undef,
23489 'constant' => undef,
23490 'encoding' => undef,
23491 'encoding::warnings' => undef,
23492 'fields' => undef,
23493 'if' => undef,
23494 'inc::latest' => undef,
23495 'lib' => undef,
23496 'parent' => undef,
23497 'threads' => undef,
23498 'threads::shared' => undef,
23499 'version' => undef,
23502 # Create aliases with trailing zeros for $] use
23504 $released{'5.000'} = $released{5};
23505 $released{'5.010000'} = $released{5.01};
23506 $released{'5.011000'} = $released{5.011};
23507 $released{'5.012000'} = $released{5.012};
23508 $released{'5.013000'} = $released{5.013};
23510 $version{'5.000'} = $version{5};
23511 $version{'5.010000'} = $version{5.01};
23512 $version{'5.011000'} = $version{5.011};
23513 $version{'5.012000'} = $version{5.012};
23514 $version{'5.013000'} = $version{5.013};
23516 $deprecated{'5.011000'} = $deprecated{5.011};
23517 $deprecated{'5.012000'} = $deprecated{5.012};
23518 $deprecated{'5.013000'} = $deprecated{5.013};
23521 __END__