Linux localhost 6.1.10-x86_64-linode159 #1 SMP PREEMPT_DYNAMIC Wed Feb 8 14:14:45 EST 2023 x86_64
Apache/2.4.25 (Debian)
Server IP : 45.33.61.127 & Your IP : 216.73.217.36
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
share /
perl /
5.24.1 /
Locale /
Delete
Unzip
Name
Size
Permission
Date
Action
Codes
[ DIR ]
drwxr-xr-x
2023-06-04 17:21
Maketext
[ DIR ]
drwxr-xr-x
2023-06-04 17:21
Codes.pm
19.51
KB
-rw-r--r--
2020-06-20 17:33
Codes.pod
9.61
KB
-rw-r--r--
2020-06-20 17:33
Country.pm
1.46
KB
-rw-r--r--
2020-06-20 17:33
Country.pod
4.95
KB
-rw-r--r--
2020-06-20 17:33
Currency.pm
1.48
KB
-rw-r--r--
2020-06-20 17:33
Currency.pod
2.99
KB
-rw-r--r--
2020-06-20 17:33
Language.pm
1.48
KB
-rw-r--r--
2020-06-20 17:33
Language.pod
3.27
KB
-rw-r--r--
2020-06-20 17:33
Maketext.pm
28.1
KB
-rw-r--r--
2020-06-20 17:33
Maketext.pod
48.25
KB
-rw-r--r--
2020-06-20 17:33
Script.pm
1.43
KB
-rw-r--r--
2020-06-20 17:33
Script.pod
3.08
KB
-rw-r--r--
2020-06-20 17:33
Save
Rename
package Locale::Country; # Copyright (C) 2001 Canon Research Centre Europe (CRE). # Copyright (C) 2002-2009 Neil Bowers # Copyright (c) 2010-2015 Sullivan Beck # This program is free software; you can redistribute it and/or modify it # under the same terms as Perl itself. use strict; use warnings; use Exporter; our $VERSION; $VERSION='3.37'; our (@ISA,@EXPORT); my $backend = 'Locale::Codes::Country'; my $backend_exp = $backend . "::EXPORT"; eval "require $backend; $backend->import(); return 1;"; { no strict 'refs'; @EXPORT = @{ $backend_exp }; } unshift (@ISA, $backend); sub rename_country { Locale::Codes::Country::rename_country(@_) } sub add_country { Locale::Codes::Country::add_country(@_) } sub delete_country { Locale::Codes::Country::delete_country(@_) } sub add_country_alias { Locale::Codes::Country::add_country_alias(@_) } sub delete_country_alias { Locale::Codes::Country::delete_country_alias(@_) } sub rename_country_code { Locale::Codes::Country::rename_country_code(@_) } sub add_country_code_alias { Locale::Codes::Country::add_country_code_alias(@_) } sub delete_country_code_alias { Locale::Codes::Country::delete_country_code_alias(@_) } 1; # Local Variables: # mode: cperl # indent-tabs-mode: nil # cperl-indent-level: 3 # cperl-continued-statement-offset: 2 # cperl-continued-brace-offset: 0 # cperl-brace-offset: 0 # cperl-brace-imaginary-offset: 0 # cperl-label-offset: -2 # End: