← Index
NYTProf Performance Profile   « line view »
For ../dm5dm6_ex3
  Run on Tue Feb 24 07:41:47 2015
Reported on Tue Feb 24 07:41:51 2015

Filename/usr/lib/perl5/5.20.1/strict.pm
StatementsExecuted 6235 statements in 3.90ms
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
397211.92ms1.92msstrict::::bitsstrict::bits
3823823771.14ms3.00msstrict::::importstrict::import
1515947µs101µsstrict::::unimportstrict::unimport
11112µs12µsstrict::::CORE:regcompstrict::CORE:regcomp (opcode)
1112µs2µsstrict::::CORE:matchstrict::CORE:match (opcode)
Call graph for these subroutines as a Graphviz dot language file.
Line State
ments
Time
on line
Calls Time
in subs
Code
1package strict;
2
31300ns$strict::VERSION = "1.08";
4
5# Verify that we're called correctly so that strictures will work.
6121µs214µsunless ( __FILE__ =~ /(^|[\/\\])\Q${\__PACKAGE__}\E\.pmc?$/ ) {
# spent 12µs making 1 call to strict::CORE:regcomp # spent 2µs making 1 call to strict::CORE:match
7 # Can't use Carp, since Carp uses us!
8 my (undef, $f, $l) = caller;
9 die("Incorrect use of pragma '${\__PACKAGE__}' at $f line $l.\n");
10}
11
1211µsmy %bitmask = (
13refs => 0x00000002,
14subs => 0x00000200,
15vars => 0x00000400
16);
171500nsmy %explicit_bitmask = (
18refs => 0x00000020,
19subs => 0x00000040,
20vars => 0x00000080
21);
22
23
# spent 1.92ms within strict::bits which was called 397 times, avg 5µs/call: # 382 times (1.86ms+0s) by strict::import at line 44, avg 5µs/call # 15 times (54µs+0s) by strict::unimport at line 49, avg 4µs/call
sub bits {
24397102µs my $bits = 0;
2539740µs my @wrong;
26397200µs foreach my $s (@_) {
271150334µs if (exists $bitmask{$s}) {
281150449µs $^H |= $explicit_bitmask{$s};
29 }
30 else { push @wrong, $s };
311150444µs $bits |= $bitmask{$s} || 0;
32 }
3339780µs if (@wrong) {
34 require Carp;
35 Carp::croak("Unknown 'strict' tag(s) '@wrong'");
36 }
37397820µs $bits;
38}
39
401500nsmy @default_bits = qw(refs subs vars);
41
42
# spent 3.00ms (1.14+1.86) within strict::import which was called 382 times, avg 8µs/call: # once (23µs+5µs) by Date::Manip::TZ::etgmtp06::BEGIN@17 at line 17 of Date/Manip/TZ/etgmtp06.pm # once (4µs+17µs) by Date::Manip::TZ::afcair00::BEGIN@17 at line 17 of Date/Manip/TZ/afcair00.pm # once (15µs+6µs) by Date::Manip::TZ::afjoha00::BEGIN@17 at line 17 of Date/Manip/TZ/afjoha00.pm # once (6µs+13µs) by Date::Manip::TZ::ashebr00::BEGIN@17 at line 17 of Date/Manip/TZ/ashebr00.pm # once (3µs+15µs) by Date::Manip::TZ::ammexi00::BEGIN@17 at line 17 of Date/Manip/TZ/ammexi00.pm # once (3µs+15µs) by Date::Manip::TZ::ammart00::BEGIN@17 at line 17 of Date/Manip/TZ/ammart00.pm # once (13µs+5µs) by Date::Manip::TZ::ammeno00::BEGIN@17 at line 17 of Date/Manip/TZ/ammeno00.pm # once (3µs+14µs) by Date::Manip::TZ::aulind00::BEGIN@17 at line 17 of Date/Manip/TZ/aulind00.pm # once (3µs+14µs) by Date::Manip::TZ::andavi00::BEGIN@17 at line 17 of Date/Manip/TZ/andavi00.pm # once (11µs+5µs) by Date::Manip::TZ::wet00::BEGIN@17 at line 17 of Date/Manip/TZ/wet00.pm # once (11µs+4µs) by Date::Manip::TZ::amcanc00::BEGIN@17 at line 17 of Date/Manip/TZ/amcanc00.pm # once (10µs+5µs) by Date::Manip::TZ::eusama00::BEGIN@17 at line 17 of Date/Manip/TZ/eusama00.pm # once (10µs+4µs) by Date::Manip::TZ::askabu00::BEGIN@17 at line 17 of Date/Manip/TZ/askabu00.pm # once (2µs+12µs) by constant::BEGIN@3 at line 3 of constant.pm # once (6µs+9µs) by Date::Manip::TZ::pamidw00::BEGIN@17 at line 17 of Date/Manip/TZ/pamidw00.pm # once (5µs+9µs) by Date::Manip::TZ::asgaza00::BEGIN@17 at line 17 of Date/Manip/TZ/asgaza00.pm # once (5µs+8µs) by Date::Manip::Offset::off412::BEGIN@17 at line 17 of Date/Manip/Offset/off412.pm # once (5µs+9µs) by Date::Manip::Offset::off263::BEGIN@17 at line 17 of Date/Manip/Offset/off263.pm # once (4µs+10µs) by Fcntl::BEGIN@58 at line 58 of Fcntl.pm # once (5µs+8µs) by Date::Manip::Offset::off194::BEGIN@17 at line 17 of Date/Manip/Offset/off194.pm # once (5µs+8µs) by Date::Manip::Offset::off163::BEGIN@17 at line 17 of Date/Manip/Offset/off163.pm # once (5µs+8µs) by Date::Manip::Offset::off000::BEGIN@17 at line 17 of Date/Manip/Offset/off000.pm # once (4µs+9µs) by Date::Manip::Delta::BEGIN@19 at line 19 of Date/Manip/Delta.pm # once (5µs+7µs) by Date::Manip::Obj::BEGIN@11 at line 11 of Date/Manip/Obj.pm # once (4µs+7µs) by Date::Manip::Offset::off288::BEGIN@17 at line 17 of Date/Manip/Offset/off288.pm # once (6µs+4µs) by Date::Manip::TZ::ashong00::BEGIN@17 at line 17 of Date/Manip/TZ/ashong00.pm # once (4µs+7µs) by Date::Manip::Lang::english::BEGIN@11 at line 11 of Date/Manip/Lang/english.pm # once (3µs+8µs) by Date::Manip::TZ::ammont01::BEGIN@17 at line 17 of Date/Manip/TZ/ammont01.pm # once (3µs+8µs) by Date::Manip::TZ::aftrip00::BEGIN@17 at line 17 of Date/Manip/TZ/aftrip00.pm # once (3µs+8µs) by Date::Manip::TZ::eustoc00::BEGIN@17 at line 17 of Date/Manip/TZ/eustoc00.pm # once (3µs+7µs) by main::BEGIN@8 at line 8 of ../dm5dm6_ex3 # once (4µs+5µs) by Date::Manip::TZ::asirku00::BEGIN@17 at line 17 of Date/Manip/TZ/asirku00.pm # once (3µs+6µs) by Date::Manip::TZ::ammetl00::BEGIN@17 at line 17 of Date/Manip/TZ/ammetl00.pm # once (3µs+6µs) by Date::Manip::Lang::index::BEGIN@24 at line 24 of Date/Manip/Lang/index.pm # once (4µs+5µs) by Date::Manip::Date::BEGIN@1 at line 1 of Tie/Hash/NamedCapture.pm # once (3µs+5µs) by Date::Manip::TZ::amadak00::BEGIN@17 at line 17 of Date/Manip/TZ/amadak00.pm # once (3µs+5µs) by Date::Manip::Offset::off366::BEGIN@17 at line 17 of Date/Manip/Offset/off366.pm # once (3µs+5µs) by Config::BEGIN@9 at line 9 of Config.pm # once (3µs+5µs) by Date::Manip::Offset::off111::BEGIN@17 at line 17 of Date/Manip/Offset/off111.pm # once (4µs+5µs) by Date::Manip::TZ::euhels00::BEGIN@17 at line 17 of Date/Manip/TZ/euhels00.pm # once (3µs+5µs) by Date::Manip::TZ::afaccr00::BEGIN@17 at line 17 of Date/Manip/TZ/afaccr00.pm # once (3µs+5µs) by Date::Manip::TZ::atfaro00::BEGIN@17 at line 17 of Date/Manip/TZ/atfaro00.pm # once (3µs+5µs) by Date::Manip::TZ::asnico00::BEGIN@17 at line 17 of Date/Manip/TZ/asnico00.pm # once (3µs+5µs) by Date::Manip::TZ::amtoro00::BEGIN@17 at line 17 of Date/Manip/TZ/amtoro00.pm # once (3µs+5µs) by Exporter::Heavy::BEGIN@3 at line 3 of Exporter/Heavy.pm # once (3µs+5µs) by Date::Manip::TZ::amiqal00::BEGIN@17 at line 17 of Date/Manip/TZ/amiqal00.pm # once (3µs+5µs) by Date::Manip::Zones::BEGIN@16 at line 16 of Date/Manip/Zones.pm # once (3µs+5µs) by Date::Manip::TZ::aupert00::BEGIN@17 at line 17 of Date/Manip/TZ/aupert00.pm # once (3µs+5µs) by Date::Manip::TZ::afabid00::BEGIN@17 at line 17 of Date/Manip/TZ/afabid00.pm # once (3µs+5µs) by Date::Manip::TZ::amcres00::BEGIN@17 at line 17 of Date/Manip/TZ/amcres00.pm # once (3µs+5µs) by Date::Manip::TZ::asshan00::BEGIN@17 at line 17 of Date/Manip/TZ/asshan00.pm # once (3µs+5µs) by Date::Manip::TZ::asyaku00::BEGIN@17 at line 17 of Date/Manip/TZ/asyaku00.pm # once (3µs+5µs) by Date::Manip::TZ::asdama00::BEGIN@17 at line 17 of Date/Manip/TZ/asdama00.pm # once (3µs+5µs) by Date::Manip::TZ::ammeri00::BEGIN@17 at line 17 of Date/Manip/TZ/ammeri00.pm # once (3µs+5µs) by Date::Manip::TZ::amcent00::BEGIN@17 at line 17 of Date/Manip/TZ/amcent00.pm # once (3µs+5µs) by Date::Manip::TZ::euluxe00::BEGIN@17 at line 17 of Date/Manip/TZ/euluxe00.pm # once (3µs+5µs) by Date::Manip::TZ::eupari00::BEGIN@17 at line 17 of Date/Manip/TZ/eupari00.pm # once (3µs+5µs) by Date::Manip::TZ::eutira00::BEGIN@17 at line 17 of Date/Manip/TZ/eutira00.pm # once (3µs+5µs) by Date::Manip::TZ::amboa_00::BEGIN@17 at line 17 of Date/Manip/TZ/amboa_00.pm # once (3µs+5µs) by Date::Manip::TZ::eumalt00::BEGIN@17 at line 17 of Date/Manip/TZ/eumalt00.pm # once (3µs+5µs) by Date::Manip::TZ::euzuri00::BEGIN@17 at line 17 of Date/Manip/TZ/euzuri00.pm # once (3µs+5µs) by Date::Manip::TZ::amdetr00::BEGIN@17 at line 17 of Date/Manip/TZ/amdetr00.pm # once (3µs+5µs) by Date::Manip::TZ::k00::BEGIN@17 at line 17 of Date/Manip/TZ/k00.pm # once (3µs+5µs) by Date::Manip::TZ::amlima00::BEGIN@17 at line 17 of Date/Manip/TZ/amlima00.pm # once (3µs+5µs) by Date::Manip::TZ::amglac00::BEGIN@17 at line 17 of Date/Manip/TZ/amglac00.pm # once (3µs+5µs) by Time::HiRes::BEGIN@4 at line 4 of Time/HiRes.pm # once (3µs+5µs) by Date::Manip::TZ::aucurr00::BEGIN@17 at line 17 of Date/Manip/TZ/aucurr00.pm # once (3µs+5µs) by Date::Manip::TZ::amtell00::BEGIN@17 at line 17 of Date/Manip/TZ/amtell00.pm # once (3µs+5µs) by Date::Manip::TZ::astaip00::BEGIN@17 at line 17 of Date/Manip/TZ/astaip00.pm # once (3µs+5µs) by Encode::Alias::BEGIN@2 at line 2 of Encode/Alias.pm # once (3µs+5µs) by Date::Manip::TZ::amhava00::BEGIN@17 at line 17 of Date/Manip/TZ/amhava00.pm # once (3µs+5µs) by Date::Manip::TZ::pahono00::BEGIN@17 at line 17 of Date/Manip/TZ/pahono00.pm # once (3µs+5µs) by Date::Manip::TZ::asseou00::BEGIN@17 at line 17 of Date/Manip/TZ/asseou00.pm # once (3µs+5µs) by Date::Manip::TZ::asqata00::BEGIN@17 at line 17 of Date/Manip/TZ/asqata00.pm # once (3µs+5µs) by Date::Manip::Offset::off380::BEGIN@17 at line 17 of Date/Manip/Offset/off380.pm # once (3µs+5µs) by Date::Manip::TZ::patahi00::BEGIN@17 at line 17 of Date/Manip/TZ/patahi00.pm # once (3µs+5µs) by Date::Manip::TZ::ambeli00::BEGIN@17 at line 17 of Date/Manip/TZ/ambeli00.pm # once (3µs+5µs) by Date::Manip::TZ::ammace00::BEGIN@17 at line 17 of Date/Manip/TZ/ammace00.pm # once (3µs+5µs) by Date::Manip::TZ::ausydn00::BEGIN@17 at line 17 of Date/Manip/TZ/ausydn00.pm # once (3µs+5µs) by Encode::Config::BEGIN@7 at line 7 of Encode/Config.pm # once (3µs+5µs) by Date::Manip::TZ::eurome00::BEGIN@17 at line 17 of Date/Manip/TZ/eurome00.pm # once (3µs+5µs) by Date::Manip::TZ::amyell00::BEGIN@17 at line 17 of Date/Manip/TZ/amyell00.pm # once (3µs+5µs) by Date::Manip::TZ::askual00::BEGIN@17 at line 17 of Date/Manip/TZ/askual00.pm # once (3µs+5µs) by Date::Manip::TZ::antrol00::BEGIN@17 at line 17 of Date/Manip/TZ/antrol00.pm # once (3µs+5µs) by Date::Manip::TZ::anroth00::BEGIN@17 at line 17 of Date/Manip/TZ/anroth00.pm # once (3µs+5µs) by Date::Manip::TZ::panaur00::BEGIN@17 at line 17 of Date/Manip/TZ/panaur00.pm # once (3µs+5µs) by Date::Manip::TZ::eet00::BEGIN@17 at line 17 of Date/Manip/TZ/eet00.pm # once (3µs+5µs) by Date::Manip::TZ::ambuen00::BEGIN@17 at line 17 of Date/Manip/TZ/ambuen00.pm # once (3µs+4µs) by Encode::Encoding::BEGIN@4 at line 4 of Encode/Encoding.pm # once (3µs+5µs) by Date::Manip::TZ::assred00::BEGIN@17 at line 17 of Date/Manip/TZ/assred00.pm # once (3µs+5µs) by Date::Manip::TZ::amcuia00::BEGIN@17 at line 17 of Date/Manip/TZ/amcuia00.pm # once (3µs+5µs) by Date::Manip::TZ::amcata00::BEGIN@17 at line 17 of Date/Manip/TZ/amcata00.pm # once (3µs+5µs) by Date::Manip::TZ::inmaur00::BEGIN@17 at line 17 of Date/Manip/TZ/inmaur00.pm # once (3µs+5µs) by Date::Manip::TZ::asulaa00::BEGIN@17 at line 17 of Date/Manip/TZ/asulaa00.pm # once (3µs+5µs) by Date::Manip::TZ::assing00::BEGIN@17 at line 17 of Date/Manip/TZ/assing00.pm # once (3µs+5µs) by Date::Manip::TZ::eumona00::BEGIN@17 at line 17 of Date/Manip/TZ/eumona00.pm # once (3µs+5µs) by Date::Manip::TZ::ammana01::BEGIN@17 at line 17 of Date/Manip/TZ/ammana01.pm # once (3µs+5µs) by Date::Manip::Offset::off050::BEGIN@17 at line 17 of Date/Manip/Offset/off050.pm # once (3µs+5µs) by Date::Manip::TZ::aspont00::BEGIN@17 at line 17 of Date/Manip/TZ/aspont00.pm # once (3µs+5µs) by Date::Manip::TZ::ambois00::BEGIN@17 at line 17 of Date/Manip/TZ/ambois00.pm # once (3µs+5µs) by Date::Manip::TZ::amrain00::BEGIN@17 at line 17 of Date/Manip/TZ/amrain00.pm # once (3µs+5µs) by Date::Manip::TZ::asdili00::BEGIN@17 at line 17 of Date/Manip/TZ/asdili00.pm # once (3µs+5µs) by Date::Manip::TZ::amtiju00::BEGIN@17 at line 17 of Date/Manip/TZ/amtiju00.pm # once (3µs+5µs) by Date::Manip::TZ::eumins00::BEGIN@17 at line 17 of Date/Manip/TZ/eumins00.pm # once (3µs+5µs) by Date::Manip::TZ::euchis00::BEGIN@17 at line 17 of Date/Manip/TZ/euchis00.pm # once (3µs+5µs) by Date::Manip::Offset::off328::BEGIN@17 at line 17 of Date/Manip/Offset/off328.pm # once (3µs+5µs) by Date::Manip::Offset::off093::BEGIN@17 at line 17 of Date/Manip/Offset/off093.pm # once (3µs+5µs) by Date::Manip::TZ::astoky00::BEGIN@17 at line 17 of Date/Manip/TZ/astoky00.pm # once (3µs+5µs) by Date::Manip::TZ::amjuju00::BEGIN@17 at line 17 of Date/Manip/TZ/amjuju00.pm # once (3µs+5µs) by Date::Manip::TZ::atberm00::BEGIN@17 at line 17 of Date/Manip/TZ/atberm00.pm # once (3µs+5µs) by Date::Manip::TZ::amsant01::BEGIN@17 at line 17 of Date/Manip/TZ/amsant01.pm # once (3µs+5µs) by Date::Manip::TZ::aflago00::BEGIN@17 at line 17 of Date/Manip/TZ/aflago00.pm # once (3µs+5µs) by Date::Manip::TZ::eusimf00::BEGIN@17 at line 17 of Date/Manip/TZ/eusimf00.pm # once (3µs+5µs) by Date::Manip::TZ::euuzhg00::BEGIN@17 at line 17 of Date/Manip/TZ/euuzhg00.pm # once (3µs+5µs) by Date::Manip::TZ::amscor00::BEGIN@17 at line 17 of Date/Manip/TZ/amscor00.pm # once (3µs+5µs) by Date::Manip::TZ::amsao_00::BEGIN@17 at line 17 of Date/Manip/TZ/amsao_00.pm # once (3µs+5µs) by Date::Manip::TZ::amcaym00::BEGIN@17 at line 17 of Date/Manip/TZ/amcaym00.pm # once (3µs+5µs) by Date::Manip::TZ::amjama00::BEGIN@17 at line 17 of Date/Manip/TZ/amjama00.pm # once (3µs+5µs) by Date::Manip::TZ::amcord00::BEGIN@17 at line 17 of Date/Manip/TZ/amcord00.pm # once (3µs+5µs) by Date::Manip::TZ::amport02::BEGIN@17 at line 17 of Date/Manip/TZ/amport02.pm # once (3µs+5µs) by Date::Manip::TZ::amnew_01::BEGIN@17 at line 17 of Date/Manip/TZ/amnew_01.pm # once (3µs+4µs) by Date::Manip::Offset::off076::BEGIN@17 at line 17 of Date/Manip/Offset/off076.pm # once (3µs+5µs) by Date::Manip::TZ::amsalt00::BEGIN@17 at line 17 of Date/Manip/TZ/amsalt00.pm # once (3µs+4µs) by Date::Manip::TZ::amyaku00::BEGIN@17 at line 17 of Date/Manip/TZ/amyaku00.pm # once (3µs+5µs) by Date::Manip::TZ::amrio_00::BEGIN@17 at line 17 of Date/Manip/TZ/amrio_00.pm # once (3µs+5µs) by Date::Manip::TZ::atstan00::BEGIN@17 at line 17 of Date/Manip/TZ/atstan00.pm # once (3µs+5µs) by Date::Manip::TZ::afndja00::BEGIN@17 at line 17 of Date/Manip/TZ/afndja00.pm # once (3µs+4µs) by Date::Manip::TZ::amsan_00::BEGIN@17 at line 17 of Date/Manip/TZ/amsan_00.pm # once (3µs+5µs) by Date::Manip::TZ::asthim00::BEGIN@17 at line 17 of Date/Manip/TZ/asthim00.pm # once (3µs+5µs) by Date::Manip::TZ::amvinc00::BEGIN@17 at line 17 of Date/Manip/TZ/amvinc00.pm # once (3µs+5µs) by Date::Manip::TZ::amcaye00::BEGIN@17 at line 17 of Date/Manip/TZ/amcaye00.pm # once (3µs+5µs) by Date::Manip::TZ::asjeru00::BEGIN@17 at line 17 of Date/Manip/TZ/asjeru00.pm # once (3µs+5µs) by Date::Manip::TZ::amla_r00::BEGIN@17 at line 17 of Date/Manip/TZ/amla_r00.pm # once (3µs+5µs) by Date::Manip::TZ::afkhar00::BEGIN@17 at line 17 of Date/Manip/TZ/afkhar00.pm # once (3µs+5µs) by Date::Manip::TZ::ammont03::BEGIN@17 at line 17 of Date/Manip/TZ/ammont03.pm # once (3µs+5µs) by Date::Manip::TZ::amfort00::BEGIN@17 at line 17 of Date/Manip/TZ/amfort00.pm # once (3µs+5µs) by Date::Manip::TZ::aschit00::BEGIN@17 at line 17 of Date/Manip/TZ/aschit00.pm # once (3µs+5µs) by Date::Manip::TZ::asaqta00::BEGIN@17 at line 17 of Date/Manip/TZ/asaqta00.pm # once (3µs+5µs) by Date::Manip::Offset::off395::BEGIN@17 at line 17 of Date/Manip/Offset/off395.pm # once (3µs+5µs) by Date::Manip::TZ::amhali00::BEGIN@17 at line 17 of Date/Manip/TZ/amhali00.pm # once (3µs+4µs) by Date::Manip::TZ::askhan00::BEGIN@17 at line 17 of Date/Manip/TZ/askhan00.pm # once (3µs+5µs) by Date::Manip::TZ::paefat00::BEGIN@17 at line 17 of Date/Manip/TZ/paefat00.pm # once (3µs+5µs) by Date::Manip::TZ::aubris00::BEGIN@17 at line 17 of Date/Manip/TZ/aubris00.pm # once (3µs+5µs) by Date::Manip::TZ::amtucu00::BEGIN@17 at line 17 of Date/Manip/TZ/amtucu00.pm # once (3µs+5µs) by Date::Manip::TZ::amvanc00::BEGIN@17 at line 17 of Date/Manip/TZ/amvanc00.pm # once (3µs+5µs) by Date::Manip::TZ::amel_s00::BEGIN@17 at line 17 of Date/Manip/TZ/amel_s00.pm # once (3µs+5µs) by Date::Manip::TZ::asmaka00::BEGIN@17 at line 17 of Date/Manip/TZ/asmaka00.pm # once (3µs+5µs) by Date::Manip::TZ::eubelg00::BEGIN@17 at line 17 of Date/Manip/TZ/eubelg00.pm # once (3µs+5µs) by Date::Manip::TZ::f00::BEGIN@17 at line 17 of Date/Manip/TZ/f00.pm # once (3µs+4µs) by Date::Manip::TZ::met00::BEGIN@17 at line 17 of Date/Manip/TZ/met00.pm # once (3µs+5µs) by Date::Manip::TZ::pasaip00::BEGIN@17 at line 17 of Date/Manip/TZ/pasaip00.pm # once (2µs+5µs) by Date::Manip::TZ::papala00::BEGIN@17 at line 17 of Date/Manip/TZ/papala00.pm # once (3µs+5µs) by Date::Manip::TZ::amnew_00::BEGIN@17 at line 17 of Date/Manip/TZ/amnew_00.pm # once (3µs+5µs) by Date::Manip::TZ::afel_a00::BEGIN@17 at line 17 of Date/Manip/TZ/afel_a00.pm # once (3µs+5µs) by Date::Manip::TZ::asyeka00::BEGIN@17 at line 17 of Date/Manip/TZ/asyeka00.pm # once (3µs+5µs) by Date::Manip::TZ::afwind00::BEGIN@17 at line 17 of Date/Manip/TZ/afwind00.pm # once (3µs+5µs) by Date::Manip::TZ::asyere00::BEGIN@17 at line 17 of Date/Manip/TZ/asyere00.pm # once (2µs+5µs) by Date::Manip::TZ::paguad00::BEGIN@17 at line 17 of Date/Manip/TZ/paguad00.pm # once (2µs+5µs) by Date::Manip::TZ::amregi00::BEGIN@17 at line 17 of Date/Manip/TZ/amregi00.pm # once (3µs+5µs) by Date::Manip::TZ::auadel00::BEGIN@17 at line 17 of Date/Manip/TZ/auadel00.pm # once (3µs+5µs) by Date::Manip::TZ::amcamb00::BEGIN@17 at line 17 of Date/Manip/TZ/amcamb00.pm # once (3µs+5µs) by Date::Manip::TZ::euprag00::BEGIN@17 at line 17 of Date/Manip/TZ/euprag00.pm # once (3µs+5µs) by Date::Manip::TZ::etgmtm10::BEGIN@17 at line 17 of Date/Manip/TZ/etgmtm10.pm # once (3µs+5µs) by Date::Manip::TZ::asho_c00::BEGIN@17 at line 17 of Date/Manip/TZ/asho_c00.pm # once (3µs+5µs) by Date::Manip::TZ::aftuni00::BEGIN@17 at line 17 of Date/Manip/TZ/aftuni00.pm # once (3µs+5µs) by Date::Manip::TZ::eugibr00::BEGIN@17 at line 17 of Date/Manip/TZ/eugibr00.pm # once (3µs+5µs) by Date::Manip::TZ::c00::BEGIN@17 at line 17 of Date/Manip/TZ/c00.pm # once (3µs+5µs) by Date::Manip::TZ::asamma00::BEGIN@17 at line 17 of Date/Manip/TZ/asamma00.pm # once (3µs+5µs) by Date::Manip::TZ::ambahi01::BEGIN@17 at line 17 of Date/Manip/TZ/ambahi01.pm # once (3µs+5µs) by Date::Manip::TZ::atazor00::BEGIN@17 at line 17 of Date/Manip/TZ/atazor00.pm # once (3µs+4µs) by Date::Manip::TZ::amwinn00::BEGIN@17 at line 17 of Date/Manip/TZ/amwinn00.pm # once (3µs+5µs) by Date::Manip::TZ::amport01::BEGIN@17 at line 17 of Date/Manip/TZ/amport01.pm # once (2µs+5µs) by IO::File::BEGIN@128 at line 128 of IO/File.pm # once (3µs+5µs) by Date::Manip::TZ::asbagh00::BEGIN@17 at line 17 of Date/Manip/TZ/asbagh00.pm # once (3µs+5µs) by Date::Manip::TZ::papohn00::BEGIN@17 at line 17 of Date/Manip/TZ/papohn00.pm # once (3µs+5µs) by Date::Manip::TZ::etgmtp04::BEGIN@17 at line 17 of Date/Manip/TZ/etgmtp04.pm # once (3µs+5µs) by Date::Manip::TZ::ambeul00::BEGIN@17 at line 17 of Date/Manip/TZ/ambeul00.pm # once (3µs+5µs) by Date::Manip::TZ::amdenv00::BEGIN@17 at line 17 of Date/Manip/TZ/amdenv00.pm # once (3µs+4µs) by Date::Manip::TZ::paapia00::BEGIN@17 at line 17 of Date/Manip/TZ/paapia00.pm # once (3µs+5µs) by Date::Manip::TZ::papitc00::BEGIN@17 at line 17 of Date/Manip/TZ/papitc00.pm # once (3µs+4µs) by Date::Manip::TZ::ampara00::BEGIN@17 at line 17 of Date/Manip/TZ/ampara00.pm # once (3µs+4µs) by Encode::BEGIN@5 at line 5 of Encode.pm # once (3µs+5µs) by Date::Manip::TZ::ammonc00::BEGIN@17 at line 17 of Date/Manip/TZ/ammonc00.pm # once (3µs+5µs) by Date::Manip::TZ::amreso00::BEGIN@17 at line 17 of Date/Manip/TZ/amreso00.pm # once (3µs+4µs) by Date::Manip::TZ::euoslo00::BEGIN@17 at line 17 of Date/Manip/TZ/euoslo00.pm # once (3µs+5µs) by Date::Manip::TZ::anpalm00::BEGIN@17 at line 17 of Date/Manip/TZ/anpalm00.pm # once (3µs+5µs) by Date::Manip::TZ::amchih00::BEGIN@17 at line 17 of Date/Manip/TZ/amchih00.pm # once (3µs+5µs) by Date::Manip::TZ::ambarb00::BEGIN@17 at line 17 of Date/Manip/TZ/ambarb00.pm # once (3µs+5µs) by Date::Manip::TZ::euriga00::BEGIN@17 at line 17 of Date/Manip/TZ/euriga00.pm # once (3µs+5µs) by Date::Manip::TZ::ampang00::BEGIN@17 at line 17 of Date/Manip/TZ/ampang00.pm # once (3µs+5µs) by Date::Manip::TZ::amswif00::BEGIN@17 at line 17 of Date/Manip/TZ/amswif00.pm # once (3µs+5µs) by Date::Manip::TZ::amwina00::BEGIN@17 at line 17 of Date/Manip/TZ/amwina00.pm # once (3µs+5µs) by Date::Manip::TZ::asashg00::BEGIN@17 at line 17 of Date/Manip/TZ/asashg00.pm # once (3µs+5µs) by Date::Manip::TZ::eubuch00::BEGIN@17 at line 17 of Date/Manip/TZ/eubuch00.pm # once (3µs+5µs) by Date::Manip::TZ::asbaku00::BEGIN@17 at line 17 of Date/Manip/TZ/asbaku00.pm # once (3µs+5µs) by Date::Manip::TZ::audarw00::BEGIN@17 at line 17 of Date/Manip/TZ/audarw00.pm # once (3µs+5µs) by Date::Manip::TZ::etgmtp02::BEGIN@17 at line 17 of Date/Manip/TZ/etgmtp02.pm # once (3µs+4µs) by Date::Manip::Offset::off021::BEGIN@17 at line 17 of Date/Manip/Offset/off021.pm # once (3µs+5µs) by Date::Manip::TZ::asbeir00::BEGIN@17 at line 17 of Date/Manip/TZ/asbeir00.pm # once (3µs+4µs) by Date::Manip::TZ::etgmtp05::BEGIN@17 at line 17 of Date/Manip/TZ/etgmtp05.pm # once (3µs+4µs) by Date::Manip::TZ::afmapu00::BEGIN@17 at line 17 of Date/Manip/TZ/afmapu00.pm # once (3µs+5µs) by Date::Manip::TZ::aulord00::BEGIN@17 at line 17 of Date/Manip/TZ/aulord00.pm # once (3µs+5µs) by Date::Manip::TZ::ammana00::BEGIN@17 at line 17 of Date/Manip/TZ/ammana00.pm # once (3µs+4µs) by Date::Manip::TZ::amdaws00::BEGIN@17 at line 17 of Date/Manip/TZ/amdaws00.pm # once (3µs+4µs) by Date::Manip::TZ::asustm00::BEGIN@17 at line 17 of Date/Manip/TZ/asustm00.pm # once (3µs+5µs) by Date::Manip::TZ::amdanm00::BEGIN@17 at line 17 of Date/Manip/TZ/amdanm00.pm # once (3µs+5µs) by Date::Manip::TZ::amchic00::BEGIN@17 at line 17 of Date/Manip/TZ/amchic00.pm # once (3µs+5µs) by Date::Manip::TZ::asvlad00::BEGIN@17 at line 17 of Date/Manip/TZ/asvlad00.pm # once (2µs+5µs) by Date::Manip::TZ::pakosr00::BEGIN@17 at line 17 of Date/Manip/TZ/pakosr00.pm # once (3µs+5µs) by Date::Manip::TZ::amgodt00::BEGIN@17 at line 17 of Date/Manip/TZ/amgodt00.pm # once (3µs+4µs) by Date::Manip::TZ::amport00::BEGIN@17 at line 17 of Date/Manip/TZ/amport00.pm # once (3µs+4µs) by Date::Manip::TZ::o00::BEGIN@17 at line 17 of Date/Manip/TZ/o00.pm # once (3µs+4µs) by Date::Manip::TZ::amherm00::BEGIN@17 at line 17 of Date/Manip/TZ/amherm00.pm # once (3µs+4µs) by Date::Manip::TZ::askuch00::BEGIN@17 at line 17 of Date/Manip/TZ/askuch00.pm # once (3µs+4µs) by Date::Manip::TZ::euvolg00::BEGIN@17 at line 17 of Date/Manip/TZ/euvolg00.pm # once (3µs+4µs) by Date::Manip::TZ::amknox00::BEGIN@17 at line 17 of Date/Manip/TZ/amknox00.pm # once (3µs+5µs) by Date::Manip::TZ::afmonr00::BEGIN@17 at line 17 of Date/Manip/TZ/afmonr00.pm # once (3µs+5µs) by Date::Manip::TZ::paeast00::BEGIN@17 at line 17 of Date/Manip/TZ/paeast00.pm # once (3µs+5µs) by Date::Manip::TZ::euviln00::BEGIN@17 at line 17 of Date/Manip/TZ/euviln00.pm # once (3µs+4µs) by Date::Manip::TZ::amsant02::BEGIN@17 at line 17 of Date/Manip/TZ/amsant02.pm # once (3µs+5µs) by Date::Manip::TZ::euwars00::BEGIN@17 at line 17 of Date/Manip/TZ/euwars00.pm # once (3µs+4µs) by Date::Manip::TZ::asmaga00::BEGIN@17 at line 17 of Date/Manip/TZ/asmaga00.pm # once (2µs+5µs) by Date::Manip::TZ::BEGIN@20 at line 20 of Date/Manip/TZ.pm # once (3µs+4µs) by Date::Manip::TZ::asoral00::BEGIN@17 at line 17 of Date/Manip/TZ/asoral00.pm # once (3µs+5µs) by Date::Manip::TZ::euzapo00::BEGIN@17 at line 17 of Date/Manip/TZ/euzapo00.pm # once (3µs+4µs) by Date::Manip::TZ::atcana00::BEGIN@17 at line 17 of Date/Manip/TZ/atcana00.pm # once (3µs+4µs) by Date::Manip::TZ::asmaca00::BEGIN@17 at line 17 of Date/Manip/TZ/asmaca00.pm # once (3µs+4µs) by Date::Manip::TZ::pagala00::BEGIN@17 at line 17 of Date/Manip/TZ/pagala00.pm # once (2µs+5µs) by Date::Manip::TZ::asjaya00::BEGIN@17 at line 17 of Date/Manip/TZ/asjaya00.pm # once (3µs+4µs) by Date::Manip::TZ::amblan00::BEGIN@17 at line 17 of Date/Manip/TZ/amblan00.pm # once (3µs+5µs) by Date::Manip::TZ::atreyk00::BEGIN@17 at line 17 of Date/Manip/TZ/atreyk00.pm # once (3µs+4µs) by Date::Manip::TZ::eusofi00::BEGIN@17 at line 17 of Date/Manip/TZ/eusofi00.pm # once (3µs+4µs) by Date::Manip::TZ::amcost00::BEGIN@17 at line 17 of Date/Manip/TZ/amcost00.pm # once (3µs+4µs) by Date::Manip::TZ::amnipi00::BEGIN@17 at line 17 of Date/Manip/TZ/amnipi00.pm # once (3µs+4µs) by Date::Manip::TZ::eumosc00::BEGIN@17 at line 17 of Date/Manip/TZ/eumosc00.pm # once (3µs+4µs) by Date::Manip::TZ::amjune00::BEGIN@17 at line 17 of Date/Manip/TZ/amjune00.pm # once (3µs+4µs) by Date::Manip::TZ::eubuda00::BEGIN@17 at line 17 of Date/Manip/TZ/eubuda00.pm # once (2µs+5µs) by Date::Manip::TZ::amojin00::BEGIN@17 at line 17 of Date/Manip/TZ/amojin00.pm # once (3µs+5µs) by Date::Manip::TZ::eumadr00::BEGIN@17 at line 17 of Date/Manip/TZ/eumadr00.pm # once (3µs+4µs) by Date::Manip::TZ::ambele00::BEGIN@17 at line 17 of Date/Manip/TZ/ambele00.pm # once (3µs+4µs) by Date::Manip::TZ::assakh00::BEGIN@17 at line 17 of Date/Manip/TZ/assakh00.pm # once (2µs+5µs) by Date::Manip::TZ::eulisb00::BEGIN@17 at line 17 of Date/Manip/TZ/eulisb00.pm # once (2µs+5µs) by Date::Manip::TZ::q00::BEGIN@17 at line 17 of Date/Manip/TZ/q00.pm # once (3µs+4µs) by Date::Manip::TZ::afalgi00::BEGIN@17 at line 17 of Date/Manip/TZ/afalgi00.pm # once (3µs+4µs) by Date::Manip::TZ::asaqto00::BEGIN@17 at line 17 of Date/Manip/TZ/asaqto00.pm # once (3µs+4µs) by Date::Manip::TZ::amguay00::BEGIN@17 at line 17 of Date/Manip/TZ/amguay00.pm # once (3µs+4µs) by Date::Manip::TZ::assama00::BEGIN@17 at line 17 of Date/Manip/TZ/assama00.pm # once (3µs+4µs) by Date::Manip::TZ::auhoba00::BEGIN@17 at line 17 of Date/Manip/TZ/auhoba00.pm # once (3µs+4µs) by Date::Manip::TZ::amcamp00::BEGIN@17 at line 17 of Date/Manip/TZ/amcamp00.pm # once (3µs+4µs) by Date::Manip::TZ::paboug00::BEGIN@17 at line 17 of Date/Manip/TZ/paboug00.pm # once (3µs+4µs) by Date::Manip::TZ::ammata00::BEGIN@17 at line 17 of Date/Manip/TZ/ammata00.pm # once (3µs+4µs) by Date::Manip::TZ::amatik00::BEGIN@17 at line 17 of Date/Manip/TZ/amatik00.pm # once (3µs+4µs) by Date::Manip::TZ::amnome00::BEGIN@17 at line 17 of Date/Manip/TZ/amnome00.pm # once (3µs+4µs) by Date::Manip::TZ::amedmo00::BEGIN@17 at line 17 of Date/Manip/TZ/amedmo00.pm # once (3µs+4µs) by Date::Manip::TZ::amwhit00::BEGIN@17 at line 17 of Date/Manip/TZ/amwhit00.pm # once (3µs+4µs) by Date::Manip::TZ::etgmt00::BEGIN@17 at line 17 of Date/Manip/TZ/etgmt00.pm # once (3µs+4µs) by Date::Manip::TZ::euando00::BEGIN@17 at line 17 of Date/Manip/TZ/euando00.pm # once (3µs+4µs) by Date::Manip::TZ::astbil00::BEGIN@17 at line 17 of Date/Manip/TZ/astbil00.pm # once (3µs+4µs) by Date::Manip::TZ::amsant03::BEGIN@17 at line 17 of Date/Manip/TZ/amsant03.pm # once (3µs+4µs) by Date::Manip::TZ::aumelb00::BEGIN@17 at line 17 of Date/Manip/TZ/aumelb00.pm # once (3µs+4µs) by Date::Manip::TZ::askara00::BEGIN@17 at line 17 of Date/Manip/TZ/askara00.pm # once (3µs+4µs) by Date::Manip::TZ::etgmtm11::BEGIN@17 at line 17 of Date/Manip/TZ/etgmtm11.pm # once (3µs+4µs) by Date::Manip::TZ::euvien00::BEGIN@17 at line 17 of Date/Manip/TZ/euvien00.pm # once (3µs+4µs) by Date::Manip::TZ::askamc00::BEGIN@17 at line 17 of Date/Manip/TZ/askamc00.pm # once (3µs+4µs) by Date::Manip::TZ::ammiqu00::BEGIN@17 at line 17 of Date/Manip/TZ/ammiqu00.pm # once (2µs+5µs) by Date::Manip::TZ::inreun00::BEGIN@17 at line 17 of Date/Manip/TZ/inreun00.pm # once (3µs+4µs) by Date::Manip::TZ::astehr00::BEGIN@17 at line 17 of Date/Manip/TZ/astehr00.pm # once (3µs+4µs) by Date::Manip::TZ::amasun00::BEGIN@17 at line 17 of Date/Manip/TZ/amasun00.pm # once (2µs+5µs) by Date::Manip::TZ::v00::BEGIN@17 at line 17 of Date/Manip/TZ/v00.pm # once (3µs+4µs) by Date::Manip::TZ::aspyon00::BEGIN@17 at line 17 of Date/Manip/TZ/aspyon00.pm # once (3µs+4µs) by Date::Manip::TZ::amcura00::BEGIN@17 at line 17 of Date/Manip/TZ/amcura00.pm # once (3µs+4µs) by Date::Manip::TZ::amlos_00::BEGIN@17 at line 17 of Date/Manip/TZ/amlos_00.pm # once (3µs+4µs) by Date::Manip::TZ::amushu00::BEGIN@17 at line 17 of Date/Manip/TZ/amushu00.pm # once (3µs+4µs) by Date::Manip::TZ::amindi00::BEGIN@17 at line 17 of Date/Manip/TZ/amindi00.pm # once (2µs+5µs) by Date::Manip::TZ::etgmtp11::BEGIN@17 at line 17 of Date/Manip/TZ/etgmtp11.pm # once (2µs+5µs) by Date::Manip::TZ::euista00::BEGIN@17 at line 17 of Date/Manip/TZ/euista00.pm # once (3µs+4µs) by Date::Manip::TZ::eulond00::BEGIN@17 at line 17 of Date/Manip/TZ/eulond00.pm # once (3µs+4µs) by Date::Manip::TZ::amnass00::BEGIN@17 at line 17 of Date/Manip/TZ/amnass00.pm # once (3µs+4µs) by Date::Manip::TZ::amdaws01::BEGIN@17 at line 17 of Date/Manip/TZ/amdaws01.pm # once (3µs+4µs) by Date::Manip::TZ::amarag00::BEGIN@17 at line 17 of Date/Manip/TZ/amarag00.pm # once (2µs+5µs) by Date::Manip::TZ::euberl00::BEGIN@17 at line 17 of Date/Manip/TZ/euberl00.pm # once (3µs+4µs) by Date::Manip::TZ::x00::BEGIN@17 at line 17 of Date/Manip/TZ/x00.pm # once (3µs+4µs) by Date::Manip::TZ::ampana00::BEGIN@17 at line 17 of Date/Manip/TZ/ampana00.pm # once (2µs+4µs) by Date::Manip::TZ::amthul00::BEGIN@17 at line 17 of Date/Manip/TZ/amthul00.pm # once (3µs+4µs) by Date::Manip::TZ::euamst00::BEGIN@17 at line 17 of Date/Manip/TZ/euamst00.pm # once (3µs+4µs) by Date::Manip::TZ::asmani00::BEGIN@17 at line 17 of Date/Manip/TZ/asmani00.pm # once (3µs+4µs) by Date::Manip::TZ::eutall00::BEGIN@17 at line 17 of Date/Manip/TZ/eutall00.pm # once (2µs+4µs) by Date::Manip::TZ::eucope00::BEGIN@17 at line 17 of Date/Manip/TZ/eucope00.pm # once (3µs+4µs) by Date::Manip::TZ::asanad00::BEGIN@17 at line 17 of Date/Manip/TZ/asanad00.pm # once (3µs+4µs) by Date::Manip::TZ::euathe00::BEGIN@17 at line 17 of Date/Manip/TZ/euathe00.pm # once (3µs+4µs) by Date::Manip::TZ::etgmtm08::BEGIN@17 at line 17 of Date/Manip/TZ/etgmtm08.pm # once (3µs+4µs) by Date::Manip::TZ::n00::BEGIN@17 at line 17 of Date/Manip/TZ/n00.pm # once (3µs+4µs) by Date::Manip::TZ::asdhak00::BEGIN@17 at line 17 of Date/Manip/TZ/asdhak00.pm # once (3µs+4µs) by Date::Manip::TZ::amphoe00::BEGIN@17 at line 17 of Date/Manip/TZ/amphoe00.pm # once (3µs+4µs) by Date::Manip::TZ::p00::BEGIN@17 at line 17 of Date/Manip/TZ/p00.pm # once (3µs+4µs) by Date::Manip::TZ::asrang00::BEGIN@17 at line 17 of Date/Manip/TZ/asrang00.pm # once (3µs+4µs) by Date::Manip::TZ::g00::BEGIN@17 at line 17 of Date/Manip/TZ/g00.pm # once (3µs+4µs) by Date::Manip::TZ::afnair00::BEGIN@17 at line 17 of Date/Manip/TZ/afnair00.pm # once (2µs+4µs) by Date::Manip::TZ::ampete00::BEGIN@17 at line 17 of Date/Manip/TZ/ampete00.pm # once (2µs+4µs) by Date::Manip::TZ::amanti00::BEGIN@17 at line 17 of Date/Manip/TZ/amanti00.pm # once (3µs+4µs) by Date::Manip::TZ::eudubl00::BEGIN@17 at line 17 of Date/Manip/TZ/eudubl00.pm # once (3µs+4µs) by Date::Manip::TZ::ansyow00::BEGIN@17 at line 17 of Date/Manip/TZ/ansyow00.pm # once (3µs+4µs) by Date::Manip::TZ::pakiri00::BEGIN@17 at line 17 of Date/Manip/TZ/pakiri00.pm # once (3µs+4µs) by Date::Manip::TZ::amsitk00::BEGIN@17 at line 17 of Date/Manip/TZ/amsitk00.pm # once (2µs+5µs) by Date::Manip::TZ::amgran00::BEGIN@17 at line 17 of Date/Manip/TZ/amgran00.pm # once (2µs+4µs) by Date::Manip::TZ::amloui00::BEGIN@17 at line 17 of Date/Manip/TZ/amloui00.pm # once (3µs+4µs) by Date::Manip::TZ::ammont02::BEGIN@17 at line 17 of Date/Manip/TZ/ammont02.pm # once (2µs+4µs) by Date::Manip::TZ::askath00::BEGIN@17 at line 17 of Date/Manip/TZ/askath00.pm # once (3µs+4µs) by Date::Manip::TZ::eukiev00::BEGIN@17 at line 17 of Date/Manip/TZ/eukiev00.pm # once (3µs+4µs) by Date::Manip::TZ::ameiru00::BEGIN@17 at line 17 of Date/Manip/TZ/ameiru00.pm # once (3µs+4µs) by Date::Manip::TZ::ancase00::BEGIN@17 at line 17 of Date/Manip/TZ/ancase00.pm # once (2µs+4µs) by Date::Manip::TZ::etgmtm12::BEGIN@17 at line 17 of Date/Manip/TZ/etgmtm12.pm # once (2µs+4µs) by Date::Manip::TZ::anmaws00::BEGIN@17 at line 17 of Date/Manip/TZ/anmaws00.pm # once (3µs+4µs) by Date::Manip::TZ::amrio_01::BEGIN@17 at line 17 of Date/Manip/TZ/amrio_01.pm # once (3µs+4µs) by Date::Manip::TZ::amla_p00::BEGIN@17 at line 17 of Date/Manip/TZ/amla_p00.pm # once (3µs+4µs) by Date::Manip::TZ::asduba00::BEGIN@17 at line 17 of Date/Manip/TZ/asduba00.pm # once (2µs+4µs) by Date::Manip::TZ::amsant00::BEGIN@17 at line 17 of Date/Manip/TZ/amsant00.pm # once (2µs+4µs) by Date::Manip::TZ::d00::BEGIN@17 at line 17 of Date/Manip/TZ/d00.pm # once (3µs+4µs) by Date::Manip::TZ::inmahe00::BEGIN@17 at line 17 of Date/Manip/TZ/inmahe00.pm # once (3µs+4µs) by Date::Manip::TZ::ut00::BEGIN@17 at line 17 of Date/Manip/TZ/ut00.pm # once (2µs+4µs) by Date::Manip::TZ::amgoos00::BEGIN@17 at line 17 of Date/Manip/TZ/amgoos00.pm # once (3µs+4µs) by Date::Manip::TZ::panoum00::BEGIN@17 at line 17 of Date/Manip/TZ/panoum00.pm # once (3µs+4µs) by Date::Manip::TZ::inkerg00::BEGIN@17 at line 17 of Date/Manip/TZ/inkerg00.pm # once (3µs+4µs) by Date::Manip::TZ::aschoi00::BEGIN@17 at line 17 of Date/Manip/TZ/aschoi00.pm # once (3µs+4µs) by Date::Manip::TZ::ambahi00::BEGIN@17 at line 17 of Date/Manip/TZ/ambahi00.pm # once (2µs+4µs) by Date::Manip::TZ::amveva00::BEGIN@17 at line 17 of Date/Manip/TZ/amveva00.pm # once (3µs+4µs) by Date::Manip::TZ::afcasa00::BEGIN@17 at line 17 of Date/Manip/TZ/afcasa00.pm # once (3µs+4µs) by Date::Manip::TZ::amguat00::BEGIN@17 at line 17 of Date/Manip/TZ/amguat00.pm # once (3µs+4µs) by Date::Manip::TZ::amanch00::BEGIN@17 at line 17 of Date/Manip/TZ/amanch00.pm # once (3µs+4µs) by Date::Manip::TZ::etgmtp00::BEGIN@17 at line 17 of Date/Manip/TZ/etgmtp00.pm # once (3µs+4µs) by Date::Manip::TZ::ambogo00::BEGIN@17 at line 17 of Date/Manip/TZ/ambogo00.pm # once (3µs+4µs) by Date::Manip::TZ::pakwaj00::BEGIN@17 at line 17 of Date/Manip/TZ/pakwaj00.pm # once (3µs+4µs) by Date::Manip::TZ::amtegu00::BEGIN@17 at line 17 of Date/Manip/TZ/amtegu00.pm # once (3µs+4µs) by Date::Manip::TZ::cet00::BEGIN@17 at line 17 of Date/Manip/TZ/cet00.pm # once (3µs+4µs) by Date::Manip::TZ::etgmtm07::BEGIN@17 at line 17 of Date/Manip/TZ/etgmtm07.pm # once (3µs+4µs) by Date::Manip::TZ::asjaka00::BEGIN@17 at line 17 of Date/Manip/TZ/asjaka00.pm # once (2µs+4µs) by Date::Manip::TZ::asqyzy00::BEGIN@17 at line 17 of Date/Manip/TZ/asqyzy00.pm # once (3µs+4µs) by Date::Manip::TZ::amcara00::BEGIN@17 at line 17 of Date/Manip/TZ/amcara00.pm # once (3µs+4µs) by Date::Manip::TZ::amreci00::BEGIN@17 at line 17 of Date/Manip/TZ/amreci00.pm # once (2µs+4µs) by Date::Manip::TZ::atmade00::BEGIN@17 at line 17 of Date/Manip/TZ/atmade00.pm # once (2µs+4µs) by Date::Manip::TZ::amguya00::BEGIN@17 at line 17 of Date/Manip/TZ/amguya00.pm # once (3µs+4µs) by Date::Manip::TZ::ammend00::BEGIN@17 at line 17 of Date/Manip/TZ/ammend00.pm # once (2µs+5µs) by IO::Handle::BEGIN@264 at line 264 of IO/Handle.pm # once (3µs+4µs) by Date::Manip::TZ::amthun00::BEGIN@17 at line 17 of Date/Manip/TZ/amthun00.pm # once (3µs+4µs) by Date::Manip::TZ::ascolo00::BEGIN@17 at line 17 of Date/Manip/TZ/ascolo00.pm # once (2µs+4µs) by Date::Manip::TZ::afbiss00::BEGIN@17 at line 17 of Date/Manip/TZ/afbiss00.pm # once (3µs+4µs) by Date::Manip::TZ::amsan_01::BEGIN@17 at line 17 of Date/Manip/TZ/amsan_01.pm # once (3µs+4µs) by Date::Manip::TZ::aubrok00::BEGIN@17 at line 17 of Date/Manip/TZ/aubrok00.pm # once (3µs+4µs) by Date::Manip::TZ::aminuv00::BEGIN@17 at line 17 of Date/Manip/TZ/aminuv00.pm # once (3µs+4µs) by Date::Manip::TZ::afceut00::BEGIN@17 at line 17 of Date/Manip/TZ/afceut00.pm # once (2µs+4µs) by Date::Manip::TZ::utc00::BEGIN@17 at line 17 of Date/Manip/TZ/utc00.pm # once (3µs+4µs) by Date::Manip::TZ::anvost00::BEGIN@17 at line 17 of Date/Manip/TZ/anvost00.pm # once (2µs+4µs) by Date::Manip::TZ::eukali00::BEGIN@17 at line 17 of Date/Manip/TZ/eukali00.pm # once (2µs+4µs) by Date::Manip::TZ::eubrus00::BEGIN@17 at line 17 of Date/Manip/TZ/eubrus00.pm # once (3µs+4µs) by Date::Manip::TZ::ampuer00::BEGIN@17 at line 17 of Date/Manip/TZ/ampuer00.pm # once (2µs+4µs) by Date::Manip::TZ::amrank00::BEGIN@17 at line 17 of Date/Manip/TZ/amrank00.pm # once (3µs+4µs) by Date::Manip::TZ::andumo00::BEGIN@17 at line 17 of Date/Manip/TZ/andumo00.pm # once (2µs+4µs) by Date::Manip::TZ::h00::BEGIN@17 at line 17 of Date/Manip/TZ/h00.pm # once (3µs+4µs) by Date::Manip::TZ::ammont00::BEGIN@17 at line 17 of Date/Manip/TZ/ammont00.pm # once (2µs+4µs) by Date::Manip::TZ::pararo00::BEGIN@17 at line 17 of Date/Manip/TZ/pararo00.pm # once (2µs+4µs) by Date::Manip::TZ::anmacq00::BEGIN@17 at line 17 of Date/Manip/TZ/anmacq00.pm # once (2µs+4µs) by Date::Manip::Base::BEGIN@19 at line 19 of Date/Manip/Base.pm # once (2µs+5µs) by Date::Manip::TZ_Base::BEGIN@11 at line 11 of Date/Manip/TZ_Base.pm # once (2µs+4µs) by Date::Manip::Date::BEGIN@19 at line 19 of Date/Manip/Date.pm # once (2µs+4µs) by Date::Manip::TZ::etgmtm01::BEGIN@17 at line 17 of Date/Manip/TZ/etgmtm01.pm # once (3µs+4µs) by Date::Manip::TZ::pamaju00::BEGIN@17 at line 17 of Date/Manip/TZ/pamaju00.pm # once (3µs+4µs) by Date::Manip::TZ::z00::BEGIN@17 at line 17 of Date/Manip/TZ/z00.pm # once (3µs+4µs) by Date::Manip::TZ::asriya00::BEGIN@17 at line 17 of Date/Manip/TZ/asriya00.pm # once (2µs+4µs) by Carp::BEGIN@4 at line 4 of Carp.pm # once (2µs+4µs) by Date::Manip::TZ::e00::BEGIN@17 at line 17 of Date/Manip/TZ/e00.pm # once (2µs+4µs) by Date::Manip::TZ::askolk00::BEGIN@17 at line 17 of Date/Manip/TZ/askolk00.pm # once (2µs+4µs) by Date::Manip::TZ::ammare00::BEGIN@17 at line 17 of Date/Manip/TZ/ammare00.pm # once (2µs+4µs) by Date::Manip::TZ::ammaza00::BEGIN@17 at line 17 of Date/Manip/TZ/ammaza00.pm # once (2µs+4µs) by Date::Manip::TZ::etgmtm09::BEGIN@17 at line 17 of Date/Manip/TZ/etgmtm09.pm # once (2µs+4µs) by IO::Seekable::BEGIN@99 at line 99 of IO/Seekable.pm # once (2µs+4µs) by vars::BEGIN@8 at line 8 of vars.pm # once (3µs+3µs) by Date::Manip::TZ::BEGIN@189 at line 189 of Date/Manip/TZ.pm # once (2µs+3µs) by Date::Manip::Base::BEGIN@1409 at line 1409 of Date/Manip/Base.pm # once (2µs+4µs) by IO::BEGIN@7 at line 7 of IO.pm # once (3µs+3µs) by Date::Manip::TZ::BEGIN@1616 at line 1616 of Date/Manip/TZ.pm # once (2µs+3µs) by Date::Manip::TZ_Base::BEGIN@408 at line 408 of Date/Manip/TZ_Base.pm # once (2µs+2µs) by Date::Manip::Base::BEGIN@1474 at line 1474 of Date/Manip/Base.pm
sub import {
4338248µs shift;
443821.30ms3821.86ms $^H |= bits(@_ ? @_ : @default_bits);
# spent 1.86ms making 382 calls to strict::bits, avg 5µs/call
45}
46
47
# spent 101µs (47+54) within strict::unimport which was called 15 times, avg 7µs/call: # once (4µs+4µs) by Carp::BEGIN@131 at line 131 of Carp.pm # once (4µs+4µs) by Date::Manip::Base::BEGIN@1339 at line 1339 of Date/Manip/Base.pm # once (4µs+4µs) by Carp::BEGIN@555 at line 555 of Carp.pm # once (4µs+4µs) by Date::Manip::TZ::BEGIN@1612 at line 1612 of Date/Manip/TZ.pm # once (3µs+4µs) by Date::Manip::TZ_Base::BEGIN@404 at line 404 of Date/Manip/TZ_Base.pm # once (3µs+4µs) by IO::Handle::BEGIN@631 at line 631 of IO/Handle.pm # once (4µs+3µs) by Time::HiRes::BEGIN@43 at line 43 of Time/HiRes.pm # once (3µs+4µs) by Date::Manip::TZ::BEGIN@158 at line 158 of Date/Manip/TZ.pm # once (3µs+3µs) by constant::BEGIN@39 at line 39 of constant.pm # once (3µs+4µs) by Config::BEGIN@47 at line 47 of Config.pm # once (3µs+3µs) by Date::Manip::Base::BEGIN@1470 at line 1470 of Date/Manip/Base.pm # once (2µs+3µs) by constant::BEGIN@126 at line 126 of constant.pm # once (2µs+3µs) by constant::BEGIN@64 at line 64 of constant.pm # once (2µs+3µs) by Carp::BEGIN@575 at line 575 of Carp.pm # once (2µs+3µs) by Exporter::Heavy::BEGIN@4 at line 4 of Exporter/Heavy.pm
sub unimport {
48152µs shift;
491551µs1554µs $^H &= ~ bits(@_ ? @_ : @default_bits);
# spent 54µs making 15 calls to strict::bits, avg 4µs/call
50}
51
5216µs1;
53__END__
 
# spent 2µs within strict::CORE:match which was called: # once (2µs+0s) by main::BEGIN@8 at line 6
sub strict::CORE:match; # opcode
# spent 12µs within strict::CORE:regcomp which was called: # once (12µs+0s) by main::BEGIN@8 at line 6
sub strict::CORE:regcomp; # opcode