view release on metacpan or search on metacpan
lib/CryptoCurrency/Catalog.pm view on Meta::CPAN
CASH Cashcoin cashcoin
CASHBERY Cashbery Coin cashbery-coin
CAT BlockCAT blockcat
CATO CatoCoin catocoin
CAZ Cazcoin cazcoin
CBC CashBet Coin cashbet-coin
CBT CommerceBlock commerceblock
CBX Bullion bullion
CCC Concierge Coin concierge-coin
CCCX Clipper Coin clipper-coin
CCL CYCLEAN cyclean
view all matches for this distribution
view release on metacpan or search on metacpan
t/335_negated_s.t view on Meta::CPAN
$line = "ACACA";
$ret = $line =~ s/A/B/g;
if ($ret == 3) {
if ($line eq "BCBCB") {
print qq{ok - 5 "ACACA" =~ s/A/B/ --> ($ret)($line) $^X $__FILE__\n};
}
else {
print qq{not ok - 5 "ACACA" =~ s/A/B/ --> ($ret)($line) $^X $__FILE__\n};
}
t/335_negated_s.t view on Meta::CPAN
$line = "ACACA";
$ret = $line !~ s/A/B/g;
if (not $ret) {
if ($line eq "BCBCB") {
print qq{ok - 8 "ACACA" !~ s/A/B/ --> ($ret)($line) $^X $__FILE__\n};
}
else {
print qq{not ok - 8 "ACACA" !~ s/A/B/ --> ($ret)($line) $^X $__FILE__\n};
}
view all matches for this distribution
view release on metacpan or search on metacpan
benchmarks/Data/Wisconsin/tenk.data view on Meta::CPAN
55,1375,1,3,5,15,55,55,55,55,55,110,111,'DCAAAA','XACAAA','VVVVxx'
6151,1376,1,3,1,11,51,151,151,1151,6151,102,103,'PCAAAA','YACAAA','AAAAxx'
2512,1377,0,0,2,12,12,512,512,2512,2512,24,25,'QSAAAA','ZACAAA','HHHHxx'
5881,1378,1,1,1,1,81,881,1881,881,5881,162,163,'FSAAAA','ABCAAA','OOOOxx'
1442,1379,0,2,2,2,42,442,1442,1442,1442,84,85,'MDAAAA','BBCAAA','VVVVxx'
1270,1380,0,2,0,10,70,270,1270,1270,1270,140,141,'WWAAAA','CBCAAA','AAAAxx'
959,1381,1,3,9,19,59,959,959,959,959,118,119,'XKAAAA','DBCAAA','HHHHxx'
8251,1382,1,3,1,11,51,251,251,3251,8251,102,103,'JFAAAA','EBCAAA','OOOOxx'
3051,1383,1,3,1,11,51,51,1051,3051,3051,102,103,'JNAAAA','FBCAAA','VVVVxx'
5052,1384,0,0,2,12,52,52,1052,52,5052,104,105,'IMAAAA','GBCAAA','AAAAxx'
1863,1385,1,3,3,3,63,863,1863,1863,1863,126,127,'RTAAAA','HBCAAA','HHHHxx'
view all matches for this distribution
view release on metacpan or search on metacpan
return "rijndael";
}
static int sqlcipher_ltc_cipher(void *ctx, int mode, unsigned char *key, int key_sz, unsigned char *iv, unsigned char *in, int in_sz, unsigned char *out) {
int rc, cipher_idx;
symmetric_CBC cbc;
if((cipher_idx = find_cipher(sqlcipher_ltc_get_cipher(ctx))) == -1) return SQLITE_ERROR;
if((rc = cbc_start(cipher_idx, iv, key, key_sz, 0, &cbc)) != CRYPT_OK) return SQLITE_ERROR;
rc = mode == 1 ? cbc_encrypt(in, out, in_sz, &cbc) : cbc_decrypt(in, out, in_sz, &cbc);
if(rc != CRYPT_OK) return SQLITE_ERROR;
view all matches for this distribution
view release on metacpan or search on metacpan
lib/DBD/Sprite.pm view on Meta::CPAN
"where" clauses. I discovered that Oracle and some other databases
do not require this when testing DBIx-Recordset, so Sprite will
automatically right-pad literals when testing for equality.
To disable this and force the old behavior, set this option to 1.
I<sprite_Crypt> => [encrypt=|decrypt=][Crypt]::CBC;][[IDEA[_PP]|DES[_PP]|BLOWFISH[_PP];]keystring
Optional encryption and/or decryption of data stored in tables. By
omitting "encrypt=" and "decrypt=", data will be decrypted when read
from the table and encrypted when written to the table using the
"keystring" as the key.
view all matches for this distribution
view release on metacpan or search on metacpan
Debian_CPANTS.txt view on Meta::CPAN
"libcpan-distnameinfo-perl", "CPAN-DistnameInfo", "0.08", "0", "0"
"libcpan-inject-perl", "CPAN-Inject", "0.11", "0", "0"
"libcpan-mini-perl", "CPAN-Mini", "0.576", "0", "0"
"libcpandb-perl", "CPANDB", "0.12", "0", "0"
"libcrypt-blowfish-perl", "Crypt-Blowfish", "2.10", "0", "0"
"libcrypt-cbc-perl", "Crypt-CBC", "2.30", "1", "0"
"libcrypt-des-perl", "Crypt-DES", "2.05", "0", "0"
"libcrypt-generatepassword-perl", "Crypt-GeneratePassword", "0.03", "0", "0"
"libcrypt-openssl-bignum-perl", "Crypt-OpenSSL-Bignum", "0.04", "0", "0"
"libcrypt-openssl-dsa-perl", "Crypt-OpenSSL-DSA", "0.13", "0", "0"
"libcrypt-openssl-random-perl", "Crypt-OpenSSL-Random", "0.04", "0", "0"
view all matches for this distribution
view release on metacpan or search on metacpan
PasswordIniFile.pm view on Meta::CPAN
$VERSION = '2.00';
use DBI();
use Config::IniFiles;
use Crypt::CBC; # Requires Crypt::Blowfish
use File::HomeDir;
my %connect_cache;
=head1 NAME
PasswordIniFile.pm view on Meta::CPAN
sub encryptPassword
{
my $self = shift;
my $pass = shift;
my $cipher = Crypt::CBC->new( {'key' => $self->{key_},
'cipher' => $self->{cipher_}
});
$cipher->start('Encript');
my $ciphertext = $cipher->encrypt_hex($pass);
$cipher->finish();
PasswordIniFile.pm view on Meta::CPAN
sub decryptPassword
{
my $self = shift;
my $pass = shift;
my $cipher = Crypt::CBC->new( {'key' => $self->{key_},
'cipher' => $self->{cipher_}
});
$cipher->start('Decript');
my $plaintext = $cipher->decrypt_hex($pass);
$cipher->finish();
PasswordIniFile.pm view on Meta::CPAN
You may override this file creating your own C<.DEFAULT_KEY> (note dot prefixed)
file at your home directory.
In either case, content of this files is ONE line with a string used as key for
C<Crypt::CBC> algorithm.
=head1 SECURITY CONSIDERATIONS
In C<.ini> file, password is stored encrypted, and never in clear form. But note
that the mechanism is not completely secured because passwords are stored clear
view all matches for this distribution
view release on metacpan or search on metacpan
lib/DBIx/Raw.pm view on Meta::CPAN
use DBI;
use Config::Any;
use DBIx::Raw::Crypt;
use Carp;
use List::Util qw/first/;
use Crypt::Mode::CBC::Easy;
#have an errors file to write to
has 'dsn' => is => 'rw';
has 'user' => is => 'rw';
has 'password' => is => 'rw';
lib/DBIx/Raw.pm view on Meta::CPAN
default => '',
);
has 'crypt' => (
is => 'ro',
isa => InstanceOf['Crypt::Mode::CBC::Easy'],
lazy => 1,
builder => sub {
my ($self) = @_;
return Crypt::Mode::CBC::Easy->new(key => $self->crypt_key);
},
);
has 'crypt_key' => (
is => 'rw',
lib/DBIx/Raw.pm view on Meta::CPAN
or by setting it with its setter method:
$db->crypt_key("1234");
It is strongly recommended that you do not use the default L</"crypt_key">. The L</crypt_key> should be the appropriate length
for the L</crypt> that is set. The default L</crypt> uses L<Crypt::Mode::CBC::Easy>, which uses L<Crypt::Cipher::Twofish>, which
allows key sizes of 128/192/256 bits.
=head2 crypt
The L<Crypt::Mode::CBC::Easy> object to use for encryption. Default is the default L<Crypt::Mode::CBC::Easy> object
created with the key L</crypt_key>.
=head2 use_old_crypt
In version 0.16 L<DBIx::Raw> started using L<Crypt::Mode::CBC::Easy> instead of L<DBIx::Raw::Crypt>. Setting this to 1 uses the old encryption instead.
Make sure to set L</old_crypt_key> if you previously used L</crypt_key> for encryption.
=head2 old_crypt_key
This sets the crypt key to use if L</use_old_crypt> is set to true. Default is the previous crypt key.
view all matches for this distribution
view release on metacpan or search on metacpan
lib/DBIx/Squirrel/Crypt/Fernet.pm view on Meta::CPAN
Fernet
)
] );
our $VERSION = '1.0.0';
require Crypt::CBC;
require Crypt::Rijndael;
require Exporter;
use Const::Fast 'const';
use Digest::SHA 'hmac_sha256';
lib/DBIx/Squirrel/Crypt/Fernet.pm view on Meta::CPAN
}
# Generate a random 32-byte Fernet key.
sub _rand_key {
return Crypt::CBC->random_bytes(32);
}
# Encode a binary string as Base64 with padding.
sub _pad_b64encode {
lib/DBIx/Squirrel/Crypt/Fernet.pm view on Meta::CPAN
else {
my $key = urlsafe_b64decode($self_or_b64key);
substr( $key, 0, 16 ), substr( $key, 16, 16 );
}
};
my $iv = Crypt::CBC->random_bytes(16);
my $t = $TOKEN_VERSION . _timestamp() . $iv . Crypt::CBC->new(
-cipher => 'Rijndael',
-header => 'none',
-iv => $iv,
-key => $encrypt_key,
-keysize => 16,
lib/DBIx/Squirrel/Crypt/Fernet.pm view on Meta::CPAN
else {
substr( urlsafe_b64decode($self_or_b64key), 16, 16 );
}
};
my $t = urlsafe_b64decode($b64token);
return Crypt::CBC->new(
-cipher => 'Rijndael',
-header => 'none',
-iv => substr( $t, 9, 16 ),
-key => $encrypt_key,
-keysize => 16,
lib/DBIx/Squirrel/Crypt/Fernet.pm view on Meta::CPAN
=head2 LEGACY C<Crypt::Fernet> INTERFACE
At the time I wanted to use Wan Leung Wong's C<Crypt::Fernet> package, it had
a few testing failures and would not build. I'm pretty sure the C<Crypt::CBC>
dependency introduced a breaking change. I did submit a fix, but deployment
and communication have been problematic. It has probably been fixed by now,
but I have decided to rework the original package, extend the interface,
and have kept this namespace active. Nevertheless, the lion's share of the
credit should go to the author of the original work.
view all matches for this distribution
view release on metacpan or search on metacpan
lib/DBM/Deep/Cookbook.pod view on Meta::CPAN
encryption. (Furthermore, it fails to take Unicode into account.)
Here is a working example that uses the I<Crypt::Blowfish> module to
do real-time encryption / decryption of keys & values with DBM::Deep Filters.
Please visit L<http://search.cpan.org/search?module=Crypt::Blowfish> for more
on I<Crypt::Blowfish>. You'll also need the I<Crypt::CBC> module.
use DBM::Deep;
use Crypt::Blowfish;
use Crypt::CBC;
my $cipher = Crypt::CBC->new({
'key' => 'my secret key',
'cipher' => 'Blowfish',
'iv' => '$KJh#(}q',
'regenerate_key' => 0,
'padding' => 'space',
view all matches for this distribution
view release on metacpan or search on metacpan
doc/rfc3920-notes.txt view on Meta::CPAN
At a minimum, all implementations MUST support the following
mechanisms:
for authentication: the SASL [DIGEST-MD5] mechanism
for confidentiality: TLS (using the TLS_RSA_WITH_3DES_EDE_CBC_SHA
cipher)
for both: TLS plus SASL EXTERNAL(using the
TLS_RSA_WITH_3DES_EDE_CBC_SHA cipher supporting client-side
certificates)
Saint-Andre, Ed. Standards Track [Page 67]
view all matches for this distribution
view release on metacpan or search on metacpan
vendor/dms-c/dms.c view on Meta::CPAN
{0x0C85, 0x0C8C},
{0x0C8E, 0x0C90},
{0x0C92, 0x0CA8},
{0x0CAA, 0x0CB3},
{0x0CB5, 0x0CB9},
{0x0CBC, 0x0CC4},
{0x0CC6, 0x0CC8},
{0x0CCA, 0x0CCD},
{0x0CD5, 0x0CD6},
{0x0CDD, 0x0CDE},
{0x0CE0, 0x0CE3},
view all matches for this distribution
view release on metacpan or search on metacpan
lib/DMS/Parser.pm view on Meta::CPAN
[0x0C85, 0x0C8C],
[0x0C8E, 0x0C90],
[0x0C92, 0x0CA8],
[0x0CAA, 0x0CB3],
[0x0CB5, 0x0CB9],
[0x0CBC, 0x0CC4],
[0x0CC6, 0x0CC8],
[0x0CCA, 0x0CCD],
[0x0CD5, 0x0CD6],
[0x0CDD, 0x0CDE],
[0x0CE0, 0x0CE3],
view all matches for this distribution
view release on metacpan or search on metacpan
vendor/dms-c/dms.c view on Meta::CPAN
{0x0C85, 0x0C8C},
{0x0C8E, 0x0C90},
{0x0C92, 0x0CA8},
{0x0CAA, 0x0CB3},
{0x0CB5, 0x0CB9},
{0x0CBC, 0x0CC4},
{0x0CC6, 0x0CC8},
{0x0CCA, 0x0CCD},
{0x0CD5, 0x0CD6},
{0x0CDD, 0x0CDE},
{0x0CE0, 0x0CE3},
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Dancer/Plugin/EncodeID.pm view on Meta::CPAN
=over
=item THIS MODULE IS NOT SECURE. The encoded ID are not strongly encrypted in any way. The goal is obfuscation, not security.
=item A possible improvement would be to use L<Crypt::CBC> on top of L<Crypt::Blowfish>, but that would generate IDs that are at least 48 characters long.
=item The secret key can not be changed once loaded.
=back
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Dancer/Session/Cookie.pm view on Meta::CPAN
use 5.10.0;
use parent 'Dancer::Session::Abstract';
use Session::Storage::Secure 0.010;
use Crypt::CBC;
use String::CRC32;
use Crypt::Rijndael;
use Time::Duration::Parse;
use Dancer 1.3113 ':syntax'; # 1.3113 for on_reset_state and fixed after hook
lib/Dancer/Session/Cookie.pm view on Meta::CPAN
my $key = setting("session_cookie_key") # XXX default to smth with warning
or die "The setting session_cookie_key must be defined";
my $duration = $self->_session_expires_as_duration;
$CIPHER = Crypt::CBC->new(
-key => $key,
-cipher => 'Rijndael',
);
$STORE = Session::Storage::Secure->new(
lib/Dancer/Session/Cookie.pm view on Meta::CPAN
The setting B<session> should be set to C<cookie> in order to use this session
engine in a Dancer application. See L<Dancer::Config>.
Another setting is also required: B<session_cookie_key>, which should
contain a random string of at least 16 characters (shorter keys are
not cryptographically strong using AES in CBC mode).
The optional B<session_expires> setting can also be passed,
which will provide the duration time of the cookie. If it's not present, the
cookie won't have an expiration value.
lib/Dancer/Session/Cookie.pm view on Meta::CPAN
only) cookie will be used if set.
=head1 DEPENDENCY
This module depends on L<Session::Storage::Secure>. Legacy support is provided
using L<Crypt::CBC>, L<Crypt::Rijndael>, L<String::CRC32>, L<Storable> and
L<MIME::Base64>.
=head1 SEE ALSO
See L<Dancer::Session> for details about session usage in route handlers.
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Dancer2/Plugin/JWT.pm view on Meta::CPAN
die 'JWE cannot be used with empty encryption method';
}
if ( $config->{enc} =~ /^A(128|192|256)GCM$/ ) {
$enc = $config->{enc};
} elsif ( $config->{enc} =~ /^A(128|192|256)CBC-HS(256|384|512)$/ ) {
my $a = $1;
my $hs = $2;
if ( ( ( $a * 2 ) - $hs ) != 0 ) {
die 'Incompatible A and HS values';
view all matches for this distribution
view release on metacpan or search on metacpan
share/assets/dash_table/async~export.js.map view on Meta::CPAN
{"version":3,"sources":["webpack://dash_table/./node_modules/xlsx/xlsx.js","webpack://dash_table/(webpack)/buildin/global.js","webpack://dash_table/./node_modules/process/browser.js","webpack://dash_table/./node_modules/buffer/index.js","webpack://da...
view all matches for this distribution
view release on metacpan or search on metacpan
Encrypted.pm view on Meta::CPAN
especially when first using "empty" virtual files (a known bug in
Inline::Files). Damian Conway has said he'd think about trying to fix
it someday.
This idea could be extended to the Tie::EncryptedHash or other
Crypt::CBC-employing methodology, but would lose the fundamental
advantage of not requiring any clear text password or passphrase to
remain associated with the script. Perhaps people wouldn't mind
typing one "universal" password or passphrase to get at their saved,
encrypted data ... ?
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Data/MuForm/Role/RequestToken.pm view on Meta::CPAN
package Data::MuForm::Role::RequestToken;
# ABSTRACT: Role to incluse a token for csrf protection
use Moo::Role;
use Data::MuForm::Meta;
use Crypt::CBC;
use MIME::Base64 ('decode_base64', 'encode_base64');
use Try::Tiny;
has 'token_expiration_time' => ( is => 'rw', lazy => 1, builder => 'build_token_expiration_time' );
sub build_token_expiration_time { '3600' }
lib/Data/MuForm/Role/RequestToken.pm view on Meta::CPAN
has 'crypto_cipher_type' => ( is => 'rw', buider => 'build_crypto_cipher_type' );
sub build_crypto_cipher_type { 'Blowfish' }
has 'cipher' => ( is => 'ro', lazy => 1, builder => 'build_cipher' );
sub build_cipher {
my $self = shift;
return Crypt::CBC->new(
-key => $self->crypto_key,
-cipher => $self->crypto_cipher_type,
-salt => 1,
-header => 'salt',
);
view all matches for this distribution
view release on metacpan or search on metacpan
t/data/seek.t view on Meta::CPAN
},
{ "name" => "Cardiac Enzymes",
"time" => "Today",
"location" => "Primary Care Clinic"
},
{ "name" => "CBC",
"time" => "1 Year",
"location" => "Primary Care Clinic"
},
{ "name" => "Creatinine",
"time" => "1 Year",
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Data/Serializer.pm view on Meta::CPAN
my $value = (shift);
my $cipher = (shift);
my $digester = (shift);
my $secret = $self->secret;
croak "Cannot encrypt: No secret provided!" unless defined $secret;
$self->_module_loader('Crypt::CBC');
my $digest = $self->_endigest($value,$digester);
my $cipher_obj = Crypt::CBC->new($secret,$cipher);
return $cipher_obj->encrypt($digest);
}
sub _decrypt {
my $self = (shift);
my $input = (shift);
my $cipher = (shift);
my $digester = (shift);
my $secret = $self->secret;
croak "Cannot encrypt: No secret provided!" unless defined $secret;
$self->_module_loader('Crypt::CBC');
my $cipher_obj = Crypt::CBC->new($secret,$cipher);
my $digest = $cipher_obj->decrypt($input);
return $self->_dedigest($digest,$digester);
}
sub _endigest {
my $self = (shift);
lib/Data/Serializer.pm view on Meta::CPAN
cyclical data structures or CODE references. Please see the appropriate
documentation in those modules for further information.
=item B<cipher> - change the cipher method
Utilizes L<Crypt::CBC(3)> and can support any cipher method that it supports.
=item B<digester> - change digesting method
Uses L<Digest(3)> so can support any digesting method that it supports. Digesting
function is used internally by the encryption routine as part of data verification.
lib/Data/Serializer.pm view on Meta::CPAN
=item L<Digest(3)>
=item L<Digest::SHA(3)>
=item L<Crypt::CBC(3)>
=item L<MIME::Base64(3)>
=item L<IO::File(3)>
view all matches for this distribution
view release on metacpan or search on metacpan
---
{WABlGg=>{MoXkWVwtWtBwkq=>'ugA;dKuoNX;kdvxPt;NHVRfS;ubUUbR;bBcvCG;qYxCdCMESXtRY;YG;_aac',TRjxvaPmnUCCiBTJqV=>{rtiJSiR=>'349-1-5',mflaxtxp=>'349-1-1',GboTnhYH=>'72668',TMQr_DaY=>'DT'},ORpx=>'TRjxvaPmnUCCiBTJqV',rMBPIcYzSQM=>'46684332Lve5'},gQ=>{svnVKH...
---
{WABlGg=>{WsxTgoCmJtWj=>19203,IxiQPXuqWJqtib=>0,uJBWfGbhQli=>174,EVWCeOuOkCRHK=>0,MoXkWVwtWtBwkq=>'TSs37476;qYxCdCMESXtRY;_aac;kdvxPt;NHVRfS;bBcvCG;ugA;dKuoNX;ubUUbR',BPDDeTTlUxJJuMBdFzul=>["aFeXSAtM, LxEDl\x{b}Q",'B/-334428,Q/2',-1,0],hLFbBmKcaW=>{'...
---
{WABlGg=>{WsxTgoCmJtWj=>79121,FWbXcNs=>'ZZ',mEJfnAhcLEvXOonkXyHwD=>194,HAZOai__Oeuny=>['uLkhvnHL','YxWSIgn_TjnaqpXz','LaSPWvtwIoMINPKor'],QlXiAlHyxNUMy=>0,GboTnhYH=>'2026',yrOEvRUhB=>'kLgzZOV',TMQr_DaY=>'Ex-Gn',ORpx=>'eQKFL',rbMGfbYBnz=>'0o17k5d4y0qZ...
---
{WABlGg=>{EVWCeOuOkCRHK=>0,MoXkWVwtWtBwkq=>'_aac;kdvxPt;NHVRfS;ubUUbR;bBcvCG;ugA;dKuoNX',hLFbBmKcaW=>{'270'=>[0,107782160],'1389'=>[0,107782160,0],'3634'=>[0,107782160],'110751'=>[0,216213545,0],'12'=>[0,1030047633,0],'4676'=>[0,107782160,0],'5840'=>...
---
{WABlGg=>{MoXkWVwtWtBwkq=>'_aac;kdvxPt;bBcvCG;NHVRfS;ugA;dKuoNX;ubUUbR',TRjxvaPmnUCCiBTJqV=>{rtiJSiR=>'349-1-0',mflaxtxp=>'349-1-1',GboTnhYH=>'52674',TMQr_DaY=>'Ex-Gn'},ORpx=>'TRjxvaPmnUCCiBTJqV',rMBPIcYzSQM=>'8d1781d1fF2996'},gQ=>{svnVKHykek=>0,ULLn...
---
---
{WABlGg=>{MoXkWVwtWtBwkq=>'TSs37476;kdvxPt;bBcvCG;y;ugA;dKuoNX;kdvxPt;NHVRfS;ubUUbR;bBcvCG;YG;_aac',TRjxvaPmnUCCiBTJqV=>{rtiJSiR=>'349-1-5',mflaxtxp=>'349-1-8',GboTnhYH=>'40366',TMQr_DaY=>'aT'},ORpx=>'TRjxvaPmnUCCiBTJqV',rMBPIcYzSQM=>'4B146d465o1'},g...
---
{WABlGg=>{wXoHNhqpgPg=>'718983562648',oOKKIBuV_lMAH=>'718983562648',MoXkWVwtWtBwkq=>'kdvxPt;bBcvCG;kdvxPt;bBcvCG;_aac;NHVRfS;ubUUbR;ubUUbR;ugA;dKuoNX;NHVRfS',SdfQDDwyXc_F=>'403917383061',QQtNKLSyOTMQIKFszJfozNnEEYDD=>'135229663994',ipsORrCDNbxUrVdXIV...
---
{WABlGg=>{WsxTgoCmJtWj=>94206,uJBWfGbhQli=>320,EVWCeOuOkCRHK=>0,MoXkWVwtWtBwkq=>'_aac;kdvxPt;NHVRfS;ubUUbR;bBcvCG;ugA;dKuoNX',fnItfpriiXyKjY=>['1864','2015','1445','6920','1721','4378'],hLFbBmKcaW=>{'270'=>[0,171151378],'3634'=>[0,171151378],'4996'=>...
---
{WABlGg=>{WsxTgoCmJtWj=>131635,freSfeVzWWZa=>{'6025829K16831K0K313103'=>['13',0],'6025829K35561907K0K333103'=>['9',0],'2821150K160345K0K36257'=>['46',0],'2821150K1731767K0K56657'=>['59',0],'350930K16831K0K720103'=>['13',0],'350930K35561907K0K582103'=...
---
{WABlGg=>{WsxTgoCmJtWj=>79121,uJBWfGbhQli=>114,EVWCeOuOkCRHK=>0,MoXkWVwtWtBwkq=>'dKuoNX;kdvxPt;NHVRfS;bBcvCG;_aac;ugA;ubUUbR',hLFbBmKcaW=>{'270'=>[0,23775881,0],'3634'=>[0,23775881,0],'7'=>[0,923545096,0],'1443'=>[0,23775881,0],'4996'=>[0,276093062],...
---
---
{vyRyJnqr=>{f1JYOiLvzaq=>'1dQ4z40U4xU0WH',cAJwcTUYARA=>'wdOUMUSu::YaEDulwv::UkvUkVxLJimDJN::gTgoLLA',EOcohaoTzCxX=>'mk0ziw7AKy862o1o0Q0B4zw71691',ULXRPQ=>'zdyeqcMi.lCcvvJuT',BeDVjVAbBbGi=>'0',GwvGmVZUXUKNRExBiH=>{hSD=>'Gz_sE-haXPyL-QWYlvmdGpeWR0-zdye...
---
{WABlGg=>{MoXkWVwtWtBwkq=>'kdvxPt;bBcvCG;qncsPtdjUV;bIvhPoNcBr;ubUUbR;NHVRfS',byfdlDrvDZxh=>'135',ORpx=>'rpxbESEKvV',rMBPIcYzSQM=>'144y35pA12d4B',TsdaadtjZgaGd=>'135'},LumhOl=>{JuoIjb=>'*/*',EfrbvjmcgPegFyg=>'eVyK, RBriKYc',LTDrnMNCqjHMKxM=>'Ex-Gn,Ex...
---
{WABlGg=>{WsxTgoCmJtWj=>12396,uJBWfGbhQli=>1024,EVWCeOuOkCRHK=>0,MoXkWVwtWtBwkq=>'ySUuB;ubUUbR;YG;_aac;kdvxPt;bBcvCG;ugA;dKuoNX;y;NHVRfS',hLFbBmKcaW=>{'270'=>[0,189080057,0],'1389'=>[0,189080057,0],'3634'=>[0,189080057,0],'12'=>[0,465777784,0],'4676'...
---
{WABlGg=>{WsxTgoCmJtWj=>79121,IxiQPXuqWJqtib=>0,uJBWfGbhQli=>26,EVWCeOuOkCRHK=>0,MoXkWVwtWtBwkq=>'_aac;kdvxPt;NHVRfS;ubUUbR;bBcvCG;ugA;dKuoNX;gMh',hLFbBmKcaW=>{'270'=>[0,98368280,0],'3634'=>[0,184366719,0],'4996'=>[1,98368280],'959'=>[0,46732180,0],'...
---
{WABlGg=>{MoXkWVwtWtBwkq=>'kdvxPt;bIvhPoNcBr;bBcvCG;qncsPtdjUV;NHVRfS;ubUUbR',byfdlDrvDZxh=>'106',ORpx=>'rpxbESEKvV',rMBPIcYzSQM=>'27164Hg0Eq1314y',TsdaadtjZgaGd=>'106'},LumhOl=>{JuoIjb=>'*/*',EfrbvjmcgPegFyg=>'eVyK, RBriKYc',LTDrnMNCqjHMKxM=>'xB,Ex-...
---
---
{WABlGg=>{MoXkWVwtWtBwkq=>'_aac;kdvxPt;NHVRfS;ubUUbR;bBcvCG;ugA;dKuoNX;YG',TRjxvaPmnUCCiBTJqV=>{rtiJSiR=>'349-3-1',mflaxtxp=>'349-3-8',GboTnhYH=>'110414280',TMQr_DaY=>'Ex-Gn'},ORpx=>'TRjxvaPmnUCCiBTJqV',rMBPIcYzSQM=>'30007Xm1o24437d'},gQ=>{svnVKHykek...
---
{WABlGg=>{WsxTgoCmJtWj=>195241,uJBWfGbhQli=>1024,EVWCeOuOkCRHK=>0,MoXkWVwtWtBwkq=>'kdvxPt;bBcvCG;_aac',FWbXcNs=>'CF',fnItfpriiXyKjY=>['3563','1365','4977','4996','172','483','1415','1392','7507','203','1208','3649398','931'],hLFbBmKcaW=>{'270'=>['0',...
---
{WABlGg=>{WsxTgoCmJtWj=>79121,freSfeVzWWZa=>{'6565629K3169930K0K58857'=>['39.112536',0],'6565629K3169930K0K85257'=>['8.919827',0],'13590196K3169930K0K10057'=>['39.112536',0],'13590196K3169930K0K93957'=>['8.919827',0],'5233038K3169930K0K58057'=>['39.1...
---
{WABlGg=>{MoXkWVwtWtBwkq=>'_aac;kdvxPt;bBcvCG;ksrFbf',DZQUXUpvxPbU=>0,ORpx=>'LEAt'},LumhOl=>{JuoIjb=>'*/*',EfrbvjmcgPegFyg=>'eVyK, RBriKYc',LTDrnMNCqjHMKxM=>'aT',WbGVflxHyB=>13,opsmlZOiaOUc=>3,HYpBCoBNdaqv=>'KqnhC/uUU',JTQ=>'1',pHlNZJCtCAR=>1,qpjfZFh...
---
{WABlGg=>{WsxTgoCmJtWj=>19203,freSfeVzWWZa=>{'648748K94032K0K47311'=>['6',0],'648748K94032K0K45211'=>['7.8',0],'648748K1522K0K85616'=>['10.4',0],'648748K1522K0K38816'=>['14.6',0],'648748K10100552K0K42557'=>['16',0],'648748K10100552K0K76157'=>['35.8',...
---
---
{gQ=>{svnVKHykek=>0,ULLnebIOatyM=>0,ZRhPDHNIVrY_xtlY=>3},vyRyJnqr=>{f1JYOiLvzaq=>'1dQ4z4Z0sf0FtZ1',cAJwcTUYARA=>'wdOUMUSu::YaEDulwv::UkvUkVxLJimDJN::gTgoLLA',NqBejNrf=>'-549377',EOcohaoTzCxX=>'0o346Wu4CHy1k1npVd309004ymU6',ULXRPQ=>'zdyeqcMi.hrjBAbUnB...
---
{WABlGg=>{WsxTgoCmJtWj=>79121,uJBWfGbhQli=>742,EVWCeOuOkCRHK=>0,MoXkWVwtWtBwkq=>'ugA;kdvxPt;NHVRfS;ubUUbR;bBcvCG;y;_aac;dKuoNX',fnItfpriiXyKjY=>['3012'],hLFbBmKcaW=>{'270'=>[0,202482255,0],'1389'=>[0,202482255,0],'3634'=>[0,329873465,0],'2327'=>[0,52...
---
{WABlGg=>{WsxTgoCmJtWj=>1955,freSfeVzWWZa=>{'464630K8729814K0K77257'=>['12',0],'464630K3573076K0K85557'=>['7.6',0],'464630K1444965K0K53911'=>['22.23',0],'464630K22861129K0K49016'=>['16.6',0],'464630K34525877K0K35111'=>['73',0],'464630K6047600K0K97916...
---
{WABlGg=>{MoXkWVwtWtBwkq=>'kdvxPt;NHVRfS;ubUUbR;bBcvCG;qncsPtdjUV;bIvhPoNcBr'},LumhOl=>{JuoIjb=>'*/*',EfrbvjmcgPegFyg=>'eVyK, RBriKYc',LTDrnMNCqjHMKxM=>'Ex-Ke',WbGVflxHyB=>23645,opsmlZOiaOUc=>16,HYpBCoBNdaqv=>'XINP/WQe',JTQ=>'0',pHlNZJCtCAR=>0,qpjfZF...
---
{WABlGg=>{EVWCeOuOkCRHK=>1,MoXkWVwtWtBwkq=>'bBcvCG;ubUUbR;NHVRfS;kdvxPt;_aac;dKuoNX;ugA',hLFbBmKcaW=>{'270'=>[0,189465602],'1389'=>[0,189465602,0],'3634'=>[0,189465602],'2327'=>[0,379956332,0],'110999'=>[0,62933130,0],'12'=>[0,288166266,0],'4676'=>[0...
---
---
{LumhOl=>{WbGVflxHyB=>1,opsmlZOiaOUc=>1,HYpBCoBNdaqv=>'XINP/tsAoJ',JTQ=>'22',pHlNZJCtCAR=>12,ybpVZXlHMKpe=>{'0.130.77.4'=>[0],'0.130.77.9'=>[0],'0.130.150.13'=>[0],'0.130.150.4'=>[0]},qpjfZFh=>'NuP-136480-32227',NL=>'0.130.144.0',eNuVdzKcn=>{YkFOuaWg...
---
{vyRyJnqr=>{f1JYOiLvzaq=>'1dQ4z4E0U1U1AZu',iISgS=>'196',BeDVjVAbBbGi=>'0',AKufkReuuHR=>'jJf_ /gsF-zdq dEqP/0.0',_S_L=>'ufZTgOUMcYZ'},LumhOl=>{vjOR_XPbT=>'ufZTgOUMcYZ',WbGVflxHyB=>1,opsmlZOiaOUc=>19,HYpBCoBNdaqv=>'XINP/gsF; PCkhiXm=IJ_-1',JTQ=>'12',pH...
---
{WABlGg=>{WsxTgoCmJtWj=>79121,freSfeVzWWZa=>{'741659K3177694K0K81557'=>['22.1278611',0],'741659K3177694K0K26757'=>['72.123714',0],'17267K3177694K0K8257'=>['4.1586897',0],'17267K3177694K0K21857'=>['29.983',0],'3408486K3177694K0K78957'=>['9.56398',0],'...
---
{WABlGg=>{MoXkWVwtWtBwkq=>'_aac;kdvxPt;NHVRfS;ubUUbR;bBcvCG;ugA;dKuoNX;YG',TRjxvaPmnUCCiBTJqV=>{rtiJSiR=>'349-3-1',mflaxtxp=>'349-3-0',GboTnhYH=>'22112',TMQr_DaY=>'DT'},ORpx=>'TRjxvaPmnUCCiBTJqV',rMBPIcYzSQM=>'8Eb33Wu14474547'},gQ=>{svnVKHykek=>0,ULL...
---
{WABlGg=>{WsxTgoCmJtWj=>79121,freSfeVzWWZa=>{'63551K19752550K0K75257'=>['5',0]},uJBWfGbhQli=>1003,EVWCeOuOkCRHK=>1,MoXkWVwtWtBwkq=>'_aac;kdvxPt;NHVRfS;bBcvCG;ugA;dKuoNX;y;ubUUbR',FWbXcNs=>'CF',BPDDeTTlUxJJuMBdFzul=>['qxhcNIwVg','P/16,B/-593145,B/2486...
---
---
{WABlGg=>{MoXkWVwtWtBwkq=>'qncsPtdjUV'},soLe=>{GboTnhYH=>'12377',rbMGfbYBnz=>'k533cZ4o0d1Qnn8k0jA330Q2530'},LumhOl=>{vjOR_XPbT=>'12377',WbGVflxHyB=>813,opsmlZOiaOUc=>130,HYpBCoBNdaqv=>'XINP/JMTJ',JTQ=>'5',pHlNZJCtCAR=>0,FrdMML_knB_=>'12',ybpVZXlHMKpe...
---
{WABlGg=>{MoXkWVwtWtBwkq=>'kdvxPt;bBcvCG;y;TSs10271;_aac;gMh;NHVRfS;ubUUbR;ugA;dKuoNX',DZQUXUpvxPbU=>0,ORpx=>'LEAt'},LumhOl=>{JuoIjb=>'KqnhC/yvd,KqnhC/*;x=0.1,*/*;x=0.1',LTDrnMNCqjHMKxM=>'Ex-Gn,Ex;x=0.1',WbGVflxHyB=>13,opsmlZOiaOUc=>8,HYpBCoBNdaqv=>'...
---
{WABlGg=>{WsxTgoCmJtWj=>155631,IxiQPXuqWJqtib=>0,uJBWfGbhQli=>216,EVWCeOuOkCRHK=>0,MoXkWVwtWtBwkq=>'kdvxPt;NHVRfS;ubUUbR;bBcvCG;y;ugA;_aac;dKuoNX',fnItfpriiXyKjY=>['7','1445'],hLFbBmKcaW=>{'270'=>[0,222749440],'1389'=>[0,222749440,0],'3634'=>[0,50785...
---
{WABlGg=>{WsxTgoCmJtWj=>714,ShH=>{WABlGg=>'eYFA'},HAZOai__Oeuny=>['uLkhvnHL'],yrOEvRUhB=>'leTRGn_ljQd',vOHR_=>'MoAGhshc-JRLL*aNs0n16Lc0V1CJm4_j1916156943',TMQr_DaY=>'Hq',ORpx=>'eYFA',OEXaHoI=>'',MJQeEJFLQxA=>0,_RuafJI=>'0.5'},LumhOl=>{JuoIjb=>'*/*',E...
---
{WABlGg=>{MoXkWVwtWtBwkq=>'_aac;kdvxPt;NHVRfS;ubUUbR;bBcvCG;ugA;dKuoNX',TRjxvaPmnUCCiBTJqV=>{rtiJSiR=>'349-0-12',mflaxtxp=>'349-3-1',GboTnhYH=>'1294',TMQr_DaY=>'YM'},ORpx=>'TRjxvaPmnUCCiBTJqV',rMBPIcYzSQM=>'60B35y1y205708'},gQ=>{svnVKHykek=>12,ULLneb...
---
---
{WABlGg=>{WsxTgoCmJtWj=>79121,IxiQPXuqWJqtib=>0,uJBWfGbhQli=>19,EVWCeOuOkCRHK=>0,MoXkWVwtWtBwkq=>'_aac;ugA;dKuoNX;kdvxPt;NHVRfS;ubUUbR;bBcvCG;qYxCdCMESXtRY',hLFbBmKcaW=>{'270'=>[0,26237642,0],'4996'=>[0,26237642],'7507'=>[0,26237642,0],'1208'=>[0,262...
---
{gQ=>{svnVKHykek=>0,ULLnebIOatyM=>0,ZRhPDHNIVrY_xtlY=>5},vyRyJnqr=>{f1JYOiLvzaq=>'1dQ4z4V0U1f18U0',cAJwcTUYARA=>'wdOUMUSu::YaEDulwv::UkvUkVxLJimDJN::gTgoLLA',NqBejNrf=>'-226163',EOcohaoTzCxX=>'d0k1k10620Ujqv1Q397UN50266d1fF',ULXRPQ=>'zdyeqcMi.hrjBAbU...
---
{WABlGg=>{WsxTgoCmJtWj=>64483,uJBWfGbhQli=>320,EVWCeOuOkCRHK=>0,MoXkWVwtWtBwkq=>'ugA;kdvxPt;NHVRfS;ubUUbR;bBcvCG;_aac;dKuoNX',hLFbBmKcaW=>{'270'=>[0,581740186],'3634'=>[0,581740186],'4166'=>[0,740293897],'4996'=>[0,740293897],'6920'=>[0,581740186],'7...
---
{WABlGg=>{wXoHNhqpgPg=>'508752825070',oOKKIBuV_lMAH=>'487731868339',MoXkWVwtWtBwkq=>'kdvxPt;bBcvCG;qncsPtdjUV;bIvhPoNcBr;CmgENqbDM;ubUUbR;NHVRfS',SdfQDDwyXc_F=>'370526897139',QQtNKLSyOTMQIKFszJfozNnEEYDD=>'370526897139',ipsORrCDNbxUrVdXIVIQhzXomUTtbH...
---
{WABlGg=>{MoXkWVwtWtBwkq=>'kdvxPt;NHVRfS;ubUUbR;bBcvCG;qncsPtdjUV;bIvhPoNcBr'},soLe=>{GboTnhYH=>'71369',GgsuMWn=>'199195',czlfcGJ=>'427947,610640,81130,6988990,3421483',rbMGfbYBnz=>'14206764541d4y73Dy4516413sv80'},LumhOl=>{JuoIjb=>'KqnhC/uUU, KqnhC/Z...
---
---
{vyRyJnqr=>{f1JYOiLvzaq=>'1dQ4z4U0sf0YO0E',cAJwcTUYARA=>'wdOUMUSu::YaEDulwv::UkvUkVxLJimDJN::jjFiLgsJ',dxAyzJcfMO_bdxlk=>0,EOcohaoTzCxX=>'cD1o1551k0k0nyX11PY1o1y0Q205389',ULXRPQ=>'r_cIiqAgZdwahPjcyCDtygIJ',BeDVjVAbBbGi=>'0',GwvGmVZUXUKNRExBiH=>{hSD=>...
---
{WABlGg=>{MoXkWVwtWtBwkq=>'_aac;ugA;dKuoNX;kdvxPt;bBcvCG;NHVRfS;ubUUbR',DZQUXUpvxPbU=>0,ORpx=>'LEAt'},LumhOl=>{JuoIjb=>'KqnhC/yvd, KqnhC/Hiu+gsF, KqnhC/*;x=0.1, */*;x=0.1',EfrbvjmcgPegFyg=>'eVyK, RBriKYc',LTDrnMNCqjHMKxM=>'Ex-LG',WbGVflxHyB=>13,opsml...
---
{WABlGg=>{WsxTgoCmJtWj=>15888,uJBWfGbhQli=>626,EVWCeOuOkCRHK=>0,MoXkWVwtWtBwkq=>'_aac;kdvxPt;NHVRfS;bBcvCG;ugA;dKuoNX;ubUUbR',fnItfpriiXyKjY=>['4949'],hLFbBmKcaW=>{'270'=>[0,282388386,0],'3634'=>[0,669950210,0],'1443'=>[0,282388386,0],'4996'=>[0,2823...
---
{WABlGg=>{EVWCeOuOkCRHK=>1,MoXkWVwtWtBwkq=>'kdvxPt;bBcvCG;kdvxPt;NHVRfS;ubUUbR;bBcvCG;_aac;ugA;dKuoNX;YG',hLFbBmKcaW=>{'270'=>[0,115951472,0],'1389'=>[0,473755091,0],'3634'=>[0,496650878,0],'4676'=>[0,496650878,0],'828'=>[0,496650878,0],'1532'=>[0,49...
---
{WABlGg=>{WsxTgoCmJtWj=>79121,PMunjbYyYeqVVjVyTUo=>['QahVq(0Z0y0B7393WD12)/BjjdaoM_','-8416/eYFA'],qTljwVkHFazQWRqCIgkTpQnlHc=>['1797990276','1797990276'],boJasRlnbtzNmSrjuBmcjhqZfPdtJ=>['0','0'],uJBWfGbhQli=>3,MoXkWVwtWtBwkq=>'_aac;kdvxPt;NHVRfS;bBc...
---
view all matches for this distribution