|
{
$DateTime::TimeZone::America::St_Lucia::VERSION = '1.46' ;
}
@DateTime::TimeZone::America::St_Lucia::ISA = ( 'Class::Singleton' , 'DateTime::TimeZone' );
my $spans =
[
[
DateTime::TimeZone::NEG_INFINITY,
59611176240,
DateTime::TimeZone::NEG_INFINITY,
59611161600,
-14640,
0,
'LMT'
],
[
59611176240,
60305313840,
59611161600,
60305299200,
-14640,
0,
'CMT'
],
[
60305313840,
DateTime::TimeZone::INFINITY,
60305299440,
DateTime::TimeZone::INFINITY,
-14400,
0,
'AST'
],
];
sub olson_version { '2012c' }
sub has_dst_changes { 0 }
sub _max_year { 2022 }
sub _new_instance
{
return shift ->_init( @_ , spans => $spans );
}
1;
|