1 package Module::CoreList;
3 use vars qw/$VERSION %released %version %families %upstream
4 %bug_tracker %deprecated/;
9 Module::CoreList - what modules shipped with versions of perl
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"
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
42 Programmers may also query the contained hash structures to find relevant
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
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>
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
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
103 =head1 DATA STRUCTURES
105 These are the hash data structures that are available:
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
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 and 5.13.0 releases of perl.
174 Moved to Changes file.
178 Richard Clamp E<lt>richardc@unixbeard.netE<gt>
180 Currently maintained by the perl 5 porters E<lt>perl5-porters@perl.orgE<gt>.
184 Copyright (C) 2002-2009 Richard Clamp. All Rights Reserved.
186 This module is free software; you can redistribute it and/or modify it
187 under the same terms as Perl itself.
191 L<corelist>, L<Module::Info>, L<perl>
198 my $what = shift || '';
199 if ($what eq 'dumpinc') {
205 print "---INC---\n", join "\n" => keys %INC
210 sub first_release_raw {
212 $module = shift if $module->isa(__PACKAGE__)
213 and scalar @_ and $_[0] =~ m#\A[a-zA-Z_][0-9a-zA-Z_]*(?:(::|')[0-9a-zA-Z_]+)*\z#;
217 ? grep { exists $version{$_}{ $module } &&
218 $version{$_}{ $module } ge $version } keys %version
219 : grep { exists $version{$_}{ $module } } keys %version;
224 sub first_release_by_date {
225 my @perls = &first_release_raw;
226 return unless @perls;
227 return (sort { $released{$a} cmp $released{$b} } @perls)[0];
231 my @perls = &first_release_raw;
232 return unless @perls;
233 return (sort { $a cmp $b } @perls)[0];
238 $regex = shift if $regex->isa(__PACKAGE__);
240 @perls = keys %version unless @perls;
244 while (my ($k, $v) = each %{$version{$_}}) {
245 $mods{$k}++ if $k =~ $regex;
248 return sort keys %mods
253 $v = shift if $v->isa(__PACKAGE__);
254 return $version{$v} if defined $version{$v};
260 $module = shift if $module->isa(__PACKAGE__)
261 and scalar @_ and $_[0] =~ m#\A[a-zA-Z_][0-9a-zA-Z_]*(?:(::|')[0-9a-zA-Z_]+)*\z#;
262 my $perl_version = shift;
263 $perl_version ||= $];
264 return unless $module && exists $deprecated{$perl_version}{$module};
265 return $deprecated{$perl_version}{$module};
269 my @perls = &removed_raw;
273 sub removed_from_by_date {
274 my @perls = sort { $released{$a} cmp $released{$b} } &removed_raw;
280 $mod = shift if $mod->isa(__PACKAGE__)
281 and scalar @_ and $_[0] =~ m#\A[a-zA-Z_][0-9a-zA-Z_]*(?:(::|')[0-9a-zA-Z_]+)*\z#;
282 return unless my @perls = sort { $a cmp $b } first_release_raw($mod);
283 my $last = pop @perls;
284 my @removed = grep { $_ > $last } sort { $a cmp $b } keys %version;
288 # When things escaped.
289 # NB. If you put version numbers with trailing zeroes here, you
290 # should also add an alias for the numerical ($]) version; see
291 # just before the __END__ of this module.
293 5.000 => '1994-10-17',
294 5.001 => '1995-03-14',
295 5.002 => '1996-02-29',
296 5.00307 => '1996-10-10',
297 5.004 => '1997-05-15',
298 5.005 => '1998-07-22',
299 5.00503 => '1999-03-28',
300 5.00405 => '1999-04-29',
301 5.006 => '2000-03-22',
302 5.006001 => '2001-04-08',
303 5.007003 => '2002-03-05',
304 5.008 => '2002-07-19',
305 5.008001 => '2003-09-25',
306 5.009 => '2003-10-27',
307 5.008002 => '2003-11-05',
308 5.006002 => '2003-11-15',
309 5.008003 => '2004-01-14',
310 5.00504 => '2004-02-23',
311 5.009001 => '2004-03-16',
312 5.008004 => '2004-04-21',
313 5.008005 => '2004-07-19',
314 5.008006 => '2004-11-27',
315 5.009002 => '2005-04-01',
316 5.008007 => '2005-05-30',
317 5.009003 => '2006-01-28',
318 5.008008 => '2006-01-31',
319 5.009004 => '2006-08-15',
320 5.009005 => '2007-07-07',
321 5.010000 => '2007-12-18',
322 5.008009 => '2008-12-14',
323 5.010001 => '2009-08-22',
324 5.011000 => '2009-10-02',
325 5.011001 => '2009-10-20',
326 5.011002 => '2009-11-20',
327 5.011003 => '2009-12-20',
328 5.011004 => '2010-01-20',
329 5.011005 => '2010-02-20',
330 5.012000 => '2010-04-12',
331 5.013000 => '2010-04-20',
332 5.012001 => '2010-05-16',
335 for my $version ( sort { $a <=> $b } keys %released ) {
336 my $family = int ($version * 1000) / 1000;
337 push @{ $families{ $family }} , $version;
343 'AnyDBM_File' => undef, # lib/AnyDBM_File.pm
344 'AutoLoader' => undef, # lib/AutoLoader.pm
345 'AutoSplit' => undef, # lib/AutoSplit.pm
346 'Benchmark' => undef, # lib/Benchmark.pm
347 'Carp' => undef, # lib/Carp.pm
348 'Cwd' => undef, # lib/Cwd.pm
349 'DB_File' => undef, # ext/DB_File/DB_File.pm
350 'DynaLoader' => undef, # ext/DynaLoader/DynaLoader.pm
351 'English' => undef, # lib/English.pm
352 'Env' => undef, # lib/Env.pm
353 'Exporter' => undef, # lib/Exporter.pm
354 'ExtUtils::MakeMaker' => undef, # lib/ExtUtils/MakeMaker.pm
355 'Fcntl' => undef, # ext/Fcntl/Fcntl.pm
356 'File::Basename' => undef, # lib/File/Basename.pm
357 'File::CheckTree' => undef, # lib/File/CheckTree.pm
358 'File::Find' => undef, # lib/File/Find.pm
359 'FileHandle' => undef, # lib/FileHandle.pm
360 'GDBM_File' => undef, # ext/GDBM_File/GDBM_File.pm
361 'Getopt::Long' => undef, # lib/Getopt/Long.pm
362 'Getopt::Std' => undef, # lib/Getopt/Std.pm
363 'I18N::Collate' => undef, # lib/I18N/Collate.pm
364 'IPC::Open2' => undef, # lib/IPC/Open2.pm
365 'IPC::Open3' => undef, # lib/IPC/Open3.pm
366 'Math::BigFloat' => undef, # lib/Math/BigFloat.pm
367 'Math::BigInt' => undef, # lib/Math/BigInt.pm
368 'Math::Complex' => undef, # lib/Math/Complex.pm
369 'NDBM_File' => undef, # ext/NDBM_File/NDBM_File.pm
370 'Net::Ping' => undef, # lib/Net/Ping.pm
371 'ODBM_File' => undef, # ext/ODBM_File/ODBM_File.pm
372 'POSIX' => undef, # ext/POSIX/POSIX.pm
373 'SDBM_File' => undef, # ext/SDBM_File/SDBM_File.pm
374 'Search::Dict' => undef, # lib/Search/Dict.pm
375 'Shell' => undef, # lib/Shell.pm
376 'Socket' => undef, # ext/Socket/Socket.pm
377 'Sys::Hostname' => undef, # lib/Sys/Hostname.pm
378 'Sys::Syslog' => undef, # lib/Sys/Syslog.pm
379 'Term::Cap' => undef, # lib/Term/Cap.pm
380 'Term::Complete' => undef, # lib/Term/Complete.pm
381 'Test::Harness' => undef, # lib/Test/Harness.pm
382 'Text::Abbrev' => undef, # lib/Text/Abbrev.pm
383 'Text::ParseWords' => undef, # lib/Text/ParseWords.pm
384 'Text::Soundex' => undef, # lib/Text/Soundex.pm
385 'Text::Tabs' => undef, # lib/Text/Tabs.pm
386 'TieHash' => undef, # lib/TieHash.pm
387 'Time::Local' => undef, # lib/Time/Local.pm
388 'integer' => undef, # lib/integer.pm
389 'less' => undef, # lib/less.pm
390 'sigtrap' => undef, # lib/sigtrap.pm
391 'strict' => undef, # lib/strict.pm
392 'subs' => undef, # lib/subs.pm
396 'AnyDBM_File' => undef, # lib/AnyDBM_File.pm
397 'AutoLoader' => undef, # lib/AutoLoader.pm
398 'AutoSplit' => undef, # lib/AutoSplit.pm
399 'Benchmark' => undef, # lib/Benchmark.pm
400 'Carp' => undef, # lib/Carp.pm
401 'Cwd' => undef, # lib/Cwd.pm
402 'DB_File' => undef, # ext/DB_File/DB_File.pm
403 'DynaLoader' => undef, # ext/DynaLoader/DynaLoader.pm
404 'English' => undef, # lib/English.pm
405 'Env' => undef, # lib/Env.pm
406 'Exporter' => undef, # lib/Exporter.pm
407 'ExtUtils::Liblist' => undef, # lib/ExtUtils/Liblist.pm
408 'ExtUtils::MakeMaker' => undef, # lib/ExtUtils/MakeMaker.pm
409 'ExtUtils::Manifest' => undef, # lib/ExtUtils/Manifest.pm
410 'ExtUtils::Mkbootstrap' => undef, # lib/ExtUtils/Mkbootstrap.pm
411 'Fcntl' => undef, # ext/Fcntl/Fcntl.pm
412 'File::Basename' => undef, # lib/File/Basename.pm
413 'File::CheckTree' => undef, # lib/File/CheckTree.pm
414 'File::Find' => undef, # lib/File/Find.pm
415 'File::Path' => undef, # lib/File/Path.pm
416 'FileHandle' => undef, # lib/FileHandle.pm
417 'GDBM_File' => undef, # ext/GDBM_File/GDBM_File.pm
418 'Getopt::Long' => undef, # lib/Getopt/Long.pm
419 'Getopt::Std' => undef, # lib/Getopt/Std.pm
420 'I18N::Collate' => undef, # lib/I18N/Collate.pm
421 'IPC::Open2' => undef, # lib/IPC/Open2.pm
422 'IPC::Open3' => undef, # lib/IPC/Open3.pm
423 'Math::BigFloat' => undef, # lib/Math/BigFloat.pm
424 'Math::BigInt' => undef, # lib/Math/BigInt.pm
425 'Math::Complex' => undef, # lib/Math/Complex.pm
426 'NDBM_File' => undef, # ext/NDBM_File/NDBM_File.pm
427 'Net::Ping' => undef, # lib/Net/Ping.pm
428 'ODBM_File' => undef, # ext/ODBM_File/ODBM_File.pm
429 'POSIX' => undef, # ext/POSIX/POSIX.pm
430 'SDBM_File' => undef, # ext/SDBM_File/SDBM_File.pm
431 'Search::Dict' => undef, # lib/Search/Dict.pm
432 'Shell' => undef, # lib/Shell.pm
433 'Socket' => undef, # ext/Socket/Socket.pm
434 'SubstrHash' => undef, # lib/SubstrHash.pm
435 'Sys::Hostname' => undef, # lib/Sys/Hostname.pm
436 'Sys::Syslog' => undef, # lib/Sys/Syslog.pm
437 'Term::Cap' => undef, # lib/Term/Cap.pm
438 'Term::Complete' => undef, # lib/Term/Complete.pm
439 'Test::Harness' => undef, # lib/Test/Harness.pm
440 'Text::Abbrev' => undef, # lib/Text/Abbrev.pm
441 'Text::ParseWords' => undef, # lib/Text/ParseWords.pm
442 'Text::Soundex' => undef, # lib/Text/Soundex.pm
443 'Text::Tabs' => undef, # lib/Text/Tabs.pm
444 'TieHash' => undef, # lib/TieHash.pm
445 'Time::Local' => undef, # lib/Time/Local.pm
446 'integer' => undef, # lib/integer.pm
447 'less' => undef, # lib/less.pm
448 'lib' => undef, # lib/lib.pm
449 'sigtrap' => undef, # lib/sigtrap.pm
450 'strict' => undef, # lib/strict.pm
451 'subs' => undef, # lib/subs.pm
455 'AnyDBM_File' => undef, # lib/AnyDBM_File.pm
456 'AutoLoader' => undef, # lib/AutoLoader.pm
457 'AutoSplit' => undef, # lib/AutoSplit.pm
458 'Benchmark' => undef, # lib/Benchmark.pm
459 'Carp' => undef, # lib/Carp.pm
460 'Cwd' => undef, # lib/Cwd.pm
461 'DB_File' => '1.01', # ext/DB_File/DB_File.pm
462 'Devel::SelfStubber' => '1.01', # lib/Devel/SelfStubber.pm
463 'DirHandle' => undef, # lib/DirHandle.pm
464 'DynaLoader' => '1.00', # ext/DynaLoader/DynaLoader.pm
465 'English' => undef, # lib/English.pm
466 'Env' => undef, # lib/Env.pm
467 'Exporter' => undef, # lib/Exporter.pm
468 'ExtUtils::Install' => undef, # lib/ExtUtils/Install.pm
469 'ExtUtils::Liblist' => undef, # lib/ExtUtils/Liblist.pm
470 'ExtUtils::MM_OS2' => undef, # lib/ExtUtils/MM_OS2.pm
471 'ExtUtils::MM_Unix' => undef, # lib/ExtUtils/MM_Unix.pm
472 'ExtUtils::MM_VMS' => undef, # lib/ExtUtils/MM_VMS.pm
473 'ExtUtils::MakeMaker' => '5.21', # lib/ExtUtils/MakeMaker.pm
474 'ExtUtils::Manifest' => '1.22', # lib/ExtUtils/Manifest.pm
475 'ExtUtils::Mkbootstrap' => undef, # lib/ExtUtils/Mkbootstrap.pm
476 'ExtUtils::Mksymlists' => '1.00', # lib/ExtUtils/Mksymlists.pm
477 'Fcntl' => '1.00', # ext/Fcntl/Fcntl.pm
478 'File::Basename' => undef, # lib/File/Basename.pm
479 'File::CheckTree' => undef, # lib/File/CheckTree.pm
480 'File::Copy' => '1.5', # lib/File/Copy.pm
481 'File::Find' => undef, # lib/File/Find.pm
482 'File::Path' => '1.01', # lib/File/Path.pm
483 'FileCache' => undef, # lib/FileCache.pm
484 'FileHandle' => '1.00', # ext/FileHandle/FileHandle.pm
485 'GDBM_File' => '1.00', # ext/GDBM_File/GDBM_File.pm
486 'Getopt::Long' => '2.01', # lib/Getopt/Long.pm
487 'Getopt::Std' => undef, # lib/Getopt/Std.pm
488 'I18N::Collate' => undef, # lib/I18N/Collate.pm
489 'IPC::Open2' => undef, # lib/IPC/Open2.pm
490 'IPC::Open3' => undef, # lib/IPC/Open3.pm
491 'Math::BigFloat' => undef, # lib/Math/BigFloat.pm
492 'Math::BigInt' => undef, # lib/Math/BigInt.pm
493 'Math::Complex' => undef, # lib/Math/Complex.pm
494 'NDBM_File' => '1.00', # ext/NDBM_File/NDBM_File.pm
495 'Net::Ping' => '1', # lib/Net/Ping.pm
496 'ODBM_File' => '1.00', # ext/ODBM_File/ODBM_File.pm
497 'POSIX' => '1.00', # ext/POSIX/POSIX.pm
498 'Pod::Functions' => undef, # lib/Pod/Functions.pm
499 'Pod::Text' => undef, # lib/Pod/Text.pm
500 'SDBM_File' => '1.00', # ext/SDBM_File/SDBM_File.pm
501 'Safe' => '1.00', # ext/Safe/Safe.pm
502 'Search::Dict' => undef, # lib/Search/Dict.pm
503 'SelectSaver' => undef, # lib/SelectSaver.pm
504 'SelfLoader' => '1.06', # lib/SelfLoader.pm
505 'Shell' => undef, # lib/Shell.pm
506 'Socket' => '1.5', # ext/Socket/Socket.pm
507 'Symbol' => undef, # lib/Symbol.pm
508 'Sys::Hostname' => undef, # lib/Sys/Hostname.pm
509 'Sys::Syslog' => undef, # lib/Sys/Syslog.pm
510 'Term::Cap' => undef, # lib/Term/Cap.pm
511 'Term::Complete' => undef, # lib/Term/Complete.pm
512 'Term::ReadLine' => undef, # lib/Term/ReadLine.pm
513 'Test::Harness' => '1.07', # lib/Test/Harness.pm
514 'Text::Abbrev' => undef, # lib/Text/Abbrev.pm
515 'Text::ParseWords' => undef, # lib/Text/ParseWords.pm
516 'Text::Soundex' => undef, # lib/Text/Soundex.pm
517 'Text::Tabs' => undef, # lib/Text/Tabs.pm
518 'Text::Wrap' => undef, # lib/Text/Wrap.pm
519 'Tie::Hash' => undef, # lib/Tie/Hash.pm
520 'Tie::Scalar' => undef, # lib/Tie/Scalar.pm
521 'Tie::SubstrHash' => undef, # lib/Tie/SubstrHash.pm
522 'Time::Local' => undef, # lib/Time/Local.pm
523 'diagnostics' => undef, # lib/diagnostics.pm
524 'integer' => undef, # lib/integer.pm
525 'less' => undef, # lib/less.pm
526 'lib' => undef, # lib/lib.pm
527 'overload' => undef, # lib/overload.pm
528 'sigtrap' => undef, # lib/sigtrap.pm
529 'strict' => undef, # lib/strict.pm
530 'subs' => undef, # lib/subs.pm
531 'vars' => undef, # lib/vars.pm
535 'AnyDBM_File' => undef, #./lib/AnyDBM_File.pm
536 'AutoLoader' => undef, #./lib/AutoLoader.pm
537 'AutoSplit' => undef, #./lib/AutoSplit.pm
538 'Benchmark' => undef, #./lib/Benchmark.pm
539 'Carp' => undef, #./lib/Carp.pm
541 'Cwd' => undef, #./lib/Cwd.pm
542 'DB_File' => '1.03', #./lib/DB_File.pm
543 'Devel::SelfStubber' => '1.01', #./lib/Devel/SelfStubber.pm
544 'diagnostics' => undef, #./lib/diagnostics.pm
545 'DirHandle' => undef, #./lib/DirHandle.pm
546 'DynaLoader' => '1.00', #./ext/DynaLoader/DynaLoader.pm
547 'English' => undef, #./lib/English.pm
548 'Env' => undef, #./lib/Env.pm
549 'Exporter' => undef, #./lib/Exporter.pm
550 'ExtUtils::Embed' => '1.18', #./lib/ExtUtils/Embed.pm
551 'ExtUtils::Install' => '1.15 ', #./lib/ExtUtils/Install.pm
552 'ExtUtils::Liblist' => '1.20 ', #./lib/ExtUtils/Liblist.pm
553 'ExtUtils::MakeMaker' => '5.38', #./lib/ExtUtils/MakeMaker.pm
554 'ExtUtils::Manifest' => '1.27', #./lib/ExtUtils/Manifest.pm
555 'ExtUtils::Mkbootstrap' => '1.13 ', #./lib/ExtUtils/Mkbootstrap.pm
556 'ExtUtils::Mksymlists' => '1.12 ', #./lib/ExtUtils/Mksymlists.pm
557 'ExtUtils::MM_OS2' => undef, #./lib/ExtUtils/MM_OS2.pm
558 'ExtUtils::MM_Unix' => '1.107 ', #./lib/ExtUtils/MM_Unix.pm
559 'ExtUtils::MM_VMS' => undef, #./lib/ExtUtils/MM_VMS.pm
560 'ExtUtils::testlib' => '1.11 ', #./lib/ExtUtils/testlib.pm
561 'Fatal' => undef, #./lib/Fatal.pm
562 'Fcntl' => '1.00', #./ext/Fcntl/Fcntl.pm
563 'File::Basename' => '2.4', #./lib/File/Basename.pm
564 'File::CheckTree' => undef, #./lib/File/CheckTree.pm
565 'File::Copy' => '1.5', #./lib/File/Copy.pm
566 'File::Find' => undef, #./lib/File/Find.pm
567 'File::Path' => '1.01', #./lib/File/Path.pm
568 'FileCache' => undef, #./lib/FileCache.pm
569 'FileHandle' => '1.00', #./ext/FileHandle/FileHandle.pm
570 'FindBin' => '1.04', #./lib/FindBin.pm
571 'GDBM_File' => '1.00', #./ext/GDBM_File/GDBM_File.pm
572 'Getopt::Long' => '2.04', #./lib/Getopt/Long.pm
573 'Getopt::Std' => undef, #./lib/Getopt/Std.pm
574 'I18N::Collate' => undef, #./lib/I18N/Collate.pm
575 'integer' => undef, #./lib/integer.pm
576 'IO' => undef, #./ext/IO/IO.pm
577 'IO::File' => '1.05', #./ext/IO/lib/IO/File.pm
578 'IO::Handle' => '1.12', #./ext/IO/lib/IO/Handle.pm
579 'IO::Pipe' => '1.07', #./ext/IO/lib/IO/Pipe.pm
580 'IO::Seekable' => '1.05', #./ext/IO/lib/IO/Seekable.pm
581 'IO::Select' => '1.09', #./ext/IO/lib/IO/Select.pm
582 'IO::Socket' => '1.13', #./ext/IO/lib/IO/Socket.pm
583 'IPC::Open2' => undef, #./lib/IPC/Open2.pm
584 'IPC::Open3' => undef, #./lib/IPC/Open3.pm
585 'less' => undef, #./lib/less.pm
586 'lib' => undef, #./lib/lib.pm
587 'Math::BigFloat' => undef, #./lib/Math/BigFloat.pm
588 'Math::BigInt' => undef, #./lib/Math/BigInt.pm
589 'Math::Complex' => undef, #./lib/Math/Complex.pm
590 'NDBM_File' => '1.00', #./ext/NDBM_File/NDBM_File.pm
591 'Net::Ping' => '1.01', #./lib/Net/Ping.pm
592 'ODBM_File' => '1.00', #./ext/ODBM_File/ODBM_File.pm
593 'Opcode' => '1.01', #./ext/Opcode/Opcode.pm
594 'ops' => undef, #./ext/Opcode/ops.pm
595 'OS2::ExtAttr' => '0.01', #./os2/OS2/ExtAttr/ExtAttr.pm
596 'OS2::PrfDB' => '0.02', #./os2/OS2/PrfDB/PrfDB.pm
597 'OS2::Process' => undef, #./os2/OS2/Process/Process.pm
598 'OS2::REXX' => undef, #./os2/OS2/REXX/REXX.pm
599 'overload' => undef, #./lib/overload.pm
600 'Pod::Functions' => undef, #./lib/Pod/Functions.pm
601 'Pod::Text' => undef, #./lib/Pod/Text.pm
602 'POSIX' => '1.00', #./ext/POSIX/POSIX.pm
603 'Safe' => '2.06', #./ext/Opcode/Safe.pm
604 'SDBM_File' => '1.00', #./ext/SDBM_File/SDBM_File.pm
605 'Search::Dict' => undef, #./lib/Search/Dict.pm
606 'SelectSaver' => undef, #./lib/SelectSaver.pm
607 'SelfLoader' => '1.06', #./lib/SelfLoader.pm
608 'Shell' => undef, #./lib/Shell.pm
609 'sigtrap' => '1.01', #./lib/sigtrap.pm
610 'Socket' => '1.5', #./ext/Socket/Socket.pm
611 'strict' => undef, #./lib/strict.pm
612 'subs' => undef, #./lib/subs.pm
613 'Symbol' => undef, #./lib/Symbol.pm
614 'Sys::Hostname' => undef, #./lib/Sys/Hostname.pm
615 'Sys::Syslog' => undef, #./lib/Sys/Syslog.pm
616 'Term::Cap' => undef, #./lib/Term/Cap.pm
617 'Term::Complete' => undef, #./lib/Term/Complete.pm
618 'Term::ReadLine' => undef, #./lib/Term/ReadLine.pm
619 'Test::Harness' => '1.13', #./lib/Test/Harness.pm
620 'Text::Abbrev' => undef, #./lib/Text/Abbrev.pm
621 'Text::ParseWords' => undef, #./lib/Text/ParseWords.pm
622 'Text::Soundex' => undef, #./lib/Text/Soundex.pm
623 'Text::Tabs' => '96.051501', #./lib/Text/Tabs.pm
624 'Text::Wrap' => '96.041801', #./lib/Text/Wrap.pm
625 'Tie::Hash' => undef, #./lib/Tie/Hash.pm
626 'Tie::Scalar' => undef, #./lib/Tie/Scalar.pm
627 'Tie::SubstrHash' => undef, #./lib/Tie/SubstrHash.pm
628 'Time::Local' => undef, #./lib/Time/Local.pm
629 'UNIVERSAL' => undef, #./lib/UNIVERSAL.pm
630 'vars' => undef, #./lib/vars.pm
631 'VMS::Filespec' => undef, #./vms/ext/Filespec.pm
632 'VMS::Stdio' => '2.0', #./vms/ext/Stdio/Stdio.pm
636 'AnyDBM_File' => undef, #./lib/AnyDBM_File.pm
637 'AutoLoader' => undef, #./lib/AutoLoader.pm
638 'AutoSplit' => undef, #./lib/AutoSplit.pm
639 'autouse' => '1.01', #./lib/autouse.pm
640 'Benchmark' => undef, #./lib/Benchmark.pm
641 'blib' => undef, #./lib/blib.pm
642 'Bundle::CPAN' => '0.02', #./lib/Bundle/CPAN.pm
643 'Carp' => undef, #./lib/Carp.pm
644 'CGI' => '2.36', #./lib/CGI.pm
645 'CGI::Apache' => '1.01', #./lib/CGI/Apache.pm
646 'CGI::Carp' => '1.06', #./lib/CGI/Carp.pm
647 'CGI::Fast' => '1.00a', #./lib/CGI/Fast.pm
648 'CGI::Push' => '1.00', #./lib/CGI/Push.pm
649 'CGI::Switch' => '0.05', #./lib/CGI/Switch.pm
650 'Class::Struct' => undef, #./lib/Class/Struct.pm
652 'constant' => '1.00', #./lib/constant.pm
653 'CPAN' => '1.2401', #./lib/CPAN.pm
654 'CPAN::FirstTime' => '1.18 ', #./lib/CPAN/FirstTime.pm
655 'CPAN::Nox' => undef, #./lib/CPAN/Nox.pm
656 'Cwd' => '2.00', #./lib/Cwd.pm
657 'DB_File' => '1.14', #./ext/DB_File/DB_File.pm
658 'Devel::SelfStubber' => '1.01', #./lib/Devel/SelfStubber.pm
659 'diagnostics' => undef, #./lib/diagnostics.pm
660 'DirHandle' => undef, #./lib/DirHandle.pm
661 'DynaLoader' => '1.02', #./ext/DynaLoader/DynaLoader.pm
662 'English' => undef, #./lib/English.pm
663 'Env' => undef, #./lib/Env.pm
664 'Exporter' => undef, #./lib/Exporter.pm
665 'ExtUtils::Command' => '1.00', #./lib/ExtUtils/Command.pm
666 'ExtUtils::Embed' => '1.2501', #./lib/ExtUtils/Embed.pm
667 'ExtUtils::Install' => '1.16 ', #./lib/ExtUtils/Install.pm
668 'ExtUtils::Liblist' => '1.2201 ', #./lib/ExtUtils/Liblist.pm
669 'ExtUtils::MakeMaker' => '5.4002', #./lib/ExtUtils/MakeMaker.pm
670 'ExtUtils::Manifest' => '1.33 ', #./lib/ExtUtils/Manifest.pm
671 'ExtUtils::Mkbootstrap' => '1.13 ', #./lib/ExtUtils/Mkbootstrap.pm
672 'ExtUtils::Mksymlists' => '1.13 ', #./lib/ExtUtils/Mksymlists.pm
673 'ExtUtils::MM_OS2' => undef, #./lib/ExtUtils/MM_OS2.pm
674 'ExtUtils::MM_Unix' => '1.114 ', #./lib/ExtUtils/MM_Unix.pm
675 'ExtUtils::MM_VMS' => undef, #./lib/ExtUtils/MM_VMS.pm
676 'ExtUtils::MM_Win32' => undef, #./lib/ExtUtils/MM_Win32.pm
677 'ExtUtils::testlib' => '1.11 ', #./lib/ExtUtils/testlib.pm
678 'ExtUtils::XSSymSet' => '1.0', #./vms/ext/XSSymSet.pm
679 'Fcntl' => '1.03', #./ext/Fcntl/Fcntl.pm
680 'File::Basename' => '2.5', #./lib/File/Basename.pm
681 'File::CheckTree' => undef, #./lib/File/CheckTree.pm
682 'File::Compare' => '1.1001', #./lib/File/Compare.pm
683 'File::Copy' => '2.02', #./lib/File/Copy.pm
684 'File::Find' => undef, #./lib/File/Find.pm
685 'File::Path' => '1.04', #./lib/File/Path.pm
686 'File::stat' => undef, #./lib/File/stat.pm
687 'FileCache' => undef, #./lib/FileCache.pm
688 'FileHandle' => '2.00', #./lib/FileHandle.pm
689 'FindBin' => '1.04', #./lib/FindBin.pm
690 'GDBM_File' => '1.00', #./ext/GDBM_File/GDBM_File.pm
691 'Getopt::Long' => '2.10', #./lib/Getopt/Long.pm
692 'Getopt::Std' => undef, #./lib/Getopt/Std.pm
693 'I18N::Collate' => undef, #./lib/I18N/Collate.pm
694 'integer' => undef, #./lib/integer.pm
695 'IO' => undef, #./ext/IO/IO.pm
696 'IO::File' => '1.0602', #./ext/IO/lib/IO/File.pm
697 'IO::Handle' => '1.1504', #./ext/IO/lib/IO/Handle.pm
698 'IO::Pipe' => '1.0901', #./ext/IO/lib/IO/Pipe.pm
699 'IO::Seekable' => '1.06', #./ext/IO/lib/IO/Seekable.pm
700 'IO::Select' => '1.10', #./ext/IO/lib/IO/Select.pm
701 'IO::Socket' => '1.1602', #./ext/IO/lib/IO/Socket.pm
702 'IPC::Open2' => '1.01', #./lib/IPC/Open2.pm
703 'IPC::Open3' => '1.0101', #./lib/IPC/Open3.pm
704 'less' => undef, #./lib/less.pm
705 'lib' => undef, #./lib/lib.pm
706 'locale' => undef, #./lib/locale.pm
707 'Math::BigFloat' => undef, #./lib/Math/BigFloat.pm
708 'Math::BigInt' => undef, #./lib/Math/BigInt.pm
709 'Math::Complex' => '1.01', #./lib/Math/Complex.pm
710 'Math::Trig' => '1', #./lib/Math/Trig.pm
711 'NDBM_File' => '1.00', #./ext/NDBM_File/NDBM_File.pm
712 'Net::hostent' => undef, #./lib/Net/hostent.pm
713 'Net::netent' => undef, #./lib/Net/netent.pm
714 'Net::Ping' => '2.02', #./lib/Net/Ping.pm
715 'Net::protoent' => undef, #./lib/Net/protoent.pm
716 'Net::servent' => undef, #./lib/Net/servent.pm
717 'ODBM_File' => '1.00', #./ext/ODBM_File/ODBM_File.pm
718 'Opcode' => '1.04', #./ext/Opcode/Opcode.pm
719 'ops' => undef, #./ext/Opcode/ops.pm
720 'Safe' => '2.06', #./ext/Opcode/Safe.pm
721 'OS2::ExtAttr' => '0.01', #./os2/OS2/ExtAttr/ExtAttr.pm
722 'OS2::PrfDB' => '0.02', #./os2/OS2/PrfDB/PrfDB.pm
723 'OS2::Process' => undef, #./os2/OS2/Process/Process.pm
724 'OS2::REXX' => undef, #./os2/OS2/REXX/REXX.pm
725 'overload' => undef, #./lib/overload.pm
726 'Pod::Functions' => undef, #./lib/Pod/Functions.pm
727 'Pod::Html' => undef, #./lib/Pod/Html.pm
728 'Pod::Text' => '1.0203', #./lib/Pod/Text.pm
729 'POSIX' => '1.02', #./ext/POSIX/POSIX.pm
730 'SDBM_File' => '1.00', #./ext/SDBM_File/SDBM_File.pm
731 'Search::Dict' => undef, #./lib/Search/Dict.pm
732 'SelectSaver' => undef, #./lib/SelectSaver.pm
733 'SelfLoader' => '1.07', #./lib/SelfLoader.pm
734 'Shell' => undef, #./lib/Shell.pm
735 'sigtrap' => '1.02', #./lib/sigtrap.pm
736 'Socket' => '1.6', #./ext/Socket/Socket.pm
737 'strict' => undef, #./lib/strict.pm
738 'subs' => undef, #./lib/subs.pm
739 'Symbol' => '1.02', #./lib/Symbol.pm
740 'Sys::Hostname' => undef, #./lib/Sys/Hostname.pm
741 'Sys::Syslog' => undef, #./lib/Sys/Syslog.pm
742 'Term::Cap' => undef, #./lib/Term/Cap.pm
743 'Term::Complete' => undef, #./lib/Term/Complete.pm
744 'Term::ReadLine' => undef, #./lib/Term/ReadLine.pm
745 'Test::Harness' => '1.1502', #./lib/Test/Harness.pm
746 'Text::Abbrev' => undef, #./lib/Text/Abbrev.pm
747 'Text::ParseWords' => undef, #./lib/Text/ParseWords.pm
748 'Text::Soundex' => undef, #./lib/Text/Soundex.pm
749 'Text::Tabs' => '96.121201', #./lib/Text/Tabs.pm
750 'Text::Wrap' => '97.011701', #./lib/Text/Wrap.pm
751 'Tie::Hash' => undef, #./lib/Tie/Hash.pm
752 'Tie::RefHash' => undef, #./lib/Tie/RefHash.pm
753 'Tie::Scalar' => undef, #./lib/Tie/Scalar.pm
754 'Tie::SubstrHash' => undef, #./lib/Tie/SubstrHash.pm
755 'Time::gmtime' => '1.01', #./lib/Time/gmtime.pm
756 'Time::Local' => undef, #./lib/Time/Local.pm
757 'Time::localtime' => '1.01', #./lib/Time/localtime.pm
758 'Time::tm' => undef, #./lib/Time/tm.pm
759 'UNIVERSAL' => undef, #./lib/UNIVERSAL.pm
760 'User::grent' => undef, #./lib/User/grent.pm
761 'User::pwent' => undef, #./lib/User/pwent.pm
762 'vars' => undef, #./lib/vars.pm
763 'VMS::DCLsym' => '1.01', #./vms/ext/DCLsym/DCLsym.pm
764 'VMS::Filespec' => undef, #./vms/ext/Filespec.pm
765 'VMS::Stdio' => '2.02', #./vms/ext/Stdio/Stdio.pm
766 'vmsish' => undef, #./vms/ext/vmsish.pm
770 'AnyDBM_File' => undef, #./lib/AnyDBM_File.pm
771 'attrs' => '1.0', #./ext/attrs/attrs.pm
772 'AutoLoader' => undef, #./lib/AutoLoader.pm
773 'AutoSplit' => '1.0302', #./lib/AutoSplit.pm
774 'autouse' => '1.01', #./lib/autouse.pm
775 'B' => undef, #./ext/B/B.pm
776 'B::Asmdata' => undef, #./ext/B/B/Asmdata.pm
777 'B::Assembler' => undef, #./ext/B/B/Assembler.pm
778 'B::Bblock' => undef, #./ext/B/B/Bblock.pm
779 'B::Bytecode' => undef, #./ext/B/B/Bytecode.pm
780 'B::C' => undef, #./ext/B/B/C.pm
781 'B::CC' => undef, #./ext/B/B/CC.pm
782 'B::Debug' => undef, #./ext/B/B/Debug.pm
783 'B::Deparse' => '0.56', #./ext/B/B/Deparse.pm
784 'B::Disassembler' => undef, #./ext/B/B/Disassembler.pm
785 'B::Lint' => undef, #./ext/B/B/Lint.pm
786 'B::Showlex' => undef, #./ext/B/B/Showlex.pm
787 'B::Stackobj' => undef, #./ext/B/B/Stackobj.pm
788 'B::Terse' => undef, #./ext/B/B/Terse.pm
789 'B::Xref' => undef, #./ext/B/B/Xref.pm
790 'base' => undef, #./lib/base.pm
791 'Benchmark' => undef, #./lib/Benchmark.pm
792 'blib' => '1.00', #./lib/blib.pm
793 'Carp' => undef, #./lib/Carp.pm
794 'CGI' => '2.42', #./lib/CGI.pm
795 'CGI::Apache' => '1.1', #./lib/CGI/Apache.pm
796 'CGI::Carp' => '1.101', #./lib/CGI/Carp.pm
797 'CGI::Cookie' => '1.06', #./lib/CGI/Cookie.pm
798 'CGI::Fast' => '1.00a', #./lib/CGI/Fast.pm
799 'CGI::Push' => '1.01', #./lib/CGI/Push.pm
800 'CGI::Switch' => '0.06', #./lib/CGI/Switch.pm
801 'Class::Struct' => undef, #./lib/Class/Struct.pm
803 'constant' => '1.00', #./lib/constant.pm
804 'CPAN' => '1.3901', #./lib/CPAN.pm
805 'CPAN::FirstTime' => '1.29 ', #./lib/CPAN/FirstTime.pm
806 'CPAN::Nox' => undef, #./lib/CPAN/Nox.pm
807 'Cwd' => '2.01', #./lib/Cwd.pm
808 'Data::Dumper' => '2.09', #./ext/Data/Dumper/Dumper.pm
809 'DB_File' => '1.60', #./ext/DB_File/DB_File.pm
810 'Devel::SelfStubber' => '1.01', #./lib/Devel/SelfStubber.pm
811 'DynaLoader' => '1.03',
812 'diagnostics' => undef, #./lib/diagnostics.pm
813 'DirHandle' => undef, #./lib/DirHandle.pm
814 'English' => undef, #./lib/English.pm
815 'Env' => undef, #./lib/Env.pm
816 'Exporter' => undef, #./lib/Exporter.pm
817 'ExtUtils::Command' => '1.01', #./lib/ExtUtils/Command.pm
818 'ExtUtils::Embed' => '1.2505', #./lib/ExtUtils/Embed.pm
819 'ExtUtils::Install' => '1.28 ', #./lib/ExtUtils/Install.pm
820 'ExtUtils::Installed' => '0.02', #./lib/ExtUtils/Installed.pm
821 'ExtUtils::Liblist' => '1.25 ', #./lib/ExtUtils/Liblist.pm
822 'ExtUtils::MakeMaker' => '5.4301', #./lib/ExtUtils/MakeMaker.pm
823 'ExtUtils::Manifest' => '1.33 ', #./lib/ExtUtils/Manifest.pm
824 'ExtUtils::Mkbootstrap' => '1.13 ', #./lib/ExtUtils/Mkbootstrap.pm
825 'ExtUtils::Mksymlists' => '1.17 ', #./lib/ExtUtils/Mksymlists.pm
826 'ExtUtils::MM_OS2' => undef, #./lib/ExtUtils/MM_OS2.pm
827 'ExtUtils::MM_Unix' => '1.12601 ', #./lib/ExtUtils/MM_Unix.pm
828 'ExtUtils::MM_VMS' => undef, #./lib/ExtUtils/MM_VMS.pm
829 'ExtUtils::MM_Win32' => undef, #./lib/ExtUtils/MM_Win32.pm
830 'ExtUtils::Packlist' => '0.03', #./lib/ExtUtils/Packlist.pm
831 'ExtUtils::testlib' => '1.11 ', #./lib/ExtUtils/testlib.pm
832 'ExtUtils::XSSymSet' => '1.0', #./vms/ext/XSSymSet.pm
833 'Fatal' => '1.02', #./lib/Fatal.pm
834 'Fcntl' => '1.03', #./ext/Fcntl/Fcntl.pm
835 'fields' => '0.02', #./lib/fields.pm
836 'File::Basename' => '2.6', #./lib/File/Basename.pm
837 'File::CheckTree' => undef, #./lib/File/CheckTree.pm
838 'File::Compare' => '1.1001', #./lib/File/Compare.pm
839 'File::Copy' => '2.02', #./lib/File/Copy.pm
840 'File::DosGlob' => undef, #./lib/File/DosGlob.pm
841 'File::Find' => undef, #./lib/File/Find.pm
842 'File::Path' => '1.0401', #./lib/File/Path.pm
843 'File::Spec' => '0.6', #./lib/File/Spec.pm
844 'File::Spec::Mac' => '1.0', #./lib/File/Spec/Mac.pm
845 'File::Spec::OS2' => undef, #./lib/File/Spec/OS2.pm
846 'File::Spec::Unix' => undef, #./lib/File/Spec/Unix.pm
847 'File::Spec::VMS' => undef, #./lib/File/Spec/VMS.pm
848 'File::Spec::Win32' => undef, #./lib/File/Spec/Win32.pm
849 'File::stat' => undef, #./lib/File/stat.pm
850 'FileCache' => undef, #./lib/FileCache.pm
851 'FileHandle' => '2.00', #./lib/FileHandle.pm
852 'FindBin' => '1.41', #./lib/FindBin.pm
853 'GDBM_File' => '1.00', #./ext/GDBM_File/GDBM_File.pm
854 'Getopt::Long' => '2.17', #./lib/Getopt/Long.pm
855 'Getopt::Std' => undef, #./lib/Getopt/Std.pm
856 'I18N::Collate' => undef, #./lib/I18N/Collate.pm
857 'integer' => undef, #./lib/integer.pm
858 'IO' => undef, #./ext/IO/IO.pm
859 'IO::File' => '1.06021', #./ext/IO/lib/IO/File.pm
860 'IO::Handle' => '1.1505', #./ext/IO/lib/IO/Handle.pm
861 'IO::Pipe' => '1.0901', #./ext/IO/lib/IO/Pipe.pm
862 'IO::Seekable' => '1.06', #./ext/IO/lib/IO/Seekable.pm
863 'IO::Select' => '1.10', #./ext/IO/lib/IO/Select.pm
864 'IO::Socket' => '1.1603', #./ext/IO/lib/IO/Socket.pm
865 'IPC::Open2' => '1.01', #./lib/IPC/Open2.pm
866 'IPC::Open3' => '1.0102', #./lib/IPC/Open3.pm
867 'IPC::Msg' => '1.00', #./ext/IPC/SysV/Msg.pm
868 'IPC::Semaphore' => '1.00', #./ext/IPC/SysV/Semaphore.pm
869 'IPC::SysV' => '1.03', #./ext/IPC/SysV/SysV.pm
870 'less' => undef, #./lib/less.pm
871 'lib' => undef, #./lib/lib.pm
872 'locale' => undef, #./lib/locale.pm
873 'Math::BigFloat' => undef, #./lib/Math/BigFloat.pm
874 'Math::BigInt' => undef, #./lib/Math/BigInt.pm
875 'Math::Complex' => '1.25', #./lib/Math/Complex.pm
876 'Math::Trig' => '1', #./lib/Math/Trig.pm
877 'NDBM_File' => '1.01', #./ext/NDBM_File/NDBM_File.pm
878 'Net::hostent' => undef, #./lib/Net/hostent.pm
879 'Net::netent' => undef, #./lib/Net/netent.pm
880 'Net::Ping' => '2.02', #./lib/Net/Ping.pm
881 'Net::protoent' => undef, #./lib/Net/protoent.pm
882 'Net::servent' => undef, #./lib/Net/servent.pm
883 'O' => undef, #./ext/B/O.pm
884 'ODBM_File' => '1.00', #./ext/ODBM_File/ODBM_File.pm
885 'Opcode' => '1.04', #./ext/Opcode/Opcode.pm
886 'ops' => undef, #./ext/Opcode/ops.pm
887 'Safe' => '2.06', #./ext/Opcode/Safe.pm
888 'OS2::ExtAttr' => '0.01', #./os2/OS2/ExtAttr/ExtAttr.pm
889 'OS2::PrfDB' => '0.02', #./os2/OS2/PrfDB/PrfDB.pm
890 'OS2::Process' => '0.2', #./os2/OS2/Process/Process.pm
891 'OS2::REXX' => undef, #./os2/OS2/REXX/REXX.pm
892 'overload' => undef, #./lib/overload.pm
893 'Pod::Functions' => undef, #./lib/Pod/Functions.pm
894 'Pod::Html' => '1.01', #./lib/Pod/Html.pm
895 'Pod::Text' => '1.0203', #./lib/Pod/Text.pm
896 'POSIX' => '1.02', #./ext/POSIX/POSIX.pm
897 're' => '0.02', #./ext/re/re.pm
898 'SDBM_File' => '1.00', #./ext/SDBM_File/SDBM_File.pm
899 'Search::Dict' => undef, #./lib/Search/Dict.pm
900 'SelectSaver' => undef, #./lib/SelectSaver.pm
901 'SelfLoader' => '1.08', #./lib/SelfLoader.pm
902 'Shell' => undef, #./lib/Shell.pm
903 'sigtrap' => '1.02', #./lib/sigtrap.pm
904 'Socket' => '1.7', #./ext/Socket/Socket.pm
905 'strict' => '1.01', #./lib/strict.pm
906 'subs' => undef, #./lib/subs.pm
907 'Symbol' => '1.02', #./lib/Symbol.pm
908 'Sys::Hostname' => undef, #./lib/Sys/Hostname.pm
909 'Sys::Syslog' => undef, #./lib/Sys/Syslog.pm
910 'Term::Cap' => undef, #./lib/Term/Cap.pm
911 'Term::Complete' => undef, #./lib/Term/Complete.pm
912 'Term::ReadLine' => undef, #./lib/Term/ReadLine.pm
913 'Test' => '1.04', #./lib/Test.pm
914 'Test::Harness' => '1.1602', #./lib/Test/Harness.pm
915 'Text::Abbrev' => undef, #./lib/Text/Abbrev.pm
916 'Text::ParseWords' => '3.1', #./lib/Text/ParseWords.pm
917 'Text::Soundex' => undef, #./lib/Text/Soundex.pm
918 'Text::Tabs' => '96.121201', #./lib/Text/Tabs.pm
919 'Text::Wrap' => '97.02', #./lib/Text/Wrap.pm
920 'Thread' => '1.0', #./ext/Thread/Thread.pm
921 'Thread::Queue' => undef, #./ext/Thread/Thread/Queue.pm
922 'Thread::Semaphore' => undef, #./ext/Thread/Thread/Semaphore.pm
923 'Thread::Signal' => undef, #./ext/Thread/Thread/Signal.pm
924 'Thread::Specific' => undef, #./ext/Thread/Thread/Specific.pm
925 'Tie::Array' => '1.00', #./lib/Tie/Array.pm
926 'Tie::Handle' => undef, #./lib/Tie/Handle.pm
927 'Tie::Hash' => undef, #./lib/Tie/Hash.pm
928 'Tie::RefHash' => undef, #./lib/Tie/RefHash.pm
929 'Tie::Scalar' => undef, #./lib/Tie/Scalar.pm
930 'Tie::SubstrHash' => undef, #./lib/Tie/SubstrHash.pm
931 'Time::gmtime' => '1.01', #./lib/Time/gmtime.pm
932 'Time::Local' => undef, #./lib/Time/Local.pm
933 'Time::localtime' => '1.01', #./lib/Time/localtime.pm
934 'Time::tm' => undef, #./lib/Time/tm.pm
935 'UNIVERSAL' => undef, #./lib/UNIVERSAL.pm
936 'User::grent' => undef, #./lib/User/grent.pm
937 'User::pwent' => undef, #./lib/User/pwent.pm
938 'vars' => undef, #./lib/vars.pm
939 'VMS::DCLsym' => '1.01', #./vms/ext/DCLsym/DCLsym.pm
940 'VMS::Filespec' => undef, #./vms/ext/Filespec.pm
941 'VMS::Stdio' => '2.1', #./vms/ext/Stdio/Stdio.pm
942 'vmsish' => undef, #./vms/ext/vmsish.pm
946 'AnyDBM_File' => undef,
948 'AutoLoader' => undef,
949 'AutoSplit' => 1.0303,
951 'B::Asmdata' => undef,
952 'B::Assembler' => undef,
953 'B::Bblock' => undef,
954 'B::Bytecode' => undef,
958 'B::Deparse' => 0.56,
959 'B::Disassembler' => undef,
962 'B::Showlex' => undef,
963 'B::Stackobj' => undef,
967 'Benchmark' => undef,
971 'CGI::Apache' => 1.1,
973 'CGI::Cookie' => 1.06,
976 'CGI::Switch' => 0.06,
977 'Class::Struct' => undef,
979 'constant' => '1.00',
980 'CPAN::FirstTime' => 1.36 ,
982 'CPAN::Nox' => '1.00',
984 'Data::Dumper' => 2.101,
986 'Devel::SelfStubber' => 1.01,
987 'diagnostics' => undef,
988 'DirHandle' => undef,
989 'Dumpvalue' => undef,
990 'DynaLoader' => 1.03,
994 'ExtUtils::Command' => 1.01,
995 'ExtUtils::Embed' => 1.2505,
996 'ExtUtils::Install' => 1.28 ,
997 'ExtUtils::Installed' => 0.02,
998 'ExtUtils::Liblist' => 1.25 ,
999 'ExtUtils::MakeMaker' => 5.4302,
1000 'ExtUtils::Manifest' => 1.33 ,
1001 'ExtUtils::Mkbootstrap' => 1.14 ,
1002 'ExtUtils::Mksymlists' => 1.17 ,
1003 'ExtUtils::MM_OS2' => undef,
1004 'ExtUtils::MM_Unix' => 1.12602 ,
1005 'ExtUtils::MM_VMS' => undef,
1006 'ExtUtils::MM_Win32' => undef,
1007 'ExtUtils::Packlist' => 0.03,
1008 'ExtUtils::testlib' => 1.11 ,
1009 'ExtUtils::XSSymSet' => '1.0',
1013 'File::Basename' => 2.6,
1014 'File::CheckTree' => undef,
1015 'File::Compare' => 1.1001,
1016 'File::Copy' => 2.02,
1017 'File::DosGlob' => undef,
1018 'File::Find' => undef,
1019 'File::Path' => 1.0401,
1020 'File::Spec' => 0.6,
1021 'File::Spec::Mac' => '1.0',
1022 'File::Spec::OS2' => undef,
1023 'File::Spec::Unix' => undef,
1024 'File::Spec::VMS' => undef,
1025 'File::Spec::Win32' => undef,
1026 'File::stat' => undef,
1027 'FileCache' => undef,
1028 'FileHandle' => '2.00',
1030 'GDBM_File' => '1.00',
1031 'Getopt::Long' => 2.19,
1032 'Getopt::Std' => 1.01,
1033 'I18N::Collate' => undef,
1036 'IO::File' => 1.06021,
1037 'IO::Handle' => 1.1505,
1038 'IO::Pipe' => 1.0902,
1039 'IO::Seekable' => 1.06,
1040 'IO::Select' => '1.10',
1041 'IO::Socket' => 1.1603,
1042 'IPC::Msg' => '1.00',
1043 'IPC::Open2' => 1.01,
1044 'IPC::Open3' => 1.0103,
1045 'IPC::Semaphore' => '1.00',
1046 'IPC::SysV' => 1.03,
1050 'Math::BigFloat' => undef,
1051 'Math::BigInt' => undef,
1052 'Math::Complex' => 1.26,
1054 'NDBM_File' => 1.01,
1055 'Net::hostent' => undef,
1056 'Net::netent' => undef,
1057 'Net::Ping' => 2.02,
1058 'Net::protoent' => undef,
1059 'Net::servent' => undef,
1061 'ODBM_File' => '1.00',
1064 'OS2::ExtAttr' => 0.01,
1065 'OS2::PrfDB' => 0.02,
1066 'OS2::Process' => 0.2,
1067 'OS2::REXX' => undef,
1068 'overload' => undef,
1069 'Pod::Functions' => undef,
1070 'Pod::Html' => 1.01,
1071 'Pod::Text' => 1.0203,
1075 'SDBM_File' => '1.00',
1076 'Search::Dict' => undef,
1077 'SelectSaver' => undef,
1078 'SelfLoader' => 1.08,
1085 'Sys::Hostname' => undef,
1086 'Sys::Syslog' => undef,
1087 'Term::Cap' => undef,
1088 'Term::Complete' => undef,
1089 'Term::ReadLine' => undef,
1091 'Test::Harness' => 1.1602,
1092 'Text::Abbrev' => undef,
1093 'Text::ParseWords' => 3.1,
1094 'Text::Soundex' => undef,
1095 'Text::Tabs' => 96.121201,
1096 'Text::Wrap' => 98.112902,
1098 'Thread::Queue' => undef,
1099 'Thread::Semaphore' => undef,
1100 'Thread::Specific' => undef,
1101 'Thread::Signal' => undef,
1102 'Tie::Array' => '1.00',
1103 'Tie::Handle' => undef,
1104 'Tie::Hash' => undef,
1105 'Tie::RefHash' => undef,
1106 'Tie::Scalar' => undef,
1107 'Tie::SubstrHash' => undef,
1108 'Time::gmtime' => 1.01,
1109 'Time::Local' => undef,
1110 'Time::localtime' => 1.01,
1111 'Time::tm' => undef,
1112 'UNIVERSAL' => undef,
1113 'User::grent' => undef,
1114 'User::pwent' => undef,
1116 'VMS::DCLsym' => 1.01,
1117 'VMS::Filespec' => undef,
1118 'VMS::Stdio' => 2.1,
1123 'AnyDBM_File' => undef, #./lib/AnyDBM_File.pm
1124 'attrs' => '0.1', #./lib/attrs.pm
1125 'AutoLoader' => '5.56', #./lib/AutoLoader.pm
1126 'AutoSplit' => '1.0303', #./lib/AutoSplit.pm
1127 'autouse' => '1.01', #./lib/autouse.pm
1128 'base' => undef, #./lib/base.pm
1129 'Benchmark' => undef, #./lib/Benchmark.pm
1130 'blib' => '1.00', #./lib/blib.pm
1131 'Bundle::CPAN' => '0.03', #./lib/Bundle/CPAN.pm
1132 'Carp' => undef, #./lib/Carp.pm
1133 'CGI' => '2.42', #./lib/CGI.pm
1134 'CGI::Apache' => '1.1', #./lib/CGI/Apache.pm
1135 'CGI::Carp' => '1.10', #./lib/CGI/Carp.pm
1136 'CGI::Cookie' => '1.06', #./lib/CGI/Cookie.pm
1137 'CGI::Fast' => '1.00a', #./lib/CGI/Fast.pm
1138 'CGI::Push' => '1.01', #./lib/CGI/Push.pm
1139 'CGI::Switch' => '0.06', #./lib/CGI/Switch.pm
1140 'Class::Struct' => undef, #./lib/Class/Struct.pm
1142 'constant' => '1.00', #./lib/constant.pm
1143 'CPAN' => '1.40', #./lib/CPAN.pm
1144 'CPAN::FirstTime' => '1.30 ', #./lib/CPAN/FirstTime.pm
1145 'CPAN::Nox' => undef, #./lib/CPAN/Nox.pm
1146 'Cwd' => '2.01', #./lib/Cwd.pm
1147 'DB_File' => '1.15', #./ext/DB_File/DB_File.pm
1148 'Devel::SelfStubber' => '1.01', #./lib/Devel/SelfStubber.pm
1149 'diagnostics' => undef, #./lib/diagnostics.pm
1150 'DirHandle' => undef, #./lib/DirHandle.pm
1151 'DynaLoader' => '1.03',
1152 'English' => undef, #./lib/English.pm
1153 'Env' => undef, #./lib/Env.pm
1154 'Exporter' => undef, #./lib/Exporter.pm
1155 'ExtUtils::Command' => '1.01', #./lib/ExtUtils/Command.pm
1156 'ExtUtils::Embed' => '1.2505', #./lib/ExtUtils/Embed.pm
1157 'ExtUtils::Install' => '1.28 ', #./lib/ExtUtils/Install.pm
1158 'ExtUtils::Liblist' => '1.25 ', #./lib/ExtUtils/Liblist.pm
1159 'ExtUtils::MakeMaker' => '5.42', #./lib/ExtUtils/MakeMaker.pm
1160 'ExtUtils::Manifest' => '1.33 ', #./lib/ExtUtils/Manifest.pm
1161 'ExtUtils::Mkbootstrap' => '1.14 ', #./lib/ExtUtils/Mkbootstrap.pm
1162 'ExtUtils::Mksymlists' => '1.16 ', #./lib/ExtUtils/Mksymlists.pm
1163 'ExtUtils::MM_OS2' => undef, #./lib/ExtUtils/MM_OS2.pm
1164 'ExtUtils::MM_Unix' => '1.118 ', #./lib/ExtUtils/MM_Unix.pm
1165 'ExtUtils::MM_VMS' => undef, #./lib/ExtUtils/MM_VMS.pm
1166 'ExtUtils::MM_Win32' => undef, #./lib/ExtUtils/MM_Win32.pm
1167 'ExtUtils::testlib' => '1.11 ', #./lib/ExtUtils/testlib.pm
1168 'ExtUtils::XSSymSet' => '1.0', #./vms/ext/XSSymSet.pm
1169 'Fcntl' => '1.03', #./ext/Fcntl/Fcntl.pm
1170 'File::Basename' => '2.6', #./lib/File/Basename.pm
1171 'File::CheckTree' => undef, #./lib/File/CheckTree.pm
1172 'File::Compare' => '1.1001', #./lib/File/Compare.pm
1173 'File::Copy' => '2.02', #./lib/File/Copy.pm
1174 'File::DosGlob' => undef, #./lib/File/DosGlob.pm
1175 'File::Find' => undef, #./lib/File/Find.pm
1176 'File::Path' => '1.0402', #./lib/File/Path.pm
1177 'File::Spec' => '0.6', #./lib/File/Spec.pm
1178 'File::Spec::Mac' => '1.0', #./lib/File/Spec/Mac.pm
1179 'File::Spec::OS2' => undef, #./lib/File/Spec/OS2.pm
1180 'File::Spec::Unix' => undef, #./lib/File/Spec/Unix.pm
1181 'File::Spec::VMS' => undef, #./lib/File/Spec/VMS.pm
1182 'File::Spec::Win32' => undef, #./lib/File/Spec/Win32.pm
1183 'File::stat' => undef, #./lib/File/stat.pm
1184 'FileCache' => undef, #./lib/FileCache.pm
1185 'FileHandle' => '2.00', #./lib/FileHandle.pm
1186 'FindBin' => '1.41', #./lib/FindBin.pm
1187 'GDBM_File' => '1.00', #./ext/GDBM_File/GDBM_File.pm
1188 'Getopt::Long' => '2.19', #./lib/Getopt/Long.pm
1189 'Getopt::Std' => undef, #./lib/Getopt/Std.pm
1190 'I18N::Collate' => undef, #./lib/I18N/Collate.pm
1191 'integer' => undef, #./lib/integer.pm
1192 'IO' => undef, #./ext/IO/IO.pm
1193 'IO::File' => '1.06021', #./ext/IO/lib/IO/File.pm
1194 'IO::Handle' => '1.1504', #./ext/IO/lib/IO/Handle.pm
1195 'IO::Pipe' => '1.0901', #./ext/IO/lib/IO/Pipe.pm
1196 'IO::Seekable' => '1.06', #./ext/IO/lib/IO/Seekable.pm
1197 'IO::Select' => '1.10', #./ext/IO/lib/IO/Select.pm
1198 'IO::Socket' => '1.1603', #./ext/IO/lib/IO/Socket.pm
1199 'IPC::Open2' => '1.01', #./lib/IPC/Open2.pm
1200 'IPC::Open3' => '1.0103', #./lib/IPC/Open3.pm
1201 'less' => undef, #./lib/less.pm
1202 'lib' => undef, #./lib/lib.pm
1203 'locale' => undef, #./lib/locale.pm
1204 'Math::BigFloat' => undef, #./lib/Math/BigFloat.pm
1205 'Math::BigInt' => undef, #./lib/Math/BigInt.pm
1206 'Math::Complex' => '1.25', #./lib/Math/Complex.pm
1207 'Math::Trig' => '1', #./lib/Math/Trig.pm
1208 'NDBM_File' => '1.01', #./ext/NDBM_File/NDBM_File.pm
1209 'Net::hostent' => undef, #./lib/Net/hostent.pm
1210 'Net::netent' => undef, #./lib/Net/netent.pm
1211 'Net::Ping' => '2.02', #./lib/Net/Ping.pm
1212 'Net::protoent' => undef, #./lib/Net/protoent.pm
1213 'Net::servent' => undef, #./lib/Net/servent.pm
1214 'ODBM_File' => '1.00', #./ext/ODBM_File/ODBM_File.pm
1215 'Opcode' => '1.04', #./ext/Opcode/Opcode.pm
1216 'ops' => undef, #./ext/Opcode/ops.pm
1217 'OS2::ExtAttr' => '0.01', #./os2/OS2/ExtAttr/ExtAttr.pm
1218 'OS2::PrfDB' => '0.02', #./os2/OS2/PrfDB/PrfDB.pm
1219 'OS2::Process' => undef, #./os2/OS2/Process/Process.pm
1220 'OS2::REXX' => undef, #./os2/OS2/REXX/REXX.pm
1221 'overload' => undef, #./lib/overload.pm
1222 'Pod::Functions' => undef, #./lib/Pod/Functions.pm
1223 'Pod::Html' => '1.0101', #./lib/Pod/Html.pm
1224 'Pod::Text' => '1.0204', #./lib/Pod/Text.pm
1225 'POSIX' => '1.02', #./ext/POSIX/POSIX.pm
1226 're' => undef, #./lib/re.pm
1227 'Safe' => '2.06', #./ext/Opcode/Safe.pm
1228 'SDBM_File' => '1.00', #./ext/SDBM_File/SDBM_File.pm
1229 'Search::Dict' => undef, #./lib/Search/Dict.pm
1230 'SelectSaver' => undef, #./lib/SelectSaver.pm
1231 'SelfLoader' => '1.08', #./lib/SelfLoader.pm
1232 'Shell' => undef, #./lib/Shell.pm
1233 'sigtrap' => '1.02', #./lib/sigtrap.pm
1234 'Socket' => '1.7', #./ext/Socket/Socket.pm
1235 'strict' => '1.01', #./lib/strict.pm
1236 'subs' => undef, #./lib/subs.pm
1237 'Symbol' => '1.02', #./lib/Symbol.pm
1238 'Sys::Hostname' => undef, #./lib/Sys/Hostname.pm
1239 'Sys::Syslog' => undef, #./lib/Sys/Syslog.pm
1240 'Term::Cap' => undef, #./lib/Term/Cap.pm
1241 'Term::Complete' => undef, #./lib/Term/Complete.pm
1242 'Term::ReadLine' => undef, #./lib/Term/ReadLine.pm
1243 'Test' => '1.04', #./lib/Test.pm
1244 'Test::Harness' => '1.1602', #./lib/Test/Harness.pm
1245 'Text::Abbrev' => undef, #./lib/Text/Abbrev.pm
1246 'Text::ParseWords' => '3.1001', #./lib/Text/ParseWords.pm
1247 'Text::Soundex' => undef, #./lib/Text/Soundex.pm
1248 'Text::Tabs' => '96.121201', #./lib/Text/Tabs.pm
1249 'Text::Wrap' => '98.112902', #./lib/Text/Wrap.pm
1250 'Tie::Handle' => undef, #./lib/Tie/Handle.pm
1251 'Tie::Hash' => undef, #./lib/Tie/Hash.pm
1252 'Tie::RefHash' => undef, #./lib/Tie/RefHash.pm
1253 'Tie::Scalar' => undef, #./lib/Tie/Scalar.pm
1254 'Tie::SubstrHash' => undef, #./lib/Tie/SubstrHash.pm
1255 'Time::gmtime' => '1.01', #./lib/Time/gmtime.pm
1256 'Time::Local' => undef, #./lib/Time/Local.pm
1257 'Time::localtime' => '1.01', #./lib/Time/localtime.pm
1258 'Time::tm' => undef, #./lib/Time/tm.pm
1259 'UNIVERSAL' => undef, #./lib/UNIVERSAL.pm
1260 'User::grent' => undef, #./lib/User/grent.pm
1261 'User::pwent' => undef, #./lib/User/pwent.pm
1262 'vars' => undef, #./lib/vars.pm
1263 'VMS::DCLsym' => '1.01', #./vms/ext/DCLsym/DCLsym.pm
1264 'VMS::Filespec' => undef, #./vms/ext/Filespec.pm
1265 'VMS::Stdio' => '2.02', #./vms/ext/Stdio/Stdio.pm
1266 'vmsish' => undef, #./vms/ext/vmsish.pm
1270 'AnyDBM_File' => undef, #lib/AnyDBM_File.pm
1271 'attrs' => '1.0', #lib/attrs.pm
1272 'AutoLoader' => undef, #lib/AutoLoader.pm
1273 'AutoSplit' => '1.0303', #lib/AutoSplit.pm
1274 'autouse' => '1.01', #lib/autouse.pm
1275 'base' => undef, #lib/base.pm
1276 'B::Asmdata' => undef, #lib/B/Asmdata.pm
1277 'B::Assembler' => undef, #lib/B/Assembler.pm
1278 'B::Bblock' => undef, #lib/B/Bblock.pm
1279 'B::Bytecode' => undef, #lib/B/Bytecode.pm
1280 'B::CC' => undef, #lib/B/CC.pm
1281 'B::C' => undef, #lib/B/C.pm
1282 'B::Debug' => undef, #lib/B/Debug.pm
1283 'B::Deparse' => '0.56', #lib/B/Deparse.pm
1284 'B::Disassembler' => undef, #lib/B/Disassembler.pm
1285 'Benchmark' => undef, #lib/Benchmark.pm
1286 'blib' => '1.00', #lib/blib.pm
1287 'B::Lint' => undef, #lib/B/Lint.pm
1288 'B::Showlex' => undef, #lib/B/Showlex.pm
1289 'B::Stackobj' => undef, #lib/B/Stackobj.pm
1290 'B::Terse' => undef, #lib/B/Terse.pm
1291 'B' => undef, #lib/B.pm
1292 'B::Xref' => undef, #lib/B/Xref.pm
1293 'Carp' => undef, #lib/Carp.pm
1294 'CGI' => '2.46', #lib/CGI.pm
1295 'CGI::Apache' => '1.1', #lib/CGI/Apache.pm
1296 'CGI::Carp' => '1.13', #lib/CGI/Carp.pm
1297 'CGI::Cookie' => '1.06', #lib/CGI/Cookie.pm
1298 'CGI::Fast' => '1.01', #lib/CGI/Fast.pm
1299 'CGI::Push' => '1.01', #lib/CGI/Push.pm
1300 'CGI::Switch' => '0.06', #lib/CGI/Switch.pm
1301 'Class::Struct' => undef, #lib/Class/Struct.pm
1302 'Config' => undef, #lib/Config.pm
1303 'constant' => '1.00', #lib/constant.pm
1304 'CPAN' => '1.48', #lib/CPAN.pm
1305 'CPAN::FirstTime' => '1.36 ', #lib/CPAN/FirstTime.pm
1306 'CPAN::Nox' => '1.00', #lib/CPAN/Nox.pm
1307 'Cwd' => '2.01', #lib/Cwd.pm
1308 'Data::Dumper' => '2.101', #lib/Data/Dumper.pm
1309 'DB_File' => '1.807', #lib/DB_File.pm
1310 'Devel::SelfStubber' => '1.01', #lib/Devel/SelfStubber.pm
1311 'diagnostics' => undef, #lib/diagnostics.pm
1312 'DirHandle' => undef, #lib/DirHandle.pm
1313 'Dumpvalue' => undef, #lib/Dumpvalue.pm
1314 'DynaLoader' => '1.03', #lib/DynaLoader.pm
1315 'English' => undef, #lib/English.pm
1316 'Env' => undef, #lib/Env.pm
1317 'Errno' => '1.111', #lib/Errno.pm
1318 'Exporter' => undef, #lib/Exporter.pm
1319 'ExtUtils::Command' => '1.01', #lib/ExtUtils/Command.pm
1320 'ExtUtils::Embed' => '1.2505', #lib/ExtUtils/Embed.pm
1321 'ExtUtils::Install' => '1.28 ', #lib/ExtUtils/Install.pm
1322 'ExtUtils::Installed' => '0.02', #lib/ExtUtils/Installed.pm
1323 'ExtUtils::Liblist' => '1.25 ', #lib/ExtUtils/Liblist.pm
1324 'ExtUtils::MakeMaker' => '5.4302', #lib/ExtUtils/MakeMaker.pm
1325 'ExtUtils::Manifest' => '1.33 ', #lib/ExtUtils/Manifest.pm
1326 'ExtUtils::Miniperl' => undef, #lib/ExtUtils/Miniperl.pm
1327 'ExtUtils::Mkbootstrap' => '1.14 ', #lib/ExtUtils/Mkbootstrap.pm
1328 'ExtUtils::Mksymlists' => '1.17 ', #lib/ExtUtils/Mksymlists.pm
1329 'ExtUtils::MM_OS2' => undef, #lib/ExtUtils/MM_OS2.pm
1330 'ExtUtils::MM_Unix' => '1.12602 ', #lib/ExtUtils/MM_Unix.pm
1331 'ExtUtils::MM_VMS' => undef, #lib/ExtUtils/MM_VMS.pm
1332 'ExtUtils::MM_Win32' => undef, #lib/ExtUtils/MM_Win32.pm
1333 'ExtUtils::Packlist' => '0.03', #lib/ExtUtils/Packlist.pm
1334 'ExtUtils::testlib' => '1.11 ', #lib/ExtUtils/testlib.pm
1335 'ExtUtils::XSSymSet' => '1.0', #vms/ext/XSSymSet.pm
1336 'Fatal' => '1.02', #lib/Fatal.pm
1337 'Fcntl' => '1.03', #lib/Fcntl.pm
1338 'fields' => '0.02', #lib/fields.pm
1339 'File::Basename' => '2.6', #lib/File/Basename.pm
1340 'FileCache' => undef, #lib/FileCache.pm
1341 'File::CheckTree' => undef, #lib/File/CheckTree.pm
1342 'File::Compare' => '1.1002', #lib/File/Compare.pm
1343 'File::Copy' => '2.02', #lib/File/Copy.pm
1344 'File::DosGlob' => undef, #lib/File/DosGlob.pm
1345 'File::Find' => undef, #lib/File/Find.pm
1346 'FileHandle' => '2.00', #lib/FileHandle.pm
1347 'File::Path' => '1.0401', #lib/File/Path.pm
1348 'File::Spec' => '0.8', #lib/File/Spec.pm
1349 'File::Spec::Functions' => undef, #lib/File/Spec/Functions.pm
1350 'File::Spec::Mac' => undef, #lib/File/Spec/Mac.pm
1351 'File::Spec::OS2' => undef, #lib/File/Spec/OS2.pm
1352 'File::Spec::Unix' => undef, #lib/File/Spec/Unix.pm
1353 'File::Spec::VMS' => undef, #lib/File/Spec/VMS.pm
1354 'File::Spec::Win32' => undef, #lib/File/Spec/Win32.pm
1355 'File::stat' => undef, #lib/File/stat.pm
1356 'FindBin' => '1.42', #lib/FindBin.pm
1357 'GDBM_File' => '1.00', #lib/GDBM_File.pm
1358 'Getopt::Long' => '2.20', #lib/Getopt/Long.pm
1359 'Getopt::Std' => '1.01', #lib/Getopt/Std.pm
1360 'I18N::Collate' => undef, #lib/I18N/Collate.pm
1361 'integer' => undef, #lib/integer.pm
1362 'IO::File' => '1.06021', #lib/IO/File.pm
1363 'IO::Handle' => '1.1505', #lib/IO/Handle.pm
1364 'IO::Pipe' => '1.0902', #lib/IO/Pipe.pm
1365 'IO::Seekable' => '1.06', #lib/IO/Seekable.pm
1366 'IO::Select' => '1.10', #lib/IO/Select.pm
1367 'IO::Socket' => '1.1603', #lib/IO/Socket.pm
1368 'IO' => undef, #lib/IO.pm
1369 'IPC::Msg' => '1.00', #lib/IPC/Msg.pm
1370 'IPC::Open2' => '1.01', #lib/IPC/Open2.pm
1371 'IPC::Open3' => '1.0103', #lib/IPC/Open3.pm
1372 'IPC::Semaphore' => '1.00', #lib/IPC/Semaphore.pm
1373 'IPC::SysV' => '1.03', #lib/IPC/SysV.pm
1374 'less' => undef, #lib/less.pm
1375 'lib' => undef, #lib/lib.pm
1376 'locale' => undef, #lib/locale.pm
1377 'Math::BigFloat' => undef, #lib/Math/BigFloat.pm
1378 'Math::BigInt' => undef, #lib/Math/BigInt.pm
1379 'Math::Complex' => '1.26', #lib/Math/Complex.pm
1380 'Math::Trig' => '1', #lib/Math/Trig.pm
1381 'NDBM_File' => '1.01', #ext/NDBM_File/NDBM_File.pm
1382 'Net::hostent' => undef, #lib/Net/hostent.pm
1383 'Net::netent' => undef, #lib/Net/netent.pm
1384 'Net::Ping' => '2.02', #lib/Net/Ping.pm
1385 'Net::protoent' => undef, #lib/Net/protoent.pm
1386 'Net::servent' => undef, #lib/Net/servent.pm
1387 'ODBM_File' => '1.00', #ext/ODBM_File/ODBM_File.pm
1388 'Opcode' => '1.04', #lib/Opcode.pm
1389 'ops' => undef, #lib/ops.pm
1390 'O' => undef, #lib/O.pm
1391 'OS2::ExtAttr' => '0.01', #os2/OS2/ExtAttr/ExtAttr.pm
1392 'OS2::PrfDB' => '0.02', #os2/OS2/PrfDB/PrfDB.pm
1393 'OS2::Process' => '0.2', #os2/OS2/Process/Process.pm
1394 'OS2::REXX' => undef, #os2/OS2/REXX/REXX.pm
1395 'overload' => undef, #lib/overload.pm
1396 'Pod::Functions' => undef, #lib/Pod/Functions.pm
1397 'Pod::Html' => '1.02', #lib/Pod/Html.pm
1398 'Pod::Text' => '1.0203', #lib/Pod/Text.pm
1399 'POSIX' => '1.02', #lib/POSIX.pm
1400 're' => '0.02', #lib/re.pm
1401 'Safe' => '2.06', #lib/Safe.pm
1402 'SDBM_File' => '1.00', #lib/SDBM_File.pm
1403 'Search::Dict' => undef, #lib/Search/Dict.pm
1404 'SelectSaver' => undef, #lib/SelectSaver.pm
1405 'SelfLoader' => '1.08', #lib/SelfLoader.pm
1406 'Shell' => undef, #lib/Shell.pm
1407 'sigtrap' => '1.02', #lib/sigtrap.pm
1408 'Socket' => '1.7', #lib/Socket.pm
1409 'strict' => '1.01', #lib/strict.pm
1410 'subs' => undef, #lib/subs.pm
1411 'Symbol' => '1.02', #lib/Symbol.pm
1412 'Sys::Hostname' => undef, #lib/Sys/Hostname.pm
1413 'Sys::Syslog' => undef, #lib/Sys/Syslog.pm
1414 'Term::Cap' => undef, #lib/Term/Cap.pm
1415 'Term::Complete' => undef, #lib/Term/Complete.pm
1416 'Term::ReadLine' => undef, #lib/Term/ReadLine.pm
1417 'Test' => '1.122', #lib/Test.pm
1418 'Test::Harness' => '1.1602', #lib/Test/Harness.pm
1419 'Text::Abbrev' => undef, #lib/Text/Abbrev.pm
1420 'Text::ParseWords' => '3.1', #lib/Text/ParseWords.pm
1421 'Text::Soundex' => undef, #lib/Text/Soundex.pm
1422 'Text::Tabs' => '96.121201', #lib/Text/Tabs.pm
1423 'Text::Wrap' => '98.112902', #lib/Text/Wrap.pm
1424 'Thread' => '1.0', #ext/Thread/Thread.pm
1425 'Thread::Queue' => undef, #ext/Thread/Thread/Queue.pm
1426 'Thread::Semaphore' => undef, #ext/Thread/Thread/Semaphore.pm
1427 'Thread::Signal' => undef, #ext/Thread/Thread/Signal.pm
1428 'Thread::Specific' => undef, #ext/Thread/Thread/Specific.pm
1429 'Tie::Array' => '1.00', #lib/Tie/Array.pm
1430 'Tie::Handle' => undef, #lib/Tie/Handle.pm
1431 'Tie::Hash' => undef, #lib/Tie/Hash.pm
1432 'Tie::RefHash' => undef, #lib/Tie/RefHash.pm
1433 'Tie::Scalar' => undef, #lib/Tie/Scalar.pm
1434 'Tie::SubstrHash' => undef, #lib/Tie/SubstrHash.pm
1435 'Time::gmtime' => '1.01', #lib/Time/gmtime.pm
1436 'Time::localtime' => '1.01', #lib/Time/localtime.pm
1437 'Time::Local' => undef, #lib/Time/Local.pm
1438 'Time::tm' => undef, #lib/Time/tm.pm
1439 'UNIVERSAL' => undef, #lib/UNIVERSAL.pm
1440 'User::grent' => undef, #lib/User/grent.pm
1441 'User::pwent' => undef, #lib/User/pwent.pm
1442 'vars' => undef, #lib/vars.pm
1443 'VMS::DCLsym' => '1.01', #vms/ext/DCLsym/DCLsym.pm
1444 'VMS::Filespec' => undef, #vms/ext/Filespec.pm
1445 'VMS::Stdio' => '2.1', #vms/ext/Stdio/Stdio.pm
1446 'vmsish' => undef, #vms/ext/vmsish.pm
1450 'AnyDBM_File' => undef, #./lib/AnyDBM_File.pm
1451 'AutoLoader' => '5.57', #./lib/AutoLoader.pm
1452 'AutoSplit' => '1.0305', #./lib/AutoSplit.pm
1453 'B' => undef, #./ext/B/B.pm
1454 'B::Asmdata' => undef, #./ext/B/B/Asmdata.pm
1455 'B::Assembler' => undef, #./ext/B/B/Assembler.pm
1456 'B::Bblock' => undef, #./ext/B/B/Bblock.pm
1457 'B::Bytecode' => undef, #./ext/B/B/Bytecode.pm
1458 'B::C' => undef, #./ext/B/B/C.pm
1459 'B::CC' => undef, #./ext/B/B/CC.pm
1460 'B::Debug' => undef, #./ext/B/B/Debug.pm
1461 'B::Deparse' => '0.59', #./ext/B/B/Deparse.pm
1462 'B::Disassembler' => undef, #./ext/B/B/Disassembler.pm
1463 'B::Lint' => undef, #./ext/B/B/Lint.pm
1464 'B::Showlex' => undef, #./ext/B/B/Showlex.pm
1465 'B::Stackobj' => undef, #./ext/B/B/Stackobj.pm
1466 'B::Stash' => undef, #./ext/B/B/Stash.pm
1467 'B::Terse' => undef, #./ext/B/B/Terse.pm
1468 'B::Xref' => undef, #./ext/B/B/Xref.pm
1469 'Benchmark' => '1', #./lib/Benchmark.pm
1470 'ByteLoader' => '0.03', #./ext/ByteLoader/ByteLoader.pm
1471 'CGI' => '2.56', #./lib/CGI.pm
1472 'CGI::Apache' => undef, #./lib/CGI/Apache.pm
1473 'CGI::Carp' => '1.14', #./lib/CGI/Carp.pm
1474 'CGI::Cookie' => '1.12', #./lib/CGI/Cookie.pm
1475 'CGI::Fast' => '1.02', #./lib/CGI/Fast.pm
1476 'CGI::Pretty' => '1.03', #./lib/CGI/Pretty.pm
1477 'CGI::Push' => '1.01', #./lib/CGI/Push.pm
1478 'CGI::Switch' => undef, #./lib/CGI/Switch.pm
1479 'CPAN' => '1.52', #./lib/CPAN.pm
1480 'CPAN::FirstTime' => '1.38 ', #./lib/CPAN/FirstTime.pm
1481 'CPAN::Nox' => '1.00', #./lib/CPAN/Nox.pm
1482 'Carp' => undef, #./lib/Carp.pm
1483 'Carp::Heavy' => undef, #./lib/Carp/Heavy.pm
1484 'Class::Struct' => '0.58', #./lib/Class/Struct.pm
1486 'Cwd' => '2.02', #./lib/Cwd.pm
1487 'DB' => '1.0', #./lib/DB.pm
1488 'DB_File' => '1.72', #./ext/DB_File/DB_File.pm
1489 'Data::Dumper' => '2.101', #./ext/Data/Dumper/Dumper.pm
1490 'Devel::DProf' => '20000000.00_00', #./ext/Devel/DProf/DProf.pm
1491 'Devel::Peek' => '1.00_01', #./ext/Devel/Peek/Peek.pm
1492 'Devel::SelfStubber' => '1.01', #./lib/Devel/SelfStubber.pm
1493 'DirHandle' => undef, #./lib/DirHandle.pm
1494 'Dumpvalue' => undef, #./lib/Dumpvalue.pm
1495 'DynaLoader' => '1.04',
1496 'English' => undef, #./lib/English.pm
1497 'Env' => undef, #./lib/Env.pm
1498 'Exporter' => '5.562', #./lib/Exporter.pm
1499 'Exporter::Heavy' => undef, #./lib/Exporter/Heavy.pm
1500 'ExtUtils::Command' => '1.01', #./lib/ExtUtils/Command.pm
1501 'ExtUtils::Embed' => '1.2505', #./lib/ExtUtils/Embed.pm
1502 'ExtUtils::Install' => '1.28 ', #./lib/ExtUtils/Install.pm
1503 'ExtUtils::Installed' => '0.02', #./lib/ExtUtils/Installed.pm
1504 'ExtUtils::Liblist' => '1.25 ', #./lib/ExtUtils/Liblist.pm
1505 'ExtUtils::MM_Cygwin' => undef, #./lib/ExtUtils/MM_Cygwin.pm
1506 'ExtUtils::MM_OS2' => undef, #./lib/ExtUtils/MM_OS2.pm
1507 'ExtUtils::MM_Unix' => '1.12603 ', #./lib/ExtUtils/MM_Unix.pm
1508 'ExtUtils::MM_VMS' => undef, #./lib/ExtUtils/MM_VMS.pm
1509 'ExtUtils::MM_Win32' => undef, #./lib/ExtUtils/MM_Win32.pm
1510 'ExtUtils::MakeMaker' => '5.45', #./lib/ExtUtils/MakeMaker.pm
1511 'ExtUtils::Manifest' => '1.33 ', #./lib/ExtUtils/Manifest.pm
1512 'ExtUtils::Miniperl' => undef,
1513 'ExtUtils::Mkbootstrap' => '1.14 ', #./lib/ExtUtils/Mkbootstrap.pm
1514 'ExtUtils::Mksymlists' => '1.17 ', #./lib/ExtUtils/Mksymlists.pm
1515 'ExtUtils::Packlist' => '0.03', #./lib/ExtUtils/Packlist.pm
1516 'ExtUtils::XSSymSet' => '1.0', #./vms/ext/XSSymSet.pm
1517 'ExtUtils::testlib' => '1.11 ', #./lib/ExtUtils/testlib.pm
1518 'Fatal' => '1.02', #./lib/Fatal.pm
1519 'Fcntl' => '1.03', #./ext/Fcntl/Fcntl.pm
1520 'File::Basename' => '2.6', #./lib/File/Basename.pm
1521 'File::CheckTree' => undef, #./lib/File/CheckTree.pm
1522 'File::Compare' => '1.1002', #./lib/File/Compare.pm
1523 'File::Copy' => '2.03', #./lib/File/Copy.pm
1524 'File::DosGlob' => undef, #./lib/File/DosGlob.pm
1525 'File::Find' => undef, #./lib/File/Find.pm
1526 'File::Glob' => '0.991', #./ext/File/Glob/Glob.pm
1527 'File::Path' => '1.0403', #./lib/File/Path.pm
1528 'File::Spec' => '0.8', #./lib/File/Spec.pm
1529 'File::Spec::Functions' => undef, #./lib/File/Spec/Functions.pm
1530 'File::Spec::Mac' => undef, #./lib/File/Spec/Mac.pm
1531 'File::Spec::OS2' => undef, #./lib/File/Spec/OS2.pm
1532 'File::Spec::Unix' => undef, #./lib/File/Spec/Unix.pm
1533 'File::Spec::VMS' => undef, #./lib/File/Spec/VMS.pm
1534 'File::Spec::Win32' => undef, #./lib/File/Spec/Win32.pm
1535 'File::stat' => undef, #./lib/File/stat.pm
1536 'FileCache' => undef, #./lib/FileCache.pm
1537 'FileHandle' => '2.00', #./lib/FileHandle.pm
1538 'FindBin' => '1.42', #./lib/FindBin.pm
1539 'GDBM_File' => '1.03', #./ext/GDBM_File/GDBM_File.pm
1540 'Getopt::Long' => '2.23', #./lib/Getopt/Long.pm
1541 'Getopt::Std' => '1.02', #./lib/Getopt/Std.pm
1542 'I18N::Collate' => undef, #./lib/I18N/Collate.pm
1543 'IO' => '1.20', #./ext/IO/IO.pm
1544 'IO::Dir' => '1.03', #./ext/IO/lib/IO/Dir.pm
1545 'IO::File' => '1.08', #./ext/IO/lib/IO/File.pm
1546 'IO::Handle' => '1.21', #./ext/IO/lib/IO/Handle.pm
1547 'IO::Pipe' => '1.121', #./ext/IO/lib/IO/Pipe.pm
1548 'IO::Poll' => '0.01', #./ext/IO/lib/IO/Poll.pm
1549 'IO::Seekable' => '1.08', #./ext/IO/lib/IO/Seekable.pm
1550 'IO::Select' => '1.14', #./ext/IO/lib/IO/Select.pm
1551 'IO::Socket' => '1.26', #./ext/IO/lib/IO/Socket.pm
1552 'IO::Socket::INET' => '1.25', #./ext/IO/lib/IO/Socket/INET.pm
1553 'IO::Socket::UNIX' => '1.20', #./ext/IO/lib/IO/Socket/UNIX.pm
1554 'IPC::Open2' => '1.01', #./lib/IPC/Open2.pm
1555 'IPC::Open3' => '1.0103', #./lib/IPC/Open3.pm
1556 'IPC::Msg' => '1.00', #./ext/IPC/SysV/Msg.pm
1557 'IPC::Semaphore' => '1.00', #./ext/IPC/SysV/Semaphore.pm
1558 'IPC::SysV' => '1.03', #./ext/IPC/SysV/SysV.pm
1559 'JNI' => '0.01', #./jpl/JNI/JNI.pm
1560 'JPL::AutoLoader' => undef, #./jpl/JPL/AutoLoader.pm
1561 'JPL::Class' => undef, #./jpl/JPL/Class.pm
1562 'JPL::Compile' => undef, #./jpl/JPL/Compile.pm
1563 'Math::BigFloat' => undef, #./lib/Math/BigFloat.pm
1564 'Math::BigInt' => undef, #./lib/Math/BigInt.pm
1565 'Math::Complex' => '1.26', #./lib/Math/Complex.pm
1566 'Math::Trig' => '1', #./lib/Math/Trig.pm
1567 'NDBM_File' => '1.03', #./ext/NDBM_File/NDBM_File.pm
1568 'Net::Ping' => '2.02', #./lib/Net/Ping.pm
1569 'Net::hostent' => undef, #./lib/Net/hostent.pm
1570 'Net::netent' => undef, #./lib/Net/netent.pm
1571 'Net::protoent' => undef, #./lib/Net/protoent.pm
1572 'Net::servent' => undef, #./lib/Net/servent.pm
1573 'O' => undef, #./ext/B/O.pm
1574 'ODBM_File' => '1.02', #./ext/ODBM_File/ODBM_File.pm
1575 'OS2::ExtAttr' => '0.01', #./os2/OS2/ExtAttr/ExtAttr.pm
1576 'OS2::PrfDB' => '0.02', #./os2/OS2/PrfDB/PrfDB.pm
1577 'OS2::Process' => '0.2', #./os2/OS2/Process/Process.pm
1578 'OS2::REXX' => undef, #./os2/OS2/REXX/REXX.pm
1579 'OS2::DLL' => undef, #./os2/OS2/REXX/DLL/DLL.pm
1580 'Opcode' => '1.04', #./ext/Opcode/Opcode.pm
1581 'POSIX' => '1.03', #./ext/POSIX/POSIX.pm
1582 'Pod::Checker' => '1.098', #./lib/Pod/Checker.pm
1583 'Pod::Find' => '0.12', #./lib/Pod/Find.pm
1584 'Pod::Functions' => undef, #./lib/Pod/Functions.pm
1585 'Pod::Html' => '1.03', #./lib/Pod/Html.pm
1586 'Pod::InputObjects' => '1.12', #./lib/Pod/InputObjects.pm
1587 'Pod::Man' => '1.02', #./lib/Pod/Man.pm
1588 'Pod::ParseUtils' => '0.2', #./lib/Pod/ParseUtils.pm
1589 'Pod::Parser' => '1.12', #./lib/Pod/Parser.pm
1590 'Pod::Plainer' => '0.01', #./lib/Pod/Plainer.pm
1591 'Pod::Select' => '1.12', #./lib/Pod/Select.pm
1592 'Pod::Text' => '2.03', #./lib/Pod/Text.pm
1593 'Pod::Text::Color' => '0.05', #./lib/Pod/Text/Color.pm
1594 'Pod::Text::Termcap' => '0.04', #./lib/Pod/Text/Termcap.pm
1595 'Pod::Usage' => '1.12', #./lib/Pod/Usage.pm
1596 'SDBM_File' => '1.02', #./ext/SDBM_File/SDBM_File.pm
1597 'Safe' => '2.06', #./ext/Opcode/Safe.pm
1598 'Search::Dict' => undef, #./lib/Search/Dict.pm
1599 'SelectSaver' => undef, #./lib/SelectSaver.pm
1600 'SelfLoader' => '1.0901', #./lib/SelfLoader.pm
1601 'Shell' => '0.2', #./lib/Shell.pm
1602 'Socket' => '1.72', #./ext/Socket/Socket.pm
1603 'Symbol' => '1.02', #./lib/Symbol.pm
1604 'Sys::Hostname' => '1.1', #./ext/Sys/Hostname/Hostname.pm
1605 'Sys::Syslog' => '0.01', #./ext/Sys/Syslog/Syslog.pm
1606 'Term::ANSIColor' => '1.01', #./lib/Term/ANSIColor.pm
1607 'Term::Cap' => undef, #./lib/Term/Cap.pm
1608 'Term::Complete' => undef, #./lib/Term/Complete.pm
1609 'Term::ReadLine' => undef, #./lib/Term/ReadLine.pm
1610 'Test' => '1.13', #./lib/Test.pm
1611 'Test::Harness' => '1.1604', #./lib/Test/Harness.pm
1612 'Text::Abbrev' => undef, #./lib/Text/Abbrev.pm
1613 'Text::ParseWords' => '3.2', #./lib/Text/ParseWords.pm
1614 'Text::Soundex' => '1.0', #./lib/Text/Soundex.pm
1615 'Text::Tabs' => '98.112801', #./lib/Text/Tabs.pm
1616 'Text::Wrap' => '98.112902', #./lib/Text/Wrap.pm
1617 'Thread' => '1.0', #./ext/Thread/Thread.pm
1618 'Thread::Queue' => undef, #./ext/Thread/Thread/Queue.pm
1619 'Thread::Semaphore' => undef, #./ext/Thread/Thread/Semaphore.pm
1620 'Thread::Signal' => undef, #./ext/Thread/Thread/Signal.pm
1621 'Thread::Specific' => undef, #./ext/Thread/Thread/Specific.pm
1622 'Tie::Array' => '1.01', #./lib/Tie/Array.pm
1623 'Tie::Handle' => '1.0', #./lib/Tie/Handle.pm
1624 'Tie::Hash' => undef, #./lib/Tie/Hash.pm
1625 'Tie::RefHash' => undef, #./lib/Tie/RefHash.pm
1626 'Tie::Scalar' => undef, #./lib/Tie/Scalar.pm
1627 'Tie::SubstrHash' => undef, #./lib/Tie/SubstrHash.pm
1628 'Time::Local' => undef, #./lib/Time/Local.pm
1629 'Time::gmtime' => '1.01', #./lib/Time/gmtime.pm
1630 'Time::localtime' => '1.01', #./lib/Time/localtime.pm
1631 'Time::tm' => undef, #./lib/Time/tm.pm
1632 'UNIVERSAL' => undef, #./lib/UNIVERSAL.pm
1633 'User::grent' => undef, #./lib/User/grent.pm
1634 'User::pwent' => undef, #./lib/User/pwent.pm
1635 'VMS::DCLsym' => '1.01', #./vms/ext/DCLsym/DCLsym.pm
1636 'VMS::Filespec' => undef, #./vms/ext/Filespec.pm
1637 'VMS::Stdio' => '2.2', #./vms/ext/Stdio/Stdio.pm
1638 'XSLoader' => '0.01',
1639 'attributes' => '0.03', #./lib/attributes.pm
1640 'attrs' => '1.0', #./ext/attrs/attrs.pm
1641 'autouse' => '1.02', #./lib/autouse.pm
1642 'base' => '1.01', #./lib/base.pm
1643 'blib' => '1.00', #./lib/blib.pm
1644 'bytes' => undef, #./lib/bytes.pm
1645 'charnames' => undef, #./lib/charnames.pm
1646 'constant' => '1.02', #./lib/constant.pm
1647 'diagnostics' => '1.0', #./lib/diagnostics.pm
1648 'fields' => '1.01', #./lib/fields.pm
1649 'filetest' => undef, #./lib/filetest.pm
1650 'integer' => undef, #./lib/integer.pm
1651 'less' => undef, #./lib/less.pm
1652 'lib' => '0.5564', #./lib/lib.pm
1653 'locale' => undef, #./lib/locale.pm
1654 'open' => undef, #./lib/open.pm
1655 'ops' => undef, #./ext/Opcode/ops.pm
1656 'overload' => undef, #./lib/overload.pm
1657 're' => '0.02', #./ext/re/re.pm
1658 'sigtrap' => '1.02', #./lib/sigtrap.pm
1659 'strict' => '1.01', #./lib/strict.pm
1660 'subs' => undef, #./lib/subs.pm
1661 'utf8' => undef, #./lib/utf8.pm
1662 'vars' => undef, #./lib/vars.pm
1663 'vmsish' => undef, #./vms/ext/vmsish.pm
1664 'warnings' => undef, #./lib/warnings.pm
1665 'warnings::register' => undef, #./lib/warnings/register.pm
1669 'AnyDBM_File' => undef,
1670 'attributes' => 0.03,
1672 'AutoLoader' => 5.58,
1673 'AutoSplit' => 1.0305,
1675 'B::Asmdata' => undef,
1676 'B::Assembler' => 0.02,
1677 'B::Bblock' => undef,
1678 'B::Bytecode' => undef,
1681 'B::Concise' => 0.51,
1682 'B::Debug' => undef,
1683 'B::Deparse' => 0.6,
1684 'B::Disassembler' => undef,
1687 'B::Showlex' => undef,
1688 'B::Stackobj' => undef,
1689 'B::Stash' => undef,
1690 'B::Terse' => undef,
1695 'ByteLoader' => 0.04,
1698 'Carp::Heavy' => undef,
1700 'CGI::Apache' => undef,
1701 'CGI::Carp' => '1.20',
1702 'CGI::Cookie' => 1.18,
1703 'CGI::Fast' => 1.02,
1704 'CGI::Pretty' => 1.05,
1705 'CGI::Push' => 1.04,
1706 'CGI::Switch' => undef,
1708 'charnames' => undef,
1709 'Class::Struct' => 0.59,
1712 'CPAN::FirstTime' => 1.53 ,
1713 'CPAN' => '1.59_54',
1714 'CPAN::Nox' => '1.00',
1716 'Data::Dumper' => 2.102,
1719 'Devel::DProf' => '20000000.00_00',
1720 'Devel::Peek' => '1.00_01',
1721 'Devel::SelfStubber' => 1.01,
1722 'diagnostics' => '1.0', # really v1.0, but that causes breakage
1723 'DirHandle' => undef,
1724 'Dumpvalue' => undef,
1725 'DynaLoader' => 1.04,
1728 'Exporter' => 5.562,
1729 'Exporter::Heavy' => undef,
1730 'ExtUtils::Command' => 1.01,
1731 'ExtUtils::Embed' => 1.2505,
1732 'ExtUtils::Install' => 1.28 ,
1733 'ExtUtils::Installed' => 0.02,
1734 'ExtUtils::Liblist' => 1.26 ,
1735 'ExtUtils::MakeMaker' => 5.45,
1736 'ExtUtils::Manifest' => 1.33 ,
1737 'ExtUtils::Miniperl' => undef,
1738 'ExtUtils::Mkbootstrap' => 1.14 ,
1739 'ExtUtils::Mksymlists' => 1.17 ,
1740 'ExtUtils::MM_Cygwin' => undef,
1741 'ExtUtils::MM_OS2' => undef,
1742 'ExtUtils::MM_Unix' => 1.12603 ,
1743 'ExtUtils::MM_VMS' => undef,
1744 'ExtUtils::MM_Win32' => undef,
1745 'ExtUtils::Packlist' => 0.03,
1746 'ExtUtils::testlib' => 1.11 ,
1747 'ExtUtils::XSSymSet' => '1.0',
1751 'File::Basename' => 2.6,
1752 'File::CheckTree' => undef,
1753 'File::Compare' => 1.1002,
1754 'File::Copy' => 2.03,
1755 'File::DosGlob' => undef,
1756 'File::Find' => undef,
1757 'File::Glob' => 0.991,
1758 'File::Path' => 1.0404,
1759 'File::Spec' => 0.82,
1760 'File::Spec::Epoc' => undef,
1761 'File::Spec::Functions' => 1.1,
1762 'File::Spec::Mac' => 1.2,
1763 'File::Spec::OS2' => 1.1,
1764 'File::Spec::Unix' => 1.2,
1765 'File::Spec::VMS' => 1.1,
1766 'File::Spec::Win32' => 1.2,
1767 'File::stat' => undef,
1768 'File::Temp' => 0.12,
1769 'FileCache' => undef,
1770 'FileHandle' => '2.00',
1771 'filetest' => undef,
1773 'GDBM_File' => 1.05,
1774 'Getopt::Long' => 2.25,
1775 'Getopt::Std' => 1.02,
1776 'I18N::Collate' => undef,
1781 'IO::Handle' => 1.21,
1782 'IO::Pipe' => 1.121,
1784 'IO::Seekable' => 1.08,
1785 'IO::Select' => 1.14,
1786 'IO::Socket' => 1.26,
1787 'IO::Socket::INET' => 1.25,
1788 'IO::Socket::UNIX' => '1.20',
1789 'IPC::Msg' => '1.00',
1790 'IPC::Open2' => 1.01,
1791 'IPC::Open3' => 1.0103,
1792 'IPC::Semaphore' => '1.00',
1793 'IPC::SysV' => 1.03,
1795 'JPL::AutoLoader' => undef,
1796 'JPL::Class' => undef,
1797 'JPL::Compile' => undef,
1801 'Math::BigFloat' => 0.02,
1802 'Math::BigInt' => 0.01,
1803 'Math::Complex' => 1.31,
1805 'NDBM_File' => 1.04,
1806 'Net::hostent' => undef,
1807 'Net::netent' => undef,
1808 'Net::Ping' => 2.02,
1809 'Net::protoent' => undef,
1810 'Net::servent' => undef,
1812 'ODBM_File' => 1.03,
1816 'OS2::DLL' => undef,
1817 'OS2::ExtAttr' => 0.01,
1818 'OS2::PrfDB' => 0.02,
1819 'OS2::Process' => 0.2,
1820 'OS2::REXX' => '1.00',
1821 'overload' => undef,
1822 'Pod::Checker' => 1.2,
1823 'Pod::Find' => 0.21,
1824 'Pod::Functions' => undef,
1825 'Pod::Html' => 1.03,
1826 'Pod::LaTeX' => 0.53,
1828 'Pod::InputObjects' => 1.13,
1829 'Pod::Parser' => 1.13,
1830 'Pod::ParseUtils' => 0.22,
1831 'Pod::Plainer' => 0.01,
1832 'Pod::Select' => 1.13,
1833 'Pod::Text' => 2.08,
1834 'Pod::Text::Color' => 0.06,
1835 'Pod::Text::Overstrike' => 1.01,
1836 'Pod::Text::Termcap' => 1,
1837 'Pod::Usage' => 1.14,
1841 'SDBM_File' => 1.03,
1842 'Search::Dict' => undef,
1843 'SelectSaver' => undef,
1844 'SelfLoader' => 1.0902,
1851 'Sys::Hostname' => 1.1,
1852 'Sys::Syslog' => 0.01,
1853 'Term::ANSIColor' => 1.03,
1854 'Term::Cap' => undef,
1855 'Term::Complete' => undef,
1856 'Term::ReadLine' => undef,
1858 'Test::Harness' => 1.1604,
1859 'Text::Abbrev' => undef,
1860 'Text::ParseWords' => 3.2,
1861 'Text::Soundex' => '1.0',
1862 'Text::Tabs' => 98.112801,
1863 'Text::Wrap' => 2001.0131,
1865 'Thread::Queue' => undef,
1866 'Thread::Semaphore' => undef,
1867 'Thread::Signal' => undef,
1868 'Thread::Specific' => undef,
1869 'Tie::Array' => 1.01,
1870 'Tie::Handle' => '4.0',
1871 'Tie::Hash' => undef,
1872 'Tie::RefHash' => 1.3,
1873 'Tie::Scalar' => undef,
1874 'Tie::SubstrHash' => undef,
1875 'Time::gmtime' => 1.01,
1876 'Time::Local' => undef,
1877 'Time::localtime' => 1.01,
1878 'Time::tm' => undef,
1879 'UNIVERSAL' => undef,
1880 'User::grent' => undef,
1881 'User::pwent' => undef,
1884 'VMS::DCLsym' => 1.01,
1885 'VMS::Filespec' => undef,
1886 'VMS::Stdio' => 2.2,
1888 'warnings' => undef,
1889 'warnings::register' => undef,
1890 'XSLoader' => '0.01',
1894 'AnyDBM_File' => undef, #lib/AnyDBM_File.pm
1895 'attributes' => '0.03', #lib/attributes.pm
1896 'attrs' => '1.0', #lib/attrs.pm
1897 'AutoLoader' => '5.58', #lib/AutoLoader.pm
1898 'AutoSplit' => '1.0305', #lib/AutoSplit.pm
1899 'autouse' => '1.02', #lib/autouse.pm
1900 'B' => undef, #lib/B.pm
1901 'B::Asmdata' => undef, #lib/B/Asmdata.pm
1902 'B::Assembler' => '0.02', #lib/B/Assembler.pm
1903 'B::Bblock' => undef, #lib/B/Bblock.pm
1904 'B::Bytecode' => undef, #lib/B/Bytecode.pm
1905 'B::C' => undef, #lib/B/C.pm
1906 'B::CC' => undef, #lib/B/CC.pm
1907 'B::Concise' => '0.51', #lib/B/Concise.pm
1908 'B::Debug' => undef, #lib/B/Debug.pm
1909 'B::Deparse' => '0.6', #lib/B/Deparse.pm
1910 'B::Disassembler' => undef, #lib/B/Disassembler.pm
1911 'B::Lint' => undef, #lib/B/Lint.pm
1912 'B::Showlex' => undef, #lib/B/Showlex.pm
1913 'B::Stackobj' => undef, #lib/B/Stackobj.pm
1914 'B::Stash' => undef, #lib/B/Stash.pm
1915 'B::Terse' => undef, #lib/B/Terse.pm
1916 'B::Xref' => undef, #lib/B/Xref.pm
1917 'base' => '1.01', #lib/base.pm
1918 'Benchmark' => '1', #lib/Benchmark.pm
1919 'blib' => '1.00', #lib/blib.pm
1920 'ByteLoader' => '0.04', #lib/ByteLoader.pm
1921 'bytes' => undef, #lib/bytes.pm
1922 'Carp' => undef, #lib/Carp.pm
1923 'Carp::Heavy' => undef, #lib/Carp/Heavy.pm
1924 'CGI' => '2.752', #lib/CGI.pm
1925 'CGI::Apache' => undef, #lib/CGI/Apache.pm
1926 'CGI::Carp' => '1.20', #lib/CGI/Carp.pm
1927 'CGI::Cookie' => '1.18', #lib/CGI/Cookie.pm
1928 'CGI::Fast' => '1.02', #lib/CGI/Fast.pm
1929 'CGI::Pretty' => '1.05', #lib/CGI/Pretty.pm
1930 'CGI::Push' => '1.04', #lib/CGI/Push.pm
1931 'CGI::Switch' => undef, #lib/CGI/Switch.pm
1932 'CGI::Util' => '1.1', #lib/CGI/Util.pm
1933 'charnames' => undef, #lib/charnames.pm
1934 'Class::Struct' => '0.59', #lib/Class/Struct.pm
1935 'Config' => undef, #lib/Config.pm
1936 'constant' => '1.02', #lib/constant.pm
1937 'CPAN' => '1.59_54', #lib/CPAN.pm
1938 'CPAN::FirstTime' => '1.53 ', #lib/CPAN/FirstTime.pm
1939 'CPAN::Nox' => '1.00', #lib/CPAN/Nox.pm
1940 'Cwd' => '2.04', #lib/Cwd.pm
1941 'Data::Dumper' => '2.121', #lib/Data/Dumper.pm
1942 'DB' => '1.0', #lib/DB.pm
1943 'DB_File' => '1.806', #lib/DB_File.pm
1944 'Devel::DProf' => '20000000.00_00', #lib/Devel/DProf.pm
1945 'Devel::Peek' => '1.00_01', #lib/Devel/Peek.pm
1946 'Devel::SelfStubber' => '1.01', #lib/Devel/SelfStubber.pm
1947 'diagnostics' => '1.0', #lib/diagnostics.pm
1948 'DirHandle' => undef, #lib/DirHandle.pm
1949 'Dumpvalue' => undef, #lib/Dumpvalue.pm
1950 'DynaLoader' => '1.04', #lib/DynaLoader.pm
1951 'English' => undef, #lib/English.pm
1952 'Env' => undef, #lib/Env.pm
1953 'Errno' => '1.111', #lib/Errno.pm
1954 'Exporter' => '5.562', #lib/Exporter.pm
1955 'Exporter::Heavy' => undef, #lib/Exporter/Heavy.pm
1956 'ExtUtils::Command' => '1.05', #lib/ExtUtils/Command.pm
1957 'ExtUtils::Command::MM' => '0.03', #lib/ExtUtils/Command/MM.pm
1958 'ExtUtils::Embed' => '1.2505', #lib/ExtUtils/Embed.pm
1959 'ExtUtils::Install' => '1.32', #lib/ExtUtils/Install.pm
1960 'ExtUtils::Installed' => '0.08', #lib/ExtUtils/Installed.pm
1961 'ExtUtils::Liblist' => '1.01', #lib/ExtUtils/Liblist.pm
1962 'ExtUtils::Liblist::Kid'=> '1.3', #lib/ExtUtils/Liblist/Kid.pm
1963 'ExtUtils::MakeMaker' => '6.17', #lib/ExtUtils/MakeMaker.pm
1964 'ExtUtils::MakeMaker::bytes'=> '0.01', #lib/ExtUtils/MakeMaker/bytes.pm
1965 'ExtUtils::MakeMaker::vmsish'=> '0.01', #lib/ExtUtils/MakeMaker/vmsish.pm
1966 'ExtUtils::Manifest' => '1.42', #lib/ExtUtils/Manifest.pm
1967 'ExtUtils::Miniperl' => undef, #lib/ExtUtils/Miniperl.pm
1968 'ExtUtils::Mkbootstrap' => '1.15', #lib/ExtUtils/Mkbootstrap.pm
1969 'ExtUtils::Mksymlists' => '1.19', #lib/ExtUtils/Mksymlists.pm
1970 'ExtUtils::MM' => '0.04', #lib/ExtUtils/MM.pm
1971 'ExtUtils::MM_Any' => '0.07', #lib/ExtUtils/MM_Any.pm
1972 'ExtUtils::MM_BeOS' => '1.04', #lib/ExtUtils/MM_BeOS.pm
1973 'ExtUtils::MM_Cygwin' => '1.06', #lib/ExtUtils/MM_Cygwin.pm
1974 'ExtUtils::MM_DOS' => '0.02', #lib/ExtUtils/MM_DOS.pm
1975 'ExtUtils::MM_MacOS' => '1.07', #lib/ExtUtils/MM_MacOS.pm
1976 'ExtUtils::MM_NW5' => '2.06', #lib/ExtUtils/MM_NW5.pm
1977 'ExtUtils::MM_OS2' => '1.04', #lib/ExtUtils/MM_OS2.pm
1978 'ExtUtils::MM_Unix' => '1.42', #lib/ExtUtils/MM_Unix.pm
1979 'ExtUtils::MM_UWIN' => '0.02', #lib/ExtUtils/MM_UWIN.pm
1980 'ExtUtils::MM_VMS' => '5.70', #lib/ExtUtils/MM_VMS.pm
1981 'ExtUtils::MM_Win32' => '1.09', #lib/ExtUtils/MM_Win32.pm
1982 'ExtUtils::MM_Win95' => '0.03', #lib/ExtUtils/MM_Win95.pm
1983 'ExtUtils::MY' => '0.01', #lib/ExtUtils/MY.pm
1984 'ExtUtils::Packlist' => '0.04', #lib/ExtUtils/Packlist.pm
1985 'ExtUtils::testlib' => '1.15', #lib/ExtUtils/testlib.pm
1986 'ExtUtils::XSSymSet' => '1.0', #vms/ext/XSSymSet.pm
1987 'Fatal' => '1.02', #lib/Fatal.pm
1988 'Fcntl' => '1.03', #lib/Fcntl.pm
1989 'fields' => '1.01', #lib/fields.pm
1990 'File::Basename' => '2.6', #lib/File/Basename.pm
1991 'File::CheckTree' => undef, #lib/File/CheckTree.pm
1992 'File::Compare' => '1.1002', #lib/File/Compare.pm
1993 'File::Copy' => '2.03', #lib/File/Copy.pm
1994 'File::DosGlob' => undef, #lib/File/DosGlob.pm
1995 'File::Find' => undef, #lib/File/Find.pm
1996 'File::Glob' => '0.991', #lib/File/Glob.pm
1997 'File::Path' => '1.0404', #lib/File/Path.pm
1998 'File::Spec' => '0.86', #lib/File/Spec.pm
1999 'File::Spec::Cygwin' => '1.1', #lib/File/Spec/Cygwin.pm
2000 'File::Spec::Epoc' => '1.1', #lib/File/Spec/Epoc.pm
2001 'File::Spec::Functions' => '1.3', #lib/File/Spec/Functions.pm
2002 'File::Spec::Mac' => '1.4', #lib/File/Spec/Mac.pm
2003 'File::Spec::OS2' => '1.2', #lib/File/Spec/OS2.pm
2004 'File::Spec::Unix' => '1.5', #lib/File/Spec/Unix.pm
2005 'File::Spec::VMS' => '1.4', #lib/File/Spec/VMS.pm
2006 'File::Spec::Win32' => '1.4', #lib/File/Spec/Win32.pm
2007 'File::stat' => undef, #lib/File/stat.pm
2008 'File::Temp' => '0.14', #lib/File/Temp.pm
2009 'FileCache' => undef, #lib/FileCache.pm
2010 'FileHandle' => '2.00', #lib/FileHandle.pm
2011 'filetest' => undef, #lib/filetest.pm
2012 'FindBin' => '1.42', #lib/FindBin.pm
2013 'GDBM_File' => '1.05', #ext/GDBM_File/GDBM_File.pm
2014 'Getopt::Long' => '2.25', #lib/Getopt/Long.pm
2015 'Getopt::Std' => '1.02', #lib/Getopt/Std.pm
2016 'I18N::Collate' => undef, #lib/I18N/Collate.pm
2017 'if' => '0.03', #lib/if.pm
2018 'integer' => undef, #lib/integer.pm
2019 'IO' => '1.20', #lib/IO.pm
2020 'IO::Dir' => '1.03', #lib/IO/Dir.pm
2021 'IO::File' => '1.08', #lib/IO/File.pm
2022 'IO::Handle' => '1.21', #lib/IO/Handle.pm
2023 'IO::Pipe' => '1.121', #lib/IO/Pipe.pm
2024 'IO::Poll' => '0.05', #lib/IO/Poll.pm
2025 'IO::Seekable' => '1.08', #lib/IO/Seekable.pm
2026 'IO::Select' => '1.14', #lib/IO/Select.pm
2027 'IO::Socket' => '1.26', #lib/IO/Socket.pm
2028 'IO::Socket::INET' => '1.25', #lib/IO/Socket/INET.pm
2029 'IO::Socket::UNIX' => '1.20', #lib/IO/Socket/UNIX.pm
2030 'IPC::Msg' => '1.00', #lib/IPC/Msg.pm
2031 'IPC::Open2' => '1.01', #lib/IPC/Open2.pm
2032 'IPC::Open3' => '1.0103', #lib/IPC/Open3.pm
2033 'IPC::Semaphore' => '1.00', #lib/IPC/Semaphore.pm
2034 'IPC::SysV' => '1.03', #lib/IPC/SysV.pm
2035 'JNI' => '0.1', #jpl/JNI/JNI.pm
2036 'JPL::AutoLoader' => undef, #jpl/JPL/AutoLoader.pm
2037 'JPL::Class' => undef, #jpl/JPL/Class.pm
2038 'JPL::Compile' => undef, #jpl/JPL/Compile.pm
2039 'less' => undef, #lib/less.pm
2040 'lib' => '0.5564', #lib/lib.pm
2041 'locale' => undef, #lib/locale.pm
2042 'Math::BigFloat' => '0.02', #lib/Math/BigFloat.pm
2043 'Math::BigInt' => '0.01', #lib/Math/BigInt.pm
2044 'Math::Complex' => '1.31', #lib/Math/Complex.pm
2045 'Math::Trig' => '1', #lib/Math/Trig.pm
2046 'NDBM_File' => '1.04', #ext/NDBM_File/NDBM_File.pm
2047 'Net::hostent' => undef, #lib/Net/hostent.pm
2048 'Net::netent' => undef, #lib/Net/netent.pm
2049 'Net::Ping' => '2.02', #lib/Net/Ping.pm
2050 'Net::protoent' => undef, #lib/Net/protoent.pm
2051 'Net::servent' => undef, #lib/Net/servent.pm
2052 'O' => undef, #lib/O.pm
2053 'ODBM_File' => '1.03', #ext/ODBM_File/ODBM_File.pm
2054 'Opcode' => '1.04', #lib/Opcode.pm
2055 'open' => undef, #lib/open.pm
2056 'ops' => '1.00', #lib/ops.pm
2057 'OS2::DLL' => undef, #os2/OS2/REXX/DLL/DLL.pm
2058 'OS2::ExtAttr' => '0.01', #os2/OS2/ExtAttr/ExtAttr.pm
2059 'OS2::PrfDB' => '0.02', #os2/OS2/PrfDB/PrfDB.pm
2060 'OS2::Process' => '0.2', #os2/OS2/Process/Process.pm
2061 'OS2::REXX' => '1.00', #os2/OS2/REXX/REXX.pm
2062 'overload' => undef, #lib/overload.pm
2063 'Pod::Checker' => '1.2', #lib/Pod/Checker.pm
2064 'Pod::Find' => '0.21', #lib/Pod/Find.pm
2065 'Pod::Functions' => undef, #lib/Pod/Functions.pm
2066 'Pod::Html' => '1.03', #lib/Pod/Html.pm
2067 'Pod::InputObjects' => '1.13', #lib/Pod/InputObjects.pm
2068 'Pod::LaTeX' => '0.53', #lib/Pod/LaTeX.pm
2069 'Pod::Man' => '1.15', #lib/Pod/Man.pm
2070 'Pod::Parser' => '1.13', #lib/Pod/Parser.pm
2071 'Pod::ParseUtils' => '0.22', #lib/Pod/ParseUtils.pm
2072 'Pod::Plainer' => '0.01', #lib/Pod/Plainer.pm
2073 'Pod::Select' => '1.13', #lib/Pod/Select.pm
2074 'Pod::Text' => '2.08', #lib/Pod/Text.pm
2075 'Pod::Text::Color' => '0.06', #lib/Pod/Text/Color.pm
2076 'Pod::Text::Overstrike' => '1.01', #lib/Pod/Text/Overstrike.pm
2077 'Pod::Text::Termcap' => '1', #lib/Pod/Text/Termcap.pm
2078 'Pod::Usage' => '1.14', #lib/Pod/Usage.pm
2079 'POSIX' => '1.03', #lib/POSIX.pm
2080 're' => '0.02', #lib/re.pm
2081 'Safe' => '2.10', #lib/Safe.pm
2082 'SDBM_File' => '1.03', #lib/SDBM_File.pm
2083 'Search::Dict' => undef, #lib/Search/Dict.pm
2084 'SelectSaver' => undef, #lib/SelectSaver.pm
2085 'SelfLoader' => '1.0902', #lib/SelfLoader.pm
2086 'Shell' => '0.3', #lib/Shell.pm
2087 'sigtrap' => '1.02', #lib/sigtrap.pm
2088 'Socket' => '1.72', #lib/Socket.pm
2089 'strict' => '1.01', #lib/strict.pm
2090 'subs' => undef, #lib/subs.pm
2091 'Symbol' => '1.02', #lib/Symbol.pm
2092 'Sys::Hostname' => '1.1', #lib/Sys/Hostname.pm
2093 'Sys::Syslog' => '0.01', #lib/Sys/Syslog.pm
2094 'Term::ANSIColor' => '1.03', #lib/Term/ANSIColor.pm
2095 'Term::Cap' => undef, #lib/Term/Cap.pm
2096 'Term::Complete' => undef, #lib/Term/Complete.pm
2097 'Term::ReadLine' => undef, #lib/Term/ReadLine.pm
2098 'Test' => '1.24', #lib/Test.pm
2099 'Test::Builder' => '0.17', #lib/Test/Builder.pm
2100 'Test::Harness' => '2.30', #lib/Test/Harness.pm
2101 'Test::Harness::Assert' => '0.01', #lib/Test/Harness/Assert.pm
2102 'Test::Harness::Iterator'=> '0.01', #lib/Test/Harness/Iterator.pm
2103 'Test::Harness::Straps' => '0.15', #lib/Test/Harness/Straps.pm
2104 'Test::More' => '0.47', #lib/Test/More.pm
2105 'Test::Simple' => '0.47', #lib/Test/Simple.pm
2106 'Text::Abbrev' => undef, #lib/Text/Abbrev.pm
2107 'Text::ParseWords' => '3.2', #lib/Text/ParseWords.pm
2108 'Text::Soundex' => '1.0', #lib/Text/Soundex.pm
2109 'Text::Tabs' => '98.112801', #lib/Text/Tabs.pm
2110 'Text::Wrap' => '2001.0131', #lib/Text/Wrap.pm
2111 'Thread' => '1.0', #ext/Thread/Thread.pm
2112 'Thread::Queue' => undef, #ext/Thread/Thread/Queue.pm
2113 'Thread::Semaphore' => undef, #ext/Thread/Thread/Semaphore.pm
2114 'Thread::Signal' => undef, #ext/Thread/Thread/Signal.pm
2115 'Thread::Specific' => undef, #ext/Thread/Thread/Specific.pm
2116 'Tie::Array' => '1.01', #lib/Tie/Array.pm
2117 'Tie::Handle' => '4.0', #lib/Tie/Handle.pm
2118 'Tie::Hash' => undef, #lib/Tie/Hash.pm
2119 'Tie::RefHash' => '1.3', #lib/Tie/RefHash.pm
2120 'Tie::Scalar' => undef, #lib/Tie/Scalar.pm
2121 'Tie::SubstrHash' => undef, #lib/Tie/SubstrHash.pm
2122 'Time::gmtime' => '1.01', #lib/Time/gmtime.pm
2123 'Time::Local' => undef, #lib/Time/Local.pm
2124 'Time::localtime' => '1.01', #lib/Time/localtime.pm
2125 'Time::tm' => undef, #lib/Time/tm.pm
2126 'Unicode' => '3.0.1', # lib/unicore/version
2127 'UNIVERSAL' => undef, #lib/UNIVERSAL.pm
2128 'User::grent' => undef, #lib/User/grent.pm
2129 'User::pwent' => undef, #lib/User/pwent.pm
2130 'utf8' => undef, #lib/utf8.pm
2131 'vars' => undef, #lib/vars.pm
2132 'VMS::DCLsym' => '1.01', #vms/ext/DCLsym/DCLsym.pm
2133 'VMS::Filespec' => undef, #vms/ext/Filespec.pm
2134 'VMS::Stdio' => '2.2', #vms/ext/Stdio/Stdio.pm
2135 'vmsish' => undef, #vms/ext/vmsish.pm
2136 'warnings' => undef, #lib/warnings.pm
2137 'warnings::register' => undef, #lib/warnings/register.pm
2138 'XSLoader' => '0.01', #lib/XSLoader.pm
2142 'AnyDBM_File' => '1.00',
2143 'Attribute::Handlers' => '0.76',
2144 'attributes' => '0.04_01',
2146 'AutoLoader' => '5.59',
2147 'AutoSplit' => '1.0307',
2148 'autouse' => '1.03',
2149 'B::Asmdata' => '1.00',
2150 'B::Assembler' => '0.04',
2151 'B::Bblock' => '1.00',
2152 'B::Bytecode' => '1.00',
2155 'B::Concise' => '0.52',
2156 'B::Debug' => '1.00',
2157 'B::Deparse' => '0.63',
2158 'B::Disassembler' => '1.01',
2159 'B::Lint' => '1.00',
2161 'B::Showlex' => '1.00',
2162 'B::Stackobj' => '1.00',
2163 'B::Stash' => '1.00',
2164 'B::Terse' => '1.00',
2165 'B::Xref' => '1.00',
2167 'Benchmark' => '1.04',
2169 'ByteLoader' => '0.04',
2172 'Carp::Heavy' => undef,
2174 'CGI::Apache' => '1.00',
2175 'CGI::Carp' => '1.22',
2176 'CGI::Cookie' => '1.20',
2177 'CGI::Fast' => '1.04',
2178 'CGI::Pretty' => '1.05_00',
2179 'CGI::Push' => '1.04',
2180 'CGI::Switch' => '1.00',
2181 'CGI::Util' => '1.3',
2182 'charnames' => '1.01',
2183 'Class::ISA' => '0.32',
2184 'Class::Struct' => '0.61',
2186 'constant' => '1.04',
2187 'CPAN::FirstTime' => '1.54 ',
2188 'CPAN' => '1.59_56',
2189 'CPAN::Nox' => '1.00_01',
2191 'Data::Dumper' => '2.12',
2193 'DB_File' => '1.804',
2194 'Devel::DProf' => '20000000.00_01',
2195 'Devel::Peek' => '1.00_03',
2196 'Devel::PPPort' => '2.0002',
2197 'Devel::SelfStubber' => '1.03',
2198 'diagnostics' => '1.1',
2200 'Digest::MD5' => '2.16',
2201 'DirHandle' => '1.00',
2202 'Dumpvalue' => '1.10',
2203 'DynaLoader' => 1.04,
2205 'Encode::CN' => '0.02',
2206 'Encode::CN::HZ' => undef,
2207 'Encode::Encoding' => '0.02',
2208 'Encode::Internal' => '0.30',
2209 'Encode::iso10646_1' => '0.30',
2210 'Encode::JP' => '0.02',
2211 'Encode::JP::Constants' => '1.02',
2212 'Encode::JP::H2Z' => '0.77',
2213 'Encode::JP::ISO_2022_JP' => undef,
2214 'Encode::JP::JIS' => undef,
2215 'Encode::JP::Tr' => '0.77',
2216 'Encode::KR' => '0.02',
2217 'Encode::Tcl' => '1.01',
2218 'Encode::Tcl::Escape' => '1.01',
2219 'Encode::Tcl::Extended' => '1.01',
2220 'Encode::Tcl::HanZi' => '1.01',
2221 'Encode::Tcl::Table' => '1.01',
2222 'Encode::TW' => '0.02',
2223 'Encode::Unicode' => '0.30',
2224 'Encode::usc2_le' => '0.30',
2225 'Encode::utf8' => '0.30',
2226 'Encode::XS' => '0.40',
2227 'encoding' => '1.00',
2228 'English' => '1.00',
2230 'Exporter' => '5.566',
2231 'Exporter::Heavy' => '5.562',
2232 'ExtUtils::Command' => '1.02',
2233 'ExtUtils::Constant' => '0.11',
2234 'ExtUtils::Embed' => '1.250601',
2235 'ExtUtils::Install' => '1.29',
2236 'ExtUtils::Installed' => '0.04',
2237 'ExtUtils::Liblist' => '1.2701',
2238 'ExtUtils::MakeMaker' => '5.48_03',
2239 'ExtUtils::Manifest' => '1.35',
2240 'ExtUtils::Miniperl' => undef,
2241 'ExtUtils::Mkbootstrap' => '1.1401',
2242 'ExtUtils::Mksymlists' => '1.18',
2243 'ExtUtils::MM_BeOS' => '1.00',
2244 'ExtUtils::MM_Cygwin' => '1.00',
2245 'ExtUtils::MM_OS2' => '1.00',
2246 'ExtUtils::MM_Unix' => '1.12607',
2247 'ExtUtils::MM_VMS' => '5.56',
2248 'ExtUtils::MM_Win32' => '1.00_02',
2249 'ExtUtils::Packlist' => '0.04',
2250 'ExtUtils::testlib' => '1.1201',
2251 'ExtUtils::XSSymSet' => '1.0',
2255 'File::Basename' => '2.71',
2256 'File::CheckTree' => '4.1',
2257 'File::Compare' => '1.1003',
2258 'File::Copy' => '2.05',
2259 'File::DosGlob' => '1.00',
2260 'File::Find' => '1.04',
2261 'File::Glob' => '1.01',
2262 'File::Path' => '1.05',
2263 'File::Spec' => '0.83',
2264 'File::Spec::Cygwin' => '1.0',
2265 'File::Spec::Epoc' => '1.00',
2266 'File::Spec::Functions' => '1.2',
2267 'File::Spec::Mac' => '1.3',
2268 'File::Spec::OS2' => '1.1',
2269 'File::Spec::Unix' => '1.4',
2270 'File::Spec::VMS' => '1.2',
2271 'File::Spec::Win32' => '1.3',
2272 'File::stat' => '1.00',
2273 'File::Temp' => '0.13',
2274 'FileCache' => '1.00',
2275 'FileHandle' => '2.01',
2276 'filetest' => '1.00',
2277 'Filter::Simple' => '0.77',
2278 'Filter::Util::Call' => '1.06',
2279 'FindBin' => '1.43',
2280 'GDBM_File' => '1.06',
2281 'Getopt::Long' => '2.28',
2282 'Getopt::Std' => '1.03',
2283 'I18N::Collate' => '1.00',
2284 'I18N::Langinfo' => '0.01',
2285 'I18N::LangTags' => '0.27',
2286 'I18N::LangTags::List' => '0.25',
2288 'integer' => '1.00',
2290 'IO::Dir' => '1.03_00',
2291 'IO::File' => '1.09',
2292 'IO::Handle' => '1.21_00',
2293 'IO::Pipe' => '1.122',
2294 'IO::Poll' => '0.06',
2295 'IO::Seekable' => '1.08_00',
2296 'IO::Select' => '1.15',
2297 'IO::Socket' => '1.27',
2298 'IO::Socket::INET' => '1.26',
2299 'IO::Socket::UNIX' => '1.20_00',
2300 'IPC::Msg' => '1.00_00',
2301 'IPC::Open2' => '1.01',
2302 'IPC::Open3' => '1.0104',
2303 'IPC::Semaphore' => '1.00_00',
2304 'IPC::SysV' => '1.03_00',
2306 'JPL::AutoLoader' => undef,
2307 'JPL::Class' => undef,
2308 'JPL::Compile' => undef,
2311 'List::Util' => '1.06_00',
2313 'Locale::Constants' => '2.01',
2314 'Locale::Country' => '2.01',
2315 'Locale::Currency' => '2.01',
2316 'Locale::Language' => '2.01',
2317 'Locale::Maketext' => '1.03',
2318 'Locale::Script' => '2.01',
2319 'Math::BigFloat' => '1.30',
2320 'Math::BigInt' => '1.54',
2321 'Math::BigInt::Calc' => '0.25',
2322 'Math::Complex' => '1.34',
2323 'Math::Trig' => '1.01',
2324 'Memoize' => '0.66',
2325 'Memoize::AnyDBM_File' => '0.65',
2326 'Memoize::Expire' => '0.66',
2327 'Memoize::ExpireFile' => '0.65',
2328 'Memoize::ExpireTest' => '0.65',
2329 'Memoize::NDBM_File' => '0.65',
2330 'Memoize::SDBM_File' => '0.65',
2331 'Memoize::Storable' => '0.65',
2332 'MIME::Base64' => '2.12',
2333 'MIME::QuotedPrint' => '2.03',
2334 'NDBM_File' => '1.04',
2335 'Net::Cmd' => '2.21',
2336 'Net::Config' => '1.10',
2337 'Net::Domain' => '2.17',
2338 'Net::FTP' => '2.64',
2339 'Net::FTP::A' => '1.15',
2340 'Net::FTP::dataconn' => '0.10',
2341 'Net::FTP::E' => '0.01',
2342 'Net::FTP::I' => '1.12',
2343 'Net::FTP::L' => '0.01',
2344 'Net::hostent' => '1.00',
2345 'Net::netent' => '1.00',
2346 'Net::Netrc' => '2.12',
2347 'Net::NNTP' => '2.21',
2348 'Net::Ping' => '2.12',
2349 'Net::POP3' => '2.23',
2350 'Net::protoent' => '1.00',
2351 'Net::servent' => '1.00',
2352 'Net::SMTP' => '2.21',
2353 'Net::Time' => '2.09',
2356 'ODBM_File' => '1.03',
2360 'OS2::DLL' => '1.00',
2361 'OS2::ExtAttr' => '0.01',
2362 'OS2::PrfDB' => '0.02',
2363 'OS2::Process' => '1.0',
2364 'OS2::REXX' => '1.01',
2365 'overload' => '1.00',
2367 'PerlIO::Scalar' => '0.01',
2368 'PerlIO::Via' => '0.01',
2369 'Pod::Checker' => '1.3',
2370 'Pod::Find' => '0.22',
2371 'Pod::Functions' => '1.01',
2372 'Pod::Html' => '1.04',
2373 'Pod::LaTeX' => '0.54',
2374 'Pod::Man' => '1.32',
2375 'Pod::InputObjects' => '1.13',
2376 'Pod::ParseLink' => '1.05',
2377 'Pod::Parser' => '1.13',
2378 'Pod::ParseUtils' => '0.22',
2379 'Pod::Plainer' => '0.01',
2380 'Pod::Select' => '1.13',
2381 'Pod::Text' => '2.18',
2382 'Pod::Text::Color' => '1.03',
2383 'Pod::Text::Overstrike' => '1.08',
2384 'Pod::Text::Termcap' => '1.09',
2385 'Pod::Usage' => '1.14',
2389 'Scalar::Util' => undef,
2390 'SDBM_File' => '1.03',
2391 'Search::Dict' => '1.02',
2392 'SelectSaver' => '1.00',
2393 'SelfLoader' => '1.0903',
2395 'sigtrap' => '1.02',
2398 'Storable' => '1.015',
2403 'Sys::Hostname' => '1.1',
2404 'Sys::Syslog' => '0.02',
2405 'Term::ANSIColor' => '1.04',
2406 'Term::Cap' => '1.07',
2407 'Term::Complete' => '1.4',
2408 'Term::ReadLine' => '1.00',
2410 'Test::Builder' => '0.11',
2411 'Test::Harness' => '2.01',
2412 'Test::Harness::Assert' => '0.01',
2413 'Test::Harness::Iterator'=> '0.01',
2414 'Test::Harness::Straps' => '0.08',
2415 'Test::More' => '0.41',
2416 'Test::Simple' => '0.41',
2417 'Text::Abbrev' => '1.00',
2418 'Text::Balanced' => '1.89',
2419 'Text::ParseWords' => '3.21',
2420 'Text::Soundex' => '1.01',
2421 'Text::Tabs' => '98.112801',
2422 'Text::Wrap' => '2001.0929',
2424 'Thread::Queue' => '1.00',
2425 'Thread::Semaphore' => '1.00',
2426 'Thread::Signal' => '1.00',
2427 'Thread::Specific' => '1.00',
2428 'threads' => '0.05',
2429 'threads::shared' => '0.90',
2430 'Tie::Array' => '1.02',
2431 'Tie::File' => '0.17',
2432 'Tie::Hash' => '1.00',
2433 'Tie::Handle' => '4.1',
2434 'Tie::Memoize' => '1.0',
2435 'Tie::RefHash' => '1.3_00',
2436 'Tie::Scalar' => '1.00',
2437 'Tie::SubstrHash' => '1.00',
2438 'Time::gmtime' => '1.02',
2439 'Time::HiRes' => '1.20_00',
2440 'Time::Local' => '1.04',
2441 'Time::localtime' => '1.02',
2442 'Time::tm' => '1.00',
2443 'Unicode::Collate' => '0.10',
2444 'Unicode::Normalize' => '0.14',
2445 'Unicode::UCD' => '0.2',
2446 'UNIVERSAL' => '1.00',
2447 'User::grent' => '1.00',
2448 'User::pwent' => '1.00',
2451 'VMS::DCLsym' => '1.02',
2452 'VMS::Filespec' => '1.1',
2453 'VMS::Stdio' => '2.3',
2455 'warnings' => '1.00',
2456 'warnings::register' => '1.00',
2457 'XS::Typemap' => '0.01',
2458 'XSLoader' => '0.01',
2462 'AnyDBM_File' => '1.00', #./lib/AnyDBM_File.pm
2463 'Attribute::Handlers' => '0.77', #./lib/Attribute/Handlers.pm
2464 'attributes' => '0.05', #./lib/attributes.pm
2465 'attrs' => '1.01', #./ext/attrs/attrs.pm
2466 'AutoLoader' => '5.59', #./lib/AutoLoader.pm
2467 'AutoSplit' => '1.0307', #./lib/AutoSplit.pm
2468 'autouse' => '1.03', #./lib/autouse.pm
2469 'B' => '1.01', #./ext/B/B.pm
2470 'B::Asmdata' => '1.00', #./ext/B/B/Asmdata.pm
2471 'B::Assembler' => '0.04', #./ext/B/B/Assembler.pm
2472 'B::Bblock' => '1.00', #./ext/B/B/Bblock.pm
2473 'B::Bytecode' => '1.00', #./ext/B/B/Bytecode.pm
2474 'B::C' => '1.01', #./ext/B/B/C.pm
2475 'B::CC' => '1.00', #./ext/B/B/CC.pm
2476 'B::Concise' => '0.52', #./ext/B/B/Concise.pm
2477 'B::Debug' => '1.00', #./ext/B/B/Debug.pm
2478 'B::Deparse' => '0.63', #./ext/B/B/Deparse.pm
2479 'B::Disassembler' => '1.01', #./ext/B/B/Disassembler.pm
2480 'B::Lint' => '1.01', #./ext/B/B/Lint.pm
2481 'B::Showlex' => '1.00', #./ext/B/B/Showlex.pm
2482 'B::Stackobj' => '1.00', #./ext/B/B/Stackobj.pm
2483 'B::Stash' => '1.00', #./ext/B/B/Stash.pm
2484 'B::Terse' => '1.00', #./ext/B/B/Terse.pm
2485 'B::Xref' => '1.01', #./ext/B/B/Xref.pm
2486 'base' => '1.03', #./lib/base.pm
2487 'Benchmark' => '1.04', #./lib/Benchmark.pm
2488 'bigint' => '0.02', #./lib/bigint.pm
2489 'bignum' => '0.11', #./lib/bignum.pm
2490 'bigrat' => '0.04', #./lib/bigrat.pm
2491 'blib' => '1.02', #./lib/blib.pm
2492 'ByteLoader' => '0.04', #./ext/ByteLoader/ByteLoader.pm
2493 'bytes' => '1.00', #./lib/bytes.pm
2494 'Carp' => '1.01', #./lib/Carp.pm
2495 'Carp::Heavy' => 'undef', #./lib/Carp/Heavy.pm
2496 'CGI' => '2.81', #./lib/CGI.pm
2497 'CGI::Apache' => '1.00', #./lib/CGI/Apache.pm
2498 'CGI::Carp' => '1.23', #./lib/CGI/Carp.pm
2499 'CGI::Cookie' => '1.20', #./lib/CGI/Cookie.pm
2500 'CGI::Fast' => '1.04', #./lib/CGI/Fast.pm
2501 'CGI::Pretty' => '1.05_00', #./lib/CGI/Pretty.pm
2502 'CGI::Push' => '1.04', #./lib/CGI/Push.pm
2503 'CGI::Switch' => '1.00', #./lib/CGI/Switch.pm
2504 'CGI::Util' => '1.3', #./lib/CGI/Util.pm
2505 'charnames' => '1.01', #./lib/charnames.pm
2506 'Class::ISA' => '0.32', #./lib/Class/ISA.pm
2507 'Class::Struct' => '0.61', #./lib/Class/Struct.pm
2508 'constant' => '1.04', #./lib/constant.pm
2510 'CPAN' => '1.61', #./lib/CPAN.pm
2511 'CPAN::FirstTime' => '1.56 ', #./lib/CPAN/FirstTime.pm
2512 'CPAN::Nox' => '1.02', #./lib/CPAN/Nox.pm
2513 'Cwd' => '2.06', #./lib/Cwd.pm
2514 'Data::Dumper' => '2.12', #./ext/Data/Dumper/Dumper.pm
2515 'DB' => '1.0', #./lib/DB.pm
2516 'DB_File' => '1.804', #./ext/DB_File/DB_File.pm
2517 'Devel::DProf' => '20000000.00_01', #./ext/Devel/DProf/DProf.pm
2518 'Devel::Peek' => '1.00_03', #./ext/Devel/Peek/Peek.pm
2519 'Devel::PPPort' => '2.0002', #./ext/Devel/PPPort/PPPort.pm
2520 'Devel::SelfStubber' => '1.03', #./lib/Devel/SelfStubber.pm
2521 'diagnostics' => '1.1', #./lib/diagnostics.pm
2522 'Digest' => '1.00', #./lib/Digest.pm
2523 'Digest::MD5' => '2.20', #./ext/Digest/MD5/MD5.pm
2524 'DirHandle' => '1.00', #./lib/DirHandle.pm
2525 'Dumpvalue' => '1.11', #./lib/Dumpvalue.pm
2526 'DynaLoader' => '1.04',
2527 'Encode' => '1.75', #./ext/Encode/Encode.pm
2528 'Encode::Alias' => '1.32', #./ext/Encode/lib/Encode/Alias.pm
2529 'Encode::Byte' => '1.22', #./ext/Encode/Byte/Byte.pm
2530 'Encode::CJKConstants' => '1.00', #./ext/Encode/lib/Encode/CJKConstants.pm
2531 'Encode::CN' => '1.24', #./ext/Encode/CN/CN.pm
2532 'Encode::CN::HZ' => '1.04', #./ext/Encode/lib/Encode/CN/HZ.pm
2533 'Encode::Config' => '1.06', #./ext/Encode/lib/Encode/Config.pm
2534 'Encode::EBCDIC' => '1.21', #./ext/Encode/EBCDIC/EBCDIC.pm
2535 'Encode::Encoder' => '0.05', #./ext/Encode/lib/Encode/Encoder.pm
2536 'Encode::Encoding' => '1.30', #./ext/Encode/lib/Encode/Encoding.pm
2537 'Encode::Guess' => '1.06', #./ext/Encode/lib/Encode/Guess.pm
2538 'Encode::JP::H2Z' => '1.02', #./ext/Encode/lib/Encode/JP/H2Z.pm
2539 'Encode::JP::JIS7' => '1.08', #./ext/Encode/lib/Encode/JP/JIS7.pm
2540 'Encode::JP' => '1.25', #./ext/Encode/JP/JP.pm
2541 'Encode::KR' => '1.22', #./ext/Encode/KR/KR.pm
2542 'Encode::KR::2022_KR' => '1.05', #./ext/Encode/lib/Encode/KR/2022_KR.pm
2543 'Encode::MIME::Header' => '1.05', #./ext/Encode/lib/Encode/MIME/Header.pm
2544 'Encode::Symbol' => '1.22', #./ext/Encode/Symbol/Symbol.pm
2545 'Encode::TW' => '1.26', #./ext/Encode/TW/TW.pm
2546 'Encode::Unicode' => '1.37', #./ext/Encode/Unicode/Unicode.pm
2547 'encoding' => '1.35', #./ext/Encode/encoding.pm
2548 'English' => '1.00', #./lib/English.pm
2549 'Env' => '1.00', #./lib/Env.pm
2550 'Exporter' => '5.566', #./lib/Exporter.pm
2551 'Exporter::Heavy' => '5.566', #./lib/Exporter/Heavy.pm
2552 'ExtUtils::Command' => '1.04', #./lib/ExtUtils/Command.pm
2553 'ExtUtils::Command::MM' => '0.01', #./lib/ExtUtils/Command/MM.pm
2554 'ExtUtils::Constant' => '0.12', #./lib/ExtUtils/Constant.pm
2555 'ExtUtils::Embed' => '1.250601', #./lib/ExtUtils/Embed.pm
2556 'ExtUtils::Install' => '1.29', #./lib/ExtUtils/Install.pm
2557 'ExtUtils::Installed' => '0.06', #./lib/ExtUtils/Installed.pm
2558 'ExtUtils::Liblist' => '1.00', #./lib/ExtUtils/Liblist.pm
2559 'ExtUtils::Liblist::Kid'=> '1.29', #./lib/ExtUtils/Liblist/Kid.pm
2560 'ExtUtils::MakeMaker' => '6.03', #./lib/ExtUtils/MakeMaker.pm
2561 'ExtUtils::Manifest' => '1.38', #./lib/ExtUtils/Manifest.pm
2562 'ExtUtils::Miniperl' => undef,
2563 'ExtUtils::Mkbootstrap' => '1.15', #./lib/ExtUtils/Mkbootstrap.pm
2564 'ExtUtils::Mksymlists' => '1.19', #./lib/ExtUtils/Mksymlists.pm
2565 'ExtUtils::MM' => '0.04', #./lib/ExtUtils/MM.pm
2566 'ExtUtils::MM_Any' => '0.04', #./lib/ExtUtils/MM_Any.pm
2567 'ExtUtils::MM_BeOS' => '1.03', #./lib/ExtUtils/MM_BeOS.pm
2568 'ExtUtils::MM_Cygwin' => '1.04', #./lib/ExtUtils/MM_Cygwin.pm
2569 'ExtUtils::MM_DOS' => '0.01', #./lib/ExtUtils/MM_DOS.pm
2570 'ExtUtils::MM_MacOS' => '1.03', #./lib/ExtUtils/MM_MacOS.pm
2571 'ExtUtils::MM_NW5' => '2.05', #./lib/ExtUtils/MM_NW5.pm
2572 'ExtUtils::MM_OS2' => '1.03', #./lib/ExtUtils/MM_OS2.pm
2573 'ExtUtils::MM_Unix' => '1.33', #./lib/ExtUtils/MM_Unix.pm
2574 'ExtUtils::MM_UWIN' => '0.01', #./lib/ExtUtils/MM_UWIN.pm
2575 'ExtUtils::MM_VMS' => '5.65', #./lib/ExtUtils/MM_VMS.pm
2576 'ExtUtils::MM_Win32' => '1.05', #./lib/ExtUtils/MM_Win32.pm
2577 'ExtUtils::MM_Win95' => '0.02', #./lib/ExtUtils/MM_Win95.pm
2578 'ExtUtils::MY' => '0.01', #./lib/ExtUtils/MY.pm
2579 'ExtUtils::Packlist' => '0.04', #./lib/ExtUtils/Packlist.pm
2580 'ExtUtils::testlib' => '1.15', #./lib/ExtUtils/testlib.pm
2581 'ExtUtils::XSSymSet' => '1.0', #./vms/ext/XSSymSet.pm
2582 'Fatal' => '1.03', #./lib/Fatal.pm
2583 'Fcntl' => '1.04', #./ext/Fcntl/Fcntl.pm
2584 'fields' => '1.02', #./lib/fields.pm
2585 'File::Basename' => '2.71', #./lib/File/Basename.pm
2586 'File::CheckTree' => '4.2', #./lib/File/CheckTree.pm
2587 'File::Compare' => '1.1003', #./lib/File/Compare.pm
2588 'File::Copy' => '2.05', #./lib/File/Copy.pm
2589 'File::DosGlob' => '1.00', #./lib/File/DosGlob.pm
2590 'File::Find' => '1.04', #./lib/File/Find.pm
2591 'File::Glob' => '1.01', #./ext/File/Glob/Glob.pm
2592 'File::Path' => '1.05', #./lib/File/Path.pm
2593 'File::Spec' => '0.83', #./lib/File/Spec.pm
2594 'File::Spec::Cygwin' => '1.0', #./lib/File/Spec/Cygwin.pm
2595 'File::Spec::Epoc' => '1.00', #./lib/File/Spec/Epoc.pm
2596 'File::Spec::Functions' => '1.2', #./lib/File/Spec/Functions.pm
2597 'File::Spec::Mac' => '1.3', #./lib/File/Spec/Mac.pm
2598 'File::Spec::OS2' => '1.1', #./lib/File/Spec/OS2.pm
2599 'File::Spec::Unix' => '1.4', #./lib/File/Spec/Unix.pm
2600 'File::Spec::VMS' => '1.2', #./lib/File/Spec/VMS.pm
2601 'File::Spec::Win32' => '1.3', #./lib/File/Spec/Win32.pm
2602 'File::stat' => '1.00', #./lib/File/stat.pm
2603 'File::Temp' => '0.13', #./lib/File/Temp.pm
2604 'FileCache' => '1.021', #./lib/FileCache.pm
2605 'FileHandle' => '2.01', #./lib/FileHandle.pm
2606 'filetest' => '1.00', #./lib/filetest.pm
2607 'Filter::Simple' => '0.78', #./lib/Filter/Simple.pm
2608 'Filter::Util::Call' => '1.06', #./ext/Filter/Util/Call/Call.pm
2609 'FindBin' => '1.43', #./lib/FindBin.pm
2610 'GDBM_File' => '1.06', #./ext/GDBM_File/GDBM_File.pm
2611 'Getopt::Long' => '2.32', #./lib/Getopt/Long.pm
2612 'Getopt::Std' => '1.03', #./lib/Getopt/Std.pm
2613 'Hash::Util' => '0.04', #./lib/Hash/Util.pm
2614 'I18N::Collate' => '1.00', #./lib/I18N/Collate.pm
2615 'I18N::Langinfo' => '0.01', #./ext/I18N/Langinfo/Langinfo.pm
2616 'I18N::LangTags' => '0.27', #./lib/I18N/LangTags.pm
2617 'I18N::LangTags::List' => '0.25', #./lib/I18N/LangTags/List.pm
2618 'if' => '0.01', #./lib/if.pm
2619 'integer' => '1.00', #./lib/integer.pm
2620 'IO' => '1.20', #./ext/IO/IO.pm
2621 'IO::Dir' => '1.03_00', #./ext/IO/lib/IO/Dir.pm
2622 'IO::File' => '1.09', #./ext/IO/lib/IO/File.pm
2623 'IO::Handle' => '1.21_00', #./ext/IO/lib/IO/Handle.pm
2624 'IO::Pipe' => '1.122', #./ext/IO/lib/IO/Pipe.pm
2625 'IO::Poll' => '0.06', #./ext/IO/lib/IO/Poll.pm
2626 'IO::Seekable' => '1.08_00', #./ext/IO/lib/IO/Seekable.pm
2627 'IO::Select' => '1.15', #./ext/IO/lib/IO/Select.pm
2628 'IO::Socket' => '1.27', #./ext/IO/lib/IO/Socket.pm
2629 'IO::Socket::INET' => '1.26', #./ext/IO/lib/IO/Socket/INET.pm
2630 'IO::Socket::UNIX' => '1.20_00', #./ext/IO/lib/IO/Socket/UNIX.pm
2631 'IPC::Open2' => '1.01', #./lib/IPC/Open2.pm
2632 'IPC::Open3' => '1.0104', #./lib/IPC/Open3.pm
2633 'IPC::Msg' => '1.00_00', #./ext/IPC/SysV/Msg.pm
2634 'IPC::Semaphore' => '1.00_00', #./ext/IPC/SysV/Semaphore.pm
2635 'IPC::SysV' => '1.03_00', #./ext/IPC/SysV/SysV.pm
2636 'JNI' => '0.1', #./jpl/JNI/JNI.pm
2637 'JPL::AutoLoader' => undef, #./jpl/JPL/AutoLoader.pm
2638 'JPL::Class' => undef, #./jpl/JPL/Class.pm
2639 'JPL::Compile' => undef, #./jpl/JPL/Compile.pm
2640 'less' => '0.01', #./lib/less.pm
2642 'List::Util' => '1.07_00', #./ext/List/Util/lib/List/Util.pm
2643 'locale' => '1.00', #./lib/locale.pm
2644 'Locale::Constants' => '2.01', #./lib/Locale/Constants.pm
2645 'Locale::Country' => '2.04', #./lib/Locale/Country.pm
2646 'Locale::Currency' => '2.01', #./lib/Locale/Currency.pm
2647 'Locale::Language' => '2.01', #./lib/Locale/Language.pm
2648 'Locale::Maketext' => '1.03', #./lib/Locale/Maketext.pm
2649 'Locale::Script' => '2.01', #./lib/Locale/Script.pm
2650 'Math::BigFloat' => '1.35', #./lib/Math/BigFloat.pm
2651 'Math::BigFloat::Trace' => '0.01', #./lib/Math/BigFloat/Trace.pm
2652 'Math::BigInt' => '1.60', #./lib/Math/BigInt.pm
2653 'Math::BigInt::Calc' => '0.30', #./lib/Math/BigInt/Calc.pm
2654 'Math::BigInt::Trace' => '0.01', #./lib/Math/BigInt/Trace.pm
2655 'Math::BigRat' => '0.07', #./lib/Math/BigRat.pm
2656 'Math::Complex' => '1.34', #./lib/Math/Complex.pm
2657 'Math::Trig' => '1.01', #./lib/Math/Trig.pm
2658 'Memoize' => '1.01', #./lib/Memoize.pm
2659 'Memoize::AnyDBM_File' => '0.65', #./lib/Memoize/AnyDBM_File.pm
2660 'Memoize::Expire' => '1.00', #./lib/Memoize/Expire.pm
2661 'Memoize::ExpireFile' => '1.01', #./lib/Memoize/ExpireFile.pm
2662 'Memoize::ExpireTest' => '0.65', #./lib/Memoize/ExpireTest.pm
2663 'Memoize::NDBM_File' => '0.65', #./lib/Memoize/NDBM_File.pm
2664 'Memoize::SDBM_File' => '0.65', #./lib/Memoize/SDBM_File.pm
2665 'Memoize::Storable' => '0.65', #./lib/Memoize/Storable.pm
2666 'MIME::Base64' => '2.12', #./ext/MIME/Base64/Base64.pm
2667 'MIME::QuotedPrint' => '2.03', #./ext/MIME/Base64/QuotedPrint.pm
2668 'NDBM_File' => '1.04', #./ext/NDBM_File/NDBM_File.pm
2669 'Net::Cmd' => '2.21', #./lib/Net/Cmd.pm
2670 'Net::Config' => '1.10', #./lib/Net/Config.pm
2671 'Net::Domain' => '2.17', #./lib/Net/Domain.pm
2672 'Net::FTP' => '2.65', #./lib/Net/FTP.pm
2673 'Net::FTP::A' => '1.15', #./lib/Net/FTP/A.pm
2674 'Net::FTP::dataconn' => '0.11', #./lib/Net/FTP/dataconn.pm
2675 'Net::FTP::E' => '0.01', #./lib/Net/FTP/E.pm
2676 'Net::FTP::I' => '1.12', #./lib/Net/FTP/I.pm
2677 'Net::FTP::L' => '0.01', #./lib/Net/FTP/L.pm
2678 'Net::hostent' => '1.00', #./lib/Net/hostent.pm
2679 'Net::netent' => '1.00', #./lib/Net/netent.pm
2680 'Net::Netrc' => '2.12', #./lib/Net/Netrc.pm
2681 'Net::NNTP' => '2.21', #./lib/Net/NNTP.pm
2682 'Net::Ping' => '2.19', #./lib/Net/Ping.pm
2683 'Net::POP3' => '2.23', #./lib/Net/POP3.pm
2684 'Net::protoent' => '1.00', #./lib/Net/protoent.pm
2685 'Net::servent' => '1.00', #./lib/Net/servent.pm
2686 'Net::SMTP' => '2.24', #./lib/Net/SMTP.pm
2687 'Net::Time' => '2.09', #./lib/Net/Time.pm
2688 'NEXT' => '0.50', #./lib/NEXT.pm
2689 'O' => '1.00', #./ext/B/O.pm
2690 'ODBM_File' => '1.03', #./ext/ODBM_File/ODBM_File.pm
2691 'Opcode' => '1.05', #./ext/Opcode/Opcode.pm
2692 'open' => '1.01', #./lib/open.pm
2693 'ops' => '1.00', #./ext/Opcode/ops.pm
2694 'OS2::DLL' => '1.00', #./os2/OS2/REXX/DLL/DLL.pm
2695 'OS2::ExtAttr' => '0.01', #./os2/OS2/ExtAttr/ExtAttr.pm
2696 'OS2::PrfDB' => '0.02', #./os2/OS2/PrfDB/PrfDB.pm
2697 'OS2::Process' => '1.0', #./os2/OS2/Process/Process.pm
2698 'OS2::REXX' => '1.01', #./os2/OS2/REXX/REXX.pm
2699 'overload' => '1.00', #./lib/overload.pm
2700 'PerlIO' => '1.01', #./lib/PerlIO.pm
2701 'PerlIO::encoding' => '0.06', #./ext/PerlIO/encoding/encoding.pm
2702 'PerlIO::scalar' => '0.01', #./ext/PerlIO/scalar/scalar.pm
2703 'PerlIO::via' => '0.01', #./ext/PerlIO/via/via.pm
2704 'PerlIO::via::QuotedPrint'=> '0.04', #./lib/PerlIO/via/QuotedPrint.pm
2705 'Pod::Checker' => '1.3', #./lib/Pod/Checker.pm
2706 'Pod::Find' => '0.22', #./lib/Pod/Find.pm
2707 'Pod::Functions' => '1.01', #./lib/Pod/Functions.pm
2708 'Pod::Html' => '1.04', #./lib/Pod/Html.pm
2709 'Pod::InputObjects' => '1.13', #./lib/Pod/InputObjects.pm
2710 'Pod::LaTeX' => '0.54', #./lib/Pod/LaTeX.pm
2711 'Pod::Man' => '1.33', #./lib/Pod/Man.pm
2712 'Pod::ParseLink' => '1.05', #./lib/Pod/ParseLink.pm
2713 'Pod::Parser' => '1.13', #./lib/Pod/Parser.pm
2714 'Pod::ParseUtils' => '0.22', #./lib/Pod/ParseUtils.pm
2715 'Pod::Plainer' => '0.01', #./lib/Pod/Plainer.pm
2716 'Pod::Select' => '1.13', #./lib/Pod/Select.pm
2717 'Pod::Text' => '2.19', #./lib/Pod/Text.pm
2718 'Pod::Text::Color' => '1.03', #./lib/Pod/Text/Color.pm
2719 'Pod::Text::Overstrike' => '1.08', #./lib/Pod/Text/Overstrike.pm
2720 'Pod::Text::Termcap' => '1.09', #./lib/Pod/Text/Termcap.pm
2721 'Pod::Usage' => '1.14', #./lib/Pod/Usage.pm
2722 'POSIX' => '1.05', #./ext/POSIX/POSIX.pm
2723 're' => '0.03', #./ext/re/re.pm
2724 'Safe' => '2.07', #./ext/Opcode/Safe.pm
2725 'Scalar::Util' => 'undef', #./ext/List/Util/lib/Scalar/Util.pm
2726 'SDBM_File' => '1.03', #./ext/SDBM_File/SDBM_File.pm
2727 'Search::Dict' => '1.02', #./lib/Search/Dict.pm
2728 'SelectSaver' => '1.00', #./lib/SelectSaver.pm
2729 'SelfLoader' => '1.0903', #./lib/SelfLoader.pm
2730 'Shell' => '0.4', #./lib/Shell.pm
2731 'sigtrap' => '1.02', #./lib/sigtrap.pm
2732 'Socket' => '1.75', #./ext/Socket/Socket.pm
2733 'sort' => '1.01', #./lib/sort.pm
2734 'Storable' => '2.04', #./ext/Storable/Storable.pm
2735 'strict' => '1.02', #./lib/strict.pm
2736 'subs' => '1.00', #./lib/subs.pm
2737 'Switch' => '2.09', #./lib/Switch.pm
2738 'Symbol' => '1.04', #./lib/Symbol.pm
2739 'Sys::Hostname' => '1.1', #./ext/Sys/Hostname/Hostname.pm
2740 'Sys::Syslog' => '0.03', #./ext/Sys/Syslog/Syslog.pm
2741 'Term::ANSIColor' => '1.04', #./lib/Term/ANSIColor.pm
2742 'Term::Cap' => '1.07', #./lib/Term/Cap.pm
2743 'Term::Complete' => '1.4', #./lib/Term/Complete.pm
2744 'Term::ReadLine' => '1.00', #./lib/Term/ReadLine.pm
2745 'Test' => '1.20', #./lib/Test.pm
2746 'Test::Builder' => '0.15', #./lib/Test/Builder.pm
2747 'Test::Harness' => '2.26', #./lib/Test/Harness.pm
2748 'Test::Harness::Assert' => '0.01', #./lib/Test/Harness/Assert.pm
2749 'Test::Harness::Iterator'=> '0.01', #./lib/Test/Harness/Iterator.pm
2750 'Test::Harness::Straps' => '0.14', #./lib/Test/Harness/Straps.pm
2751 'Test::More' => '0.45', #./lib/Test/More.pm
2752 'Test::Simple' => '0.45', #./lib/Test/Simple.pm
2753 'Text::Abbrev' => '1.00', #./lib/Text/Abbrev.pm
2754 'Text::Balanced' => '1.89', #./lib/Text/Balanced.pm
2755 'Text::ParseWords' => '3.21', #./lib/Text/ParseWords.pm
2756 'Text::Soundex' => '1.01', #./lib/Text/Soundex.pm
2757 'Text::Tabs' => '98.112801', #./lib/Text/Tabs.pm
2758 'Text::Wrap' => '2001.0929', #./lib/Text/Wrap.pm
2759 'Thread' => '2.00', #./lib/Thread.pm
2760 'Thread::Queue' => '2.00', #./lib/Thread/Queue.pm
2761 'Thread::Semaphore' => '2.00', #./lib/Thread/Semaphore.pm
2762 'Thread::Signal' => '1.00', #./ext/Thread/Thread/Signal.pm
2763 'Thread::Specific' => '1.00', #./ext/Thread/Thread/Specific.pm
2764 'threads' => '0.99', #./ext/threads/threads.pm
2765 'threads::shared' => '0.90', #./ext/threads/shared/shared.pm
2766 'Tie::Array' => '1.02', #./lib/Tie/Array.pm
2767 'Tie::File' => '0.93', #./lib/Tie/File.pm
2768 'Tie::Handle' => '4.1', #./lib/Tie/Handle.pm
2769 'Tie::Hash' => '1.00', #./lib/Tie/Hash.pm
2770 'Tie::Memoize' => '1.0', #./lib/Tie/Memoize.pm
2771 'Tie::RefHash' => '1.30', #./lib/Tie/RefHash.pm
2772 'Tie::Scalar' => '1.00', #./lib/Tie/Scalar.pm
2773 'Tie::SubstrHash' => '1.00', #./lib/Tie/SubstrHash.pm
2774 'Time::gmtime' => '1.02', #./lib/Time/gmtime.pm
2775 'Time::HiRes' => '1.20_00', #./ext/Time/HiRes/HiRes.pm
2776 'Time::Local' => '1.04', #./lib/Time/Local.pm
2777 'Time::localtime' => '1.02', #./lib/Time/localtime.pm
2778 'Time::tm' => '1.00', #./lib/Time/tm.pm
2779 'Unicode' => '3.2.0', # lib/unicore/version
2780 'Unicode::Collate' => '0.12', #./lib/Unicode/Collate.pm
2781 'Unicode::Normalize' => '0.17', #./ext/Unicode/Normalize/Normalize.pm
2782 'Unicode::UCD' => '0.2', #./lib/Unicode/UCD.pm
2783 'UNIVERSAL' => '1.00', #./lib/UNIVERSAL.pm
2784 'User::grent' => '1.00', #./lib/User/grent.pm
2785 'User::pwent' => '1.00', #./lib/User/pwent.pm
2786 'utf8' => '1.00', #./lib/utf8.pm
2787 'vars' => '1.01', #./lib/vars.pm
2788 'VMS::DCLsym' => '1.02', #./vms/ext/DCLsym/DCLsym.pm
2789 'VMS::Filespec' => '1.1', #./vms/ext/Filespec.pm
2790 'VMS::Stdio' => '2.3', #./vms/ext/Stdio/Stdio.pm
2791 'vmsish' => '1.00', #./lib/vmsish.pm
2792 'warnings' => '1.00', #./lib/warnings.pm
2793 'warnings::register' => '1.00', #./lib/warnings/register.pm
2794 'XS::APItest' => '0.01', #./ext/XS/APItest/APItest.pm
2795 'XS::Typemap' => '0.01', #./ext/XS/Typemap/Typemap.pm
2796 'XSLoader' => '0.01',
2800 'AnyDBM_File' => '1.00', #./lib/AnyDBM_File.pm
2801 'Attribute::Handlers' => '0.78', #./lib/Attribute/Handlers.pm
2802 'attributes' => '0.06', #./lib/attributes.pm
2803 'attrs' => '1.01', #./lib/attrs.pm
2804 'AutoLoader' => '5.60', #./lib/AutoLoader.pm
2805 'AutoSplit' => '1.04', #./lib/AutoSplit.pm
2806 'autouse' => '1.03', #./lib/autouse.pm
2807 'B' => '1.02', #./lib/B.pm
2808 'B::Asmdata' => '1.01', #./lib/B/Asmdata.pm
2809 'B::Assembler' => '0.06', #./lib/B/Assembler.pm
2810 'B::Bblock' => '1.02', #./lib/B/Bblock.pm
2811 'B::Bytecode' => '1.01', #./lib/B/Bytecode.pm
2812 'B::C' => '1.02', #./lib/B/C.pm
2813 'B::CC' => '1.00', #./lib/B/CC.pm
2814 'B::Concise' => '0.56', #./lib/B/Concise.pm
2815 'B::Debug' => '1.01', #./lib/B/Debug.pm
2816 'B::Deparse' => '0.64', #./lib/B/Deparse.pm
2817 'B::Disassembler' => '1.03', #./lib/B/Disassembler.pm
2818 'B::Lint' => '1.02', #./lib/B/Lint.pm
2819 'B::Showlex' => '1.00', #./lib/B/Showlex.pm
2820 'B::Stackobj' => '1.00', #./lib/B/Stackobj.pm
2821 'B::Stash' => '1.00', #./lib/B/Stash.pm
2822 'B::Terse' => '1.02', #./lib/B/Terse.pm
2823 'B::Xref' => '1.01', #./lib/B/Xref.pm
2824 'base' => '2.03', #./lib/base.pm
2825 'Benchmark' => '1.051', #./lib/Benchmark.pm
2826 'bigint' => '0.04', #./lib/bigint.pm
2827 'bignum' => '0.14', #./lib/bignum.pm
2828 'bigrat' => '0.06', #./lib/bigrat.pm
2829 'blib' => '1.02', #./lib/blib.pm
2830 'ByteLoader' => '0.05', #./lib/ByteLoader.pm
2831 'bytes' => '1.01', #./lib/bytes.pm
2832 'Carp' => '1.01', #./lib/Carp.pm
2833 'Carp::Heavy' => '1.01', #./lib/Carp/Heavy.pm
2834 'CGI' => '3.00', #./lib/CGI.pm
2835 'CGI::Apache' => '1.00', #./lib/CGI/Apache.pm
2836 'CGI::Carp' => '1.26', #./lib/CGI/Carp.pm
2837 'CGI::Cookie' => '1.24', #./lib/CGI/Cookie.pm
2838 'CGI::Fast' => '1.041', #./lib/CGI/Fast.pm
2839 'CGI::Pretty' => '1.07_00', #./lib/CGI/Pretty.pm
2840 'CGI::Push' => '1.04', #./lib/CGI/Push.pm
2841 'CGI::Switch' => '1.00', #./lib/CGI/Switch.pm
2842 'CGI::Util' => '1.31', #./lib/CGI/Util.pm
2843 'charnames' => '1.02', #./lib/charnames.pm
2844 'Class::ISA' => '0.32', #./lib/Class/ISA.pm
2845 'Class::Struct' => '0.63', #./lib/Class/Struct.pm
2846 'Config' => undef, #./lib/Config.pm
2847 'constant' => '1.04', #./lib/constant.pm
2848 'CPAN' => '1.76_01', #./lib/CPAN.pm
2849 'CPAN::FirstTime' => '1.60 ', #./lib/CPAN/FirstTime.pm
2850 'CPAN::Nox' => '1.03', #./lib/CPAN/Nox.pm
2851 'Cwd' => '2.08', #./lib/Cwd.pm
2852 'Data::Dumper' => '2.121', #./lib/Data/Dumper.pm
2853 'DB' => '1.0', #./lib/DB.pm
2854 'DB_File' => '1.806', #./lib/DB_File.pm
2855 'Devel::DProf' => '20030813.00', #./lib/Devel/DProf.pm
2856 'Devel::Peek' => '1.01', #./lib/Devel/Peek.pm
2857 'Devel::PPPort' => '2.007', #./lib/Devel/PPPort.pm
2858 'Devel::SelfStubber' => '1.03', #./lib/Devel/SelfStubber.pm
2859 'diagnostics' => '1.11', #./lib/diagnostics.pm
2860 'Digest' => '1.02', #./lib/Digest.pm
2861 'Digest::MD5' => '2.27', #./lib/Digest/MD5.pm
2862 'DirHandle' => '1.00', #./lib/DirHandle.pm
2863 'Dumpvalue' => '1.11', #./lib/Dumpvalue.pm
2864 'DynaLoader' => '1.04', #./lib/DynaLoader.pm
2865 'Encode' => '1.9801', #./lib/Encode.pm
2866 'Encode::Alias' => '1.38', #./lib/Encode/Alias.pm
2867 'Encode::Byte' => '1.23', #./lib/Encode/Byte.pm
2868 'Encode::CJKConstants' => '1.02', #./lib/Encode/CJKConstants.pm
2869 'Encode::CN' => '1.24', #./lib/Encode/CN.pm
2870 'Encode::CN::HZ' => '1.05', #./lib/Encode/CN/HZ.pm
2871 'Encode::Config' => '1.07', #./lib/Encode/Config.pm
2872 'Encode::EBCDIC' => '1.21', #./lib/Encode/EBCDIC.pm
2873 'Encode::Encoder' => '0.07', #./lib/Encode/Encoder.pm
2874 'Encode::Encoding' => '1.33', #./lib/Encode/Encoding.pm
2875 'Encode::Guess' => '1.09', #./lib/Encode/Guess.pm
2876 'Encode::JP' => '1.25', #./lib/Encode/JP.pm
2877 'Encode::JP::H2Z' => '1.02', #./lib/Encode/JP/H2Z.pm
2878 'Encode::JP::JIS7' => '1.12', #./lib/Encode/JP/JIS7.pm
2879 'Encode::KR' => '1.23', #./lib/Encode/KR.pm
2880 'Encode::KR::2022_KR' => '1.06', #./lib/Encode/KR/2022_KR.pm
2881 'Encode::MIME::Header' => '1.09', #./lib/Encode/MIME/Header.pm
2882 'Encode::Symbol' => '1.22', #./lib/Encode/Symbol.pm
2883 'Encode::TW' => '1.26', #./lib/Encode/TW.pm
2884 'Encode::Unicode' => '1.40', #./lib/Encode/Unicode.pm
2885 'Encode::Unicode::UTF7' => '0.02', #./lib/Encode/Unicode/UTF7.pm
2886 'encoding' => '1.47', #./lib/encoding.pm
2887 'English' => '1.01', #./lib/English.pm
2888 'Env' => '1.00', #./lib/Env.pm
2889 'Errno' => '1.09_00', #./lib/Errno.pm
2890 'Exporter' => '5.567', #./lib/Exporter.pm
2891 'Exporter::Heavy' => '5.567', #./lib/Exporter/Heavy.pm
2892 'ExtUtils::Command' => '1.05', #./lib/ExtUtils/Command.pm
2893 'ExtUtils::Command::MM' => '0.03', #./lib/ExtUtils/Command/MM.pm
2894 'ExtUtils::Constant' => '0.14', #./lib/ExtUtils/Constant.pm
2895 'ExtUtils::Embed' => '1.250601', #./lib/ExtUtils/Embed.pm
2896 'ExtUtils::Install' => '1.32', #./lib/ExtUtils/Install.pm
2897 'ExtUtils::Installed' => '0.08', #./lib/ExtUtils/Installed.pm
2898 'ExtUtils::Liblist' => '1.01', #./lib/ExtUtils/Liblist.pm
2899 'ExtUtils::Liblist::Kid'=> '1.3', #./lib/ExtUtils/Liblist/Kid.pm
2900 'ExtUtils::MakeMaker' => '6.17', #./lib/ExtUtils/MakeMaker.pm
2901 'ExtUtils::MakeMaker::bytes'=> '0.01', #./lib/ExtUtils/MakeMaker/bytes.pm
2902 'ExtUtils::MakeMaker::vmsish'=> '0.01', #./lib/ExtUtils/MakeMaker/vmsish.pm
2903 'ExtUtils::Manifest' => '1.42', #./lib/ExtUtils/Manifest.pm
2904 'ExtUtils::Miniperl' => undef, #./lib/ExtUtils/Miniperl.pm
2905 'ExtUtils::Mkbootstrap' => '1.15', #./lib/ExtUtils/Mkbootstrap.pm
2906 'ExtUtils::Mksymlists' => '1.19', #./lib/ExtUtils/Mksymlists.pm
2907 'ExtUtils::MM' => '0.04', #./lib/ExtUtils/MM.pm
2908 'ExtUtils::MM_Any' => '0.07', #./lib/ExtUtils/MM_Any.pm
2909 'ExtUtils::MM_BeOS' => '1.04', #./lib/ExtUtils/MM_BeOS.pm
2910 'ExtUtils::MM_Cygwin' => '1.06', #./lib/ExtUtils/MM_Cygwin.pm
2911 'ExtUtils::MM_DOS' => '0.02', #./lib/ExtUtils/MM_DOS.pm
2912 'ExtUtils::MM_MacOS' => '1.07', #./lib/ExtUtils/MM_MacOS.pm
2913 'ExtUtils::MM_NW5' => '2.06', #./lib/ExtUtils/MM_NW5.pm
2914 'ExtUtils::MM_OS2' => '1.04', #./lib/ExtUtils/MM_OS2.pm
2915 'ExtUtils::MM_Unix' => '1.42', #./lib/ExtUtils/MM_Unix.pm
2916 'ExtUtils::MM_UWIN' => '0.02', #./lib/ExtUtils/MM_UWIN.pm
2917 'ExtUtils::MM_VMS' => '5.70', #./lib/ExtUtils/MM_VMS.pm
2918 'ExtUtils::MM_Win32' => '1.09', #./lib/ExtUtils/MM_Win32.pm
2919 'ExtUtils::MM_Win95' => '0.03', #./lib/ExtUtils/MM_Win95.pm
2920 'ExtUtils::MY' => '0.01', #./lib/ExtUtils/MY.pm
2921 'ExtUtils::Packlist' => '0.04', #./lib/ExtUtils/Packlist.pm
2922 'ExtUtils::testlib' => '1.15', #./lib/ExtUtils/testlib.pm
2923 'ExtUtils::XSSymSet' => '1.0', #./vms/ext/XSSymSet.pm
2924 'Fatal' => '1.03', #./lib/Fatal.pm
2925 'Fcntl' => '1.05', #./lib/Fcntl.pm
2926 'fields' => '2.03', #./lib/fields.pm
2927 'File::Basename' => '2.72', #./lib/File/Basename.pm
2928 'File::CheckTree' => '4.2', #./lib/File/CheckTree.pm
2929 'File::Compare' => '1.1003', #./lib/File/Compare.pm
2930 'File::Copy' => '2.06', #./lib/File/Copy.pm
2931 'File::DosGlob' => '1.00', #./lib/File/DosGlob.pm
2932 'File::Find' => '1.05', #./lib/File/Find.pm
2933 'File::Glob' => '1.02', #./lib/File/Glob.pm
2934 'File::Path' => '1.06', #./lib/File/Path.pm
2935 'File::Spec' => '0.86', #./lib/File/Spec.pm
2936 'File::Spec::Cygwin' => '1.1', #./lib/File/Spec/Cygwin.pm
2937 'File::Spec::Epoc' => '1.1', #./lib/File/Spec/Epoc.pm
2938 'File::Spec::Functions' => '1.3', #./lib/File/Spec/Functions.pm
2939 'File::Spec::Mac' => '1.4', #./lib/File/Spec/Mac.pm
2940 'File::Spec::OS2' => '1.2', #./lib/File/Spec/OS2.pm
2941 'File::Spec::Unix' => '1.5', #./lib/File/Spec/Unix.pm
2942 'File::Spec::VMS' => '1.4', #./lib/File/Spec/VMS.pm
2943 'File::Spec::Win32' => '1.4', #./lib/File/Spec/Win32.pm
2944 'File::stat' => '1.00', #./lib/File/stat.pm
2945 'File::Temp' => '0.14', #./lib/File/Temp.pm
2946 'FileCache' => '1.03', #./lib/FileCache.pm
2947 'FileHandle' => '2.01', #./lib/FileHandle.pm
2948 'filetest' => '1.01', #./lib/filetest.pm
2949 'Filter::Simple' => '0.78', #./lib/Filter/Simple.pm
2950 'Filter::Util::Call' => '1.0601', #./lib/Filter/Util/Call.pm
2951 'FindBin' => '1.43', #./lib/FindBin.pm
2952 'GDBM_File' => '1.07', #./ext/GDBM_File/GDBM_File.pm
2953 'Getopt::Long' => '2.34', #./lib/Getopt/Long.pm
2954 'Getopt::Std' => '1.04', #./lib/Getopt/Std.pm
2955 'Hash::Util' => '0.05', #./lib/Hash/Util.pm
2956 'I18N::Collate' => '1.00', #./lib/I18N/Collate.pm
2957 'I18N::Langinfo' => '0.02', #./lib/I18N/Langinfo.pm
2958 'I18N::LangTags' => '0.28', #./lib/I18N/LangTags.pm
2959 'I18N::LangTags::List' => '0.26', #./lib/I18N/LangTags/List.pm
2960 'if' => '0.03', #./lib/if.pm
2961 'integer' => '1.00', #./lib/integer.pm
2962 'IO' => '1.21', #./lib/IO.pm
2963 'IO::Dir' => '1.04', #./lib/IO/Dir.pm
2964 'IO::File' => '1.10', #./lib/IO/File.pm
2965 'IO::Handle' => '1.23', #./lib/IO/Handle.pm
2966 'IO::Pipe' => '1.122', #./lib/IO/Pipe.pm
2967 'IO::Poll' => '0.06', #./lib/IO/Poll.pm
2968 'IO::Seekable' => '1.09', #./lib/IO/Seekable.pm
2969 'IO::Select' => '1.16', #./lib/IO/Select.pm
2970 'IO::Socket' => '1.28', #./lib/IO/Socket.pm
2971 'IO::Socket::INET' => '1.27', #./lib/IO/Socket/INET.pm
2972 'IO::Socket::UNIX' => '1.21', #./lib/IO/Socket/UNIX.pm
2973 'IPC::Msg' => '1.02', #./lib/IPC/Msg.pm
2974 'IPC::Open2' => '1.01', #./lib/IPC/Open2.pm
2975 'IPC::Open3' => '1.0105', #./lib/IPC/Open3.pm
2976 'IPC::Semaphore' => '1.02', #./lib/IPC/Semaphore.pm
2977 'IPC::SysV' => '1.04', #./lib/IPC/SysV.pm
2978 'JNI' => '0.2', #./jpl/JNI/JNI.pm
2979 'JPL::AutoLoader' => undef, #./jpl/JPL/AutoLoader.pm
2980 'JPL::Class' => undef, #./jpl/JPL/Class.pm
2981 'JPL::Compile' => undef, #./jpl/JPL/Compile.pm
2982 'less' => '0.01', #./lib/less.pm
2983 'lib' => '0.5565', #./lib/lib.pm
2984 'List::Util' => '1.13', #./lib/List/Util.pm
2985 'locale' => '1.00', #./lib/locale.pm
2986 'Locale::Constants' => '2.01', #./lib/Locale/Constants.pm
2987 'Locale::Country' => '2.61', #./lib/Locale/Country.pm
2988 'Locale::Currency' => '2.21', #./lib/Locale/Currency.pm
2989 'Locale::Language' => '2.21', #./lib/Locale/Language.pm
2990 'Locale::Maketext' => '1.06', #./lib/Locale/Maketext.pm
2991 'Locale::Maketext::Guts'=> undef, #./lib/Locale/Maketext/Guts.pm
2992 'Locale::Maketext::GutsLoader'=> undef, #./lib/Locale/Maketext/GutsLoader.pm
2993 'Locale::Script' => '2.21', #./lib/Locale/Script.pm
2994 'Math::BigFloat' => '1.40', #./lib/Math/BigFloat.pm
2995 'Math::BigFloat::Trace' => '0.01', #./lib/Math/BigFloat/Trace.pm
2996 'Math::BigInt' => '1.66', #./lib/Math/BigInt.pm
2997 'Math::BigInt::Calc' => '0.36', #./lib/Math/BigInt/Calc.pm
2998 'Math::BigInt::Scalar' => '0.11', #./lib/Math/BigInt/Scalar.pm
2999 'Math::BigInt::Trace' => '0.01', #./lib/Math/BigInt/Trace.pm
3000 'Math::BigRat' => '0.10', #./lib/Math/BigRat.pm
3001 'Math::Complex' => '1.34', #./lib/Math/Complex.pm
3002 'Math::Trig' => '1.02', #./lib/Math/Trig.pm
3003 'Memoize' => '1.01', #./lib/Memoize.pm
3004 'Memoize::AnyDBM_File' => '0.65', #./lib/Memoize/AnyDBM_File.pm
3005 'Memoize::Expire' => '1.00', #./lib/Memoize/Expire.pm
3006 'Memoize::ExpireFile' => '1.01', #./lib/Memoize/ExpireFile.pm
3007 'Memoize::ExpireTest' => '0.65', #./lib/Memoize/ExpireTest.pm
3008 'Memoize::NDBM_File' => '0.65', #./lib/Memoize/NDBM_File.pm
3009 'Memoize::SDBM_File' => '0.65', #./lib/Memoize/SDBM_File.pm
3010 'Memoize::Storable' => '0.65', #./lib/Memoize/Storable.pm
3011 'MIME::Base64' => '2.20', #./lib/MIME/Base64.pm
3012 'MIME::QuotedPrint' => '2.20', #./lib/MIME/QuotedPrint.pm
3013 'NDBM_File' => '1.05', #./ext/NDBM_File/NDBM_File.pm
3014 'Net::Cmd' => '2.24', #./lib/Net/Cmd.pm
3015 'Net::Config' => '1.10', #./lib/Net/Config.pm
3016 'Net::Domain' => '2.18', #./lib/Net/Domain.pm
3017 'Net::FTP' => '2.71', #./lib/Net/FTP.pm
3018 'Net::FTP::A' => '1.16', #./lib/Net/FTP/A.pm
3019 'Net::FTP::dataconn' => '0.11', #./lib/Net/FTP/dataconn.pm
3020 'Net::FTP::E' => '0.01', #./lib/Net/FTP/E.pm
3021 'Net::FTP::I' => '1.12', #./lib/Net/FTP/I.pm
3022 'Net::FTP::L' => '0.01', #./lib/Net/FTP/L.pm
3023 'Net::hostent' => '1.01', #./lib/Net/hostent.pm
3024 'Net::netent' => '1.00', #./lib/Net/netent.pm
3025 'Net::Netrc' => '2.12', #./lib/Net/Netrc.pm
3026 'Net::NNTP' => '2.22', #./lib/Net/NNTP.pm
3027 'Net::Ping' => '2.31', #./lib/Net/Ping.pm
3028 'Net::POP3' => '2.24', #./lib/Net/POP3.pm
3029 'Net::protoent' => '1.00', #./lib/Net/protoent.pm
3030 'Net::servent' => '1.01', #./lib/Net/servent.pm
3031 'Net::SMTP' => '2.26', #./lib/Net/SMTP.pm
3032 'Net::Time' => '2.09', #./lib/Net/Time.pm
3033 'NEXT' => '0.60', #./lib/NEXT.pm
3034 'O' => '1.00', #./lib/O.pm
3035 'ODBM_File' => '1.04', #./ext/ODBM_File/ODBM_File.pm
3036 'Opcode' => '1.05', #./lib/Opcode.pm
3037 'open' => '1.02', #./lib/open.pm
3038 'ops' => '1.00', #./lib/ops.pm
3039 'OS2::ExtAttr' => '0.02', #./os2/OS2/ExtAttr/ExtAttr.pm
3040 'OS2::PrfDB' => '0.03', #./os2/OS2/PrfDB/PrfDB.pm
3041 'OS2::Process' => '1.01', #./os2/OS2/Process/Process.pm
3042 'OS2::DLL' => '1.01', #./os2/OS2/REXX/DLL/DLL.pm
3043 'OS2::REXX' => '1.02', #./os2/OS2/REXX/REXX.pm
3044 'overload' => '1.01', #./lib/overload.pm
3045 'PerlIO' => '1.02', #./lib/PerlIO.pm
3046 'PerlIO::encoding' => '0.07', #./lib/PerlIO/encoding.pm
3047 'PerlIO::scalar' => '0.02', #./lib/PerlIO/scalar.pm
3048 'PerlIO::via' => '0.02', #./lib/PerlIO/via.pm
3049 'PerlIO::via::QuotedPrint'=> '0.05', #./lib/PerlIO/via/QuotedPrint.pm
3050 'Pod::Checker' => '1.41', #./lib/Pod/Checker.pm
3051 'Pod::Find' => '0.24', #./lib/Pod/Find.pm
3052 'Pod::Functions' => '1.02', #./lib/Pod/Functions.pm
3053 'Pod::Html' => '1.0501', #./lib/Pod/Html.pm
3054 'Pod::InputObjects' => '1.14', #./lib/Pod/InputObjects.pm
3055 'Pod::LaTeX' => '0.55', #./lib/Pod/LaTeX.pm
3056 'Pod::Man' => '1.37', #./lib/Pod/Man.pm
3057 'Pod::ParseLink' => '1.06', #./lib/Pod/ParseLink.pm
3058 'Pod::Parser' => '1.13', #./lib/Pod/Parser.pm
3059 'Pod::ParseUtils' => '0.3', #./lib/Pod/ParseUtils.pm
3060 'Pod::Perldoc' => '3.10', #./lib/Pod/Perldoc.pm
3061 'Pod::Perldoc::BaseTo' => undef, #./lib/Pod/Perldoc/BaseTo.pm
3062 'Pod::Perldoc::GetOptsOO'=> undef, #./lib/Pod/Perldoc/GetOptsOO.pm
3063 'Pod::Perldoc::ToChecker'=> undef, #./lib/Pod/Perldoc/ToChecker.pm
3064 'Pod::Perldoc::ToMan' => undef, #./lib/Pod/Perldoc/ToMan.pm
3065 'Pod::Perldoc::ToNroff' => undef, #./lib/Pod/Perldoc/ToNroff.pm
3066 'Pod::Perldoc::ToPod' => undef, #./lib/Pod/Perldoc/ToPod.pm
3067 'Pod::Perldoc::ToRtf' => undef, #./lib/Pod/Perldoc/ToRtf.pm
3068 'Pod::Perldoc::ToText' => undef, #./lib/Pod/Perldoc/ToText.pm
3069 'Pod::Perldoc::ToTk' => 'undef', #./lib/Pod/Perldoc/ToTk.pm
3070 'Pod::Perldoc::ToXml' => undef, #./lib/Pod/Perldoc/ToXml.pm
3071 'Pod::Plainer' => '0.01', #./lib/Pod/Plainer.pm
3072 'Pod::PlainText' => '2.01', #./lib/Pod/PlainText.pm
3073 'Pod::Select' => '1.13', #./lib/Pod/Select.pm
3074 'Pod::Text' => '2.21', #./lib/Pod/Text.pm
3075 'Pod::Text::Color' => '1.04', #./lib/Pod/Text/Color.pm
3076 'Pod::Text::Overstrike' => '1.1', #./lib/Pod/Text/Overstrike.pm
3077 'Pod::Text::Termcap' => '1.11', #./lib/Pod/Text/Termcap.pm
3078 'Pod::Usage' => '1.16', #./lib/Pod/Usage.pm
3079 'POSIX' => '1.06', #./lib/POSIX.pm
3080 're' => '0.04', #./lib/re.pm
3081 'Safe' => '2.10', #./lib/Safe.pm
3082 'Scalar::Util' => '1.13', #./lib/Scalar/Util.pm
3083 'SDBM_File' => '1.04', #./lib/SDBM_File.pm
3084 'Search::Dict' => '1.02', #./lib/Search/Dict.pm
3085 'SelectSaver' => '1.00', #./lib/SelectSaver.pm
3086 'SelfLoader' => '1.0904', #./lib/SelfLoader.pm
3087 'Shell' => '0.5', #./lib/Shell.pm
3088 'sigtrap' => '1.02', #./lib/sigtrap.pm
3089 'Socket' => '1.76', #./lib/Socket.pm
3090 'sort' => '1.02', #./lib/sort.pm
3091 'Storable' => '2.08', #./lib/Storable.pm
3092 'strict' => '1.03', #./lib/strict.pm
3093 'subs' => '1.00', #./lib/subs.pm
3094 'Switch' => '2.10', #./lib/Switch.pm
3095 'Symbol' => '1.05', #./lib/Symbol.pm
3096 'Sys::Hostname' => '1.11', #./lib/Sys/Hostname.pm
3097 'Sys::Syslog' => '0.04', #./lib/Sys/Syslog.pm
3098 'Term::ANSIColor' => '1.07', #./lib/Term/ANSIColor.pm
3099 'Term::Cap' => '1.08', #./lib/Term/Cap.pm
3100 'Term::Complete' => '1.401', #./lib/Term/Complete.pm
3101 'Term::ReadLine' => '1.01', #./lib/Term/ReadLine.pm
3102 'Test' => '1.24', #./lib/Test.pm
3103 'Test::Builder' => '0.17', #./lib/Test/Builder.pm
3104 'Test::Harness' => '2.30', #./lib/Test/Harness.pm
3105 'Test::Harness::Assert' => '0.01', #./lib/Test/Harness/Assert.pm
3106 'Test::Harness::Iterator'=> '0.01', #./lib/Test/Harness/Iterator.pm
3107 'Test::Harness::Straps' => '0.15', #./lib/Test/Harness/Straps.pm
3108 'Test::More' => '0.47', #./lib/Test/More.pm
3109 'Test::Simple' => '0.47', #./lib/Test/Simple.pm
3110 'Text::Abbrev' => '1.01', #./lib/Text/Abbrev.pm
3111 'Text::Balanced' => '1.95', #./lib/Text/Balanced.pm
3112 'Text::ParseWords' => '3.21', #./lib/Text/ParseWords.pm
3113 'Text::Soundex' => '1.01', #./lib/Text/Soundex.pm
3114 'Text::Tabs' => '98.112801', #./lib/Text/Tabs.pm
3115 'Text::Wrap' => '2001.09291', #./lib/Text/Wrap.pm
3116 'Thread' => '2.00', #./lib/Thread.pm
3117 'Thread::Queue' => '2.00', #./lib/Thread/Queue.pm
3118 'Thread::Semaphore' => '2.01', #./lib/Thread/Semaphore.pm
3119 'Thread::Signal' => '1.00', #./ext/Thread/Thread/Signal.pm
3120 'Thread::Specific' => '1.00', #./ext/Thread/Thread/Specific.pm
3121 'threads' => '1.00', #./lib/threads.pm
3122 'threads::shared' => '0.91', #./lib/threads/shared.pm
3123 'Tie::Array' => '1.03', #./lib/Tie/Array.pm
3124 'Tie::File' => '0.97', #./lib/Tie/File.pm
3125 'Tie::Handle' => '4.1', #./lib/Tie/Handle.pm
3126 'Tie::Hash' => '1.00', #./lib/Tie/Hash.pm
3127 'Tie::Memoize' => '1.0', #./lib/Tie/Memoize.pm
3128 'Tie::RefHash' => '1.31', #./lib/Tie/RefHash.pm
3129 'Tie::Scalar' => '1.00', #./lib/Tie/Scalar.pm
3130 'Tie::SubstrHash' => '1.00', #./lib/Tie/SubstrHash.pm
3131 'Time::gmtime' => '1.02', #./lib/Time/gmtime.pm
3132 'Time::HiRes' => '1.51', #./lib/Time/HiRes.pm
3133 'Time::Local' => '1.07', #./lib/Time/Local.pm
3134 'Time::localtime' => '1.02', #./lib/Time/localtime.pm
3135 'Time::tm' => '1.00', #./lib/Time/tm.pm
3136 'Unicode' => '4.0.0', # lib/unicore/version
3137 'Unicode::Collate' => '0.28', #./lib/Unicode/Collate.pm
3138 'Unicode::Normalize' => '0.23', #./lib/Unicode/Normalize.pm
3139 'Unicode::UCD' => '0.21', #./lib/Unicode/UCD.pm
3140 'UNIVERSAL' => '1.01', #./lib/UNIVERSAL.pm
3141 'User::grent' => '1.00', #./lib/User/grent.pm
3142 'User::pwent' => '1.00', #./lib/User/pwent.pm
3143 'utf8' => '1.02', #./lib/utf8.pm
3144 'vars' => '1.01', #./lib/vars.pm
3145 'VMS::DCLsym' => '1.02', #./vms/ext/DCLsym/DCLsym.pm
3146 'VMS::Filespec' => '1.11', #./vms/ext/Filespec.pm
3147 'VMS::Stdio' => '2.3', #./vms/ext/Stdio/Stdio.pm
3148 'vmsish' => '1.01', #./lib/vmsish.pm
3149 'warnings' => '1.03', #./lib/warnings.pm
3150 'warnings::register' => '1.00', #./lib/warnings/register.pm
3151 'XS::APItest' => '0.02', #./lib/XS/APItest.pm
3152 'XS::Typemap' => '0.01', #./lib/XS/Typemap.pm
3153 'XSLoader' => '0.02', #./lib/XSLoader.pm
3157 'AnyDBM_File' => '1.00', #AnyDBM_File.pm
3158 'Attribute::Handlers' => 0.78, #Attribute\Handlers.pm
3159 'attributes' => 0.06, #attributes.pm
3160 'attrs' => 1.01, #attrs.pm
3161 'AutoLoader' => '5.60', #AutoLoader.pm
3162 'AutoSplit' => 1.04, #AutoSplit.pm
3163 'autouse' => 1.03, #autouse.pm
3165 'B::Asmdata' => 1.01, #B\Asmdata.pm
3166 'B::Assembler' => 0.06, #B\Assembler.pm
3167 'B::Bblock' => 1.02, #B\Bblock.pm
3168 'B::Bytecode' => 1.01, #B\Bytecode.pm
3169 'B::C' => 1.02, #B\C.pm
3170 'B::CC' => '1.00', #B\CC.pm
3171 'B::Concise' => 0.56, #B\Concise.pm