diff --git a/Makefile.PL b/Makefile.PL index 73587f5..7b45f04 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -27,9 +27,11 @@ if ( $] >= 5.008005 and want_xs() ) { cc_warnings; cc_include_paths('include'); cc_src_paths('xs-src'); + cc_libs '-lz'; postamble (qq{ xs-src/pack.o : xshelper.h include/msgpack/pack_define.h include/msgpack/pack_template.h include/msgpack/sysdep.h xs-src/unpack.o : xshelper.h include/msgpack/unpack_define.h include/msgpack/unpack_template.h include/msgpack/sysdep.h +xs-src/crc32.o : xshelper.h include/msgpack/sysdep.h }); if($Module::Install::AUTHOR) { diff --git a/benchmark/deserialize.pl b/benchmark/deserialize.pl index faa2582..2f012e7 100644 --- a/benchmark/deserialize.pl +++ b/benchmark/deserialize.pl @@ -11,6 +11,7 @@ my $j = JSON::encode_json($a); my $m = Data::MessagePack->pack($a); +my $m_crc = Data::MessagePack->pack($a); Data::MessagePack->add_crc($m_crc); my $s = Storable::freeze($a); print "-- deserialize\n"; @@ -21,6 +22,7 @@ -1 => { json => sub { JSON::decode_json($j) }, mp => sub { Data::MessagePack->unpack($m) }, + mp_crc => sub { Data::MessagePack->unpack($m_crc) }, storable => sub { Storable::thaw($s) }, } ); diff --git a/benchmark/pack_dl.pl b/benchmark/pack_dl.pl new file mode 100644 index 0000000..b2172c8 --- /dev/null +++ b/benchmark/pack_dl.pl @@ -0,0 +1,6 @@ +# -*- perl -*- +use Data::MessagePack; +# benchmark small (50b), middle (2-3k) and large hashes (~100k) +do 'benchmark/wordlist.pl'; + +my $p3 = Data::MessagePack->pack( \%h3 ) for (1 .. 10_000); diff --git a/benchmark/pack_dm.pl b/benchmark/pack_dm.pl new file mode 100644 index 0000000..24e0980 --- /dev/null +++ b/benchmark/pack_dm.pl @@ -0,0 +1,6 @@ +# -*- perl -*- +use Data::MessagePack; +# benchmark small (50b), middle (2-3k) and large hashes (~100k) +do 'benchmark/wordlist.pl'; + +my $p2 = Data::MessagePack->pack( \%h2 ) for (1 .. 10_000); diff --git a/benchmark/pack_ds.pl b/benchmark/pack_ds.pl new file mode 100644 index 0000000..f66ff77 --- /dev/null +++ b/benchmark/pack_ds.pl @@ -0,0 +1,6 @@ +# -*- perl -*- +use Data::MessagePack; +# benchmark small (50b), middle (2-3k) and large hashes (~100k) +do 'benchmark/wordlist.pl'; + +my $p1 = Data::MessagePack->pack( \%h1 ) for (1...10_000); diff --git a/benchmark/pack_jl.pl b/benchmark/pack_jl.pl new file mode 100644 index 0000000..468815b --- /dev/null +++ b/benchmark/pack_jl.pl @@ -0,0 +1,6 @@ +# -*- perl -*- +use JSON; +# benchmark small (50b), middle (2-3k) and large hashes (~100k) +do 'benchmark/wordlist.pl'; + +my $j3 = JSON::encode_json( \%h3 ) for (1 .. 10_000); diff --git a/benchmark/pack_jm.pl b/benchmark/pack_jm.pl new file mode 100644 index 0000000..07f9f62 --- /dev/null +++ b/benchmark/pack_jm.pl @@ -0,0 +1,6 @@ +# -*- perl -*- +use JSON; +# benchmark small (50b), middle (2-3k) and large hashes (~100k) +do 'benchmark/wordlist.pl'; + +my $j2 = JSON::encode_json( \%h2 ) for (1 .. 10_000); diff --git a/benchmark/pack_js.pl b/benchmark/pack_js.pl new file mode 100644 index 0000000..0eff7b5 --- /dev/null +++ b/benchmark/pack_js.pl @@ -0,0 +1,6 @@ +# -*- perl -*- +use JSON; +# benchmark small (50b), middle (2-3k) and large hashes (~100k) +do 'benchmark/wordlist.pl'; + +my $j1 = JSON::encode_json( \%h1 ) for (1 .. 10_000); diff --git a/benchmark/pack_sl.pl b/benchmark/pack_sl.pl new file mode 100644 index 0000000..d381176 --- /dev/null +++ b/benchmark/pack_sl.pl @@ -0,0 +1,6 @@ +# -*- perl -*- +use Storable; +# benchmark small (50b), middle (2-3k) and large hashes (~100k) +do 'benchmark/wordlist.pl'; + +my $s3 = Storable::freeze( \%h3 ) for (1 .. 10_000); diff --git a/benchmark/pack_sm.pl b/benchmark/pack_sm.pl new file mode 100644 index 0000000..190cf44 --- /dev/null +++ b/benchmark/pack_sm.pl @@ -0,0 +1,6 @@ +# -*- perl -*- +use Storable; +# benchmark small (50b), middle (2-3k) and large hashes (~100k) +do 'benchmark/wordlist.pl'; + +my $s2 = Storable::freeze( \%h2 ) for (1 .. 10_000); diff --git a/benchmark/pack_ss.pl b/benchmark/pack_ss.pl new file mode 100644 index 0000000..3d219e4 --- /dev/null +++ b/benchmark/pack_ss.pl @@ -0,0 +1,6 @@ +# -*- perl -*- +use Storable; +# benchmark small (50b), middle (2-3k) and large hashes (~100k) +do 'benchmark/wordlist.pl'; + +my $s1 = Storable::freeze( \%h1 ) for (1 .. 10_000); diff --git a/benchmark/serialize.pl b/benchmark/serialize.pl index 4982ff6..01afacb 100644 --- a/benchmark/serialize.pl +++ b/benchmark/serialize.pl @@ -16,6 +16,7 @@ json => sub { JSON::encode_json($a) }, storable => sub { Storable::freeze($a) }, mp => sub { Data::MessagePack->pack($a) }, + mp_crc => sub { my $p = Data::MessagePack->pack($a); Data::MessagePack->add_crc($p); }, } ); diff --git a/benchmark/wordlist.pl b/benchmark/wordlist.pl new file mode 100644 index 0000000..7afcd5f --- /dev/null +++ b/benchmark/wordlist.pl @@ -0,0 +1,4195 @@ +my %h1 = ("test" => 0, + "some typical long string for smaz" => 1, + "test2" => "2"); +my %h2 = ( + 'offered-coeds-mess\'s' => 142, + 'precursor-eyrie-backyard' => 118, + 'sensitively-adjudging' => 18, + 'overworked-repatriates' => 15, + 'antitoxin-nutritive' => 3, + 'brunt-absinthe-civilization\'s' => 190, + 'annotates-celery' => 177, + 'grounders' => 70, + 'inspirational' => 155, + 'referee-mortality' => 130, + 'snobbiest-Scottie\'s' => 187, + 'catheter-disarming' => 196, + 'Hottentot\'s' => 75, + 'Pahlavi-honorific' => 129, + 'pelts-spiriting' => 158, + 'duh-sup-Khyber\'s' => 143, + 'interplay' => 77, + 'seen-pneumatic' => 120, + 'decidedly-outfitter\'s' => 138, + 'lifesaving' => 60, + 'slags-stopper-bestow' => 86, + 'cosigners-beeline' => 168, + 'wantonness-sough' => 98, + 'excitingly-emphasize-bodkin\'s' => 151, + 'collects-Ujungpandang' => 4, + 'saddle-Br-intensifier' => 162, + 'distributing-seamier' => 95, + 'paralyses-Bertillon' => 41, + 'creaking-guerilla\'s' => 66, + 'shanty-wistfulness\'s' => 39, + 'sham-resistance-peas-harangue\'s' => 2, + 'demoralize' => 72, + 'cootie-compensation\'s' => 34, + 'horrifying-foams' => 53, + 'floozy-Lapps-battening-playbill' => 69, + 'magnums-Miami-birthrates' => 74, + 'septuagenarian-fennel' => 50, + 'cholera-aquaplanes' => 135, + 'feeder-magpies-altitude\'s' => 115, + 'rioted' => 85, + 'brig-doubts-quite-apes-hunched' => 150, + 'homonym\'s' => 128, + 'longitude\'s' => 176, + 'super-Baudelaire' => 105, + 'gages-ponder' => 200, + 'Reagan-husker-criminals' => 19, + 'toque-wigwagging' => 156, + 'grounders-showering' => 100, + 'ptomaine-receptive-July' => 94, + 'pectin-expressionism' => 71, + 'steeplejack' => 111, + 'earshot-rising' => 83, + 'espresso\'s' => 24, + 'fussiest-Pankhurst' => 21, + 'rediscovering-unpack' => 40, + 'brassieres-blasphemies' => 186, + 'alumni-verities-Thessalonian' => 45, + 'massaging-dinettes-drastically' => 97, + 'Cheetos-partitioning' => 149, + 'hogsheads-Jonson-multivitamin\'s' => 6, + 'insight-Berta\'s' => 132, + 'incidence-autograph\'s' => 152, + 'sensationalism' => 92, + 'leading-Grinch-rigidity\'s' => 171, + 'diphthongs-vamoose' => 134, + 'depriving-woolier-bereaved' => 117, + 'condos-mosques' => 48, + 'convinces-Se-motleys' => 164, + 'pools-seeks-care' => 157, + 'theologies-testate-commiserations' => 127, + 'bodkin-Sergei-explorers' => 58, + 'Johnathon-Teasdale-denouements' => 78, + 'statesmanship-rehabbed' => 30, + 'beetle-disillusions' => 193, + 'puppeteers-scale\'s' => 161, + 'undertaking\'s' => 89, + 'sporran' => 63, + 'cobbled' => 76, + 'Northrop' => 110, + 'detachment-pickaxe' => 102, + 'frankincense-stodgier' => 32, + 'amateurism-vestige' => 38, + 'quarantining-depriving' => 124, + 'superstars-Phil-Talmuds' => 43, + 'lampooning' => 107, + 'Talmuds-quarterdeck\'s' => 121, + 'dollhouses-depression' => 31, + 'sham-foretastes-atherosclerosis\'s' => 93, + 'dappled-reprogram' => 44, + 'viscountesses-Hottentot\'s' => 116, + 'thoughts-condensations' => 84, + 'subhuman-secluded' => 46, + 'typographer-artsiest-Rosanna\'s' => 29, + 'mimicry-squalor\'s' => 9, + 'reevaluating' => 57, + 'forecastle-habit-Bruckner' => 123, + 'Isiah\'s' => 182, + 'stalked-Se-Waterloo\'s' => 181, + 'diphthongs-chintzier' => 59, + 'intimidated-vivider' => 7, + 'outwards' => 163, + 'sauté-sugar' => 36, + 'strapped-scurry\'s' => 172, + 'unabridged' => 166, + 'Ashley-equably-obliqueness\'s' => 68, + 'extemporaneously' => 1, + 'milers-Berta-pools-idol\'s' => 195, + 'shoddiness' => 28, + 'Facebook-scientifically' => 47, + 'agenda' => 109, + 'mountaineer\'s' => 175, + 'punt-lampooning' => 160, + 'Rose-naiad-violation' => 184, + 'excusable-testiest' => 197, + 'effectual-Gangtok\'s' => 62, + 'brace-enterprises' => 96, + 'potsherd-rioted-swamping' => 101, + 'institutional' => 136, + 'driblets-Oise-juicing' => 11, + 'numb-hayseed-fretfulness' => 12, + 'genuineness' => 126, + 'marmalade-prisons' => 81, + 'tunefully-validity-lobbyist\'s' => 64, + 'trucks-forum\'s' => 185, + 'Katmandu-fecal-Kristy' => 88, + 'benefiting' => 104, + 'automata-saltshaker-speculator' => 139, + 'carolers-throttle' => 13, + 'masqueraders-forefather' => 145, + 'mottled-stenches-impersonal' => 8, + 'pinky-Hottentot-handing' => 80, + 'Leibniz\'s' => 35, + 'tangy-select-adjutants' => 26, + 'fueled-useful' => 79, + 'overburden' => 180, + 'Platonist-sachem-Jeroboam' => 144, + 'jugulars-endless-upholding' => 87, + 'joules-Flowers' => 99, + 'tree-deaves-Genoas-grabber' => 137, + 'tuition-placarding' => 140, + 'sequester-testate' => 192, + 'reconciliations-twiddling' => 55, + 'honorific-Hyderabad' => 112, + 'Se-magnums-GMT\'s' => 119, + 'urinary-Reagan-awakening' => 22, + 'homerooms-civilization\'s' => 147, + 'prevue' => 179, + 'studentships-spadeful' => 49, + 'jay-rollerskating\'s' => 25, + 'jig-grapes-bacchanal\'s' => 165, + 'automata-beetle-beeline' => 23, + 'ammonia-adjutants' => 114, + 'taros-madrigal-massacred' => 82, + 'Samoa-emblem\'s' => 198, + 'heartbeat\'s' => 51, + 'hovered-chiggers-Cheetos\'s' => 154, + 'bombard-sheep' => 90, + 'modulates' => 42, + 'filigreeing-applied-sough' => 16, + 'hogshead-Br-guzzles' => 174, + 'hydrolysis\'s' => 188, + 'pinky-Proudhon' => 37, + 'tray-placarding-extemporized' => 17, + 'ejaculation-weepy' => 67, + 'degrading-companions' => 125, + 'disenchanting' => 10, + 'tangoed-erasing-gladly' => 103, + 'backbit-exonerates' => 148, + 'biscuit-sequester-spiriting' => 27, + 'magpies-uncontaminated' => 159, + 'antihero-savings\'s' => 153, + 'housetop-mortality' => 33, + 'jinni' => 183, + 'rediscovering-taxying' => 178, + 'Mimi-hunched' => 167, + 'braille-harlequins' => 61, + 'writing' => 14, + 'unholy-addiction-awning\'s' => 141, + 'karma-hailstones' => 133, + 'homespun-onion\'s' => 65, + 'barrage-imprudence\'s' => 191, + 'peddler-yowled' => 199, + 'haemorrhages' => 56, + 'pneumatic' => 122, + 'Linus-feud' => 54, + 'interim-lithography' => 91, + 'sellers-firecrackers' => 113, + 'Gestapo-deems-blackguard' => 189, + 'offered-wing-grapes' => 5, + 'hypocrite-potsherd' => 146, + 'corals-Mobil-daubs' => 52, + 'Br-respected' => 194, + 'unusable-appeared' => 170, + 'outgrew-Buxtehude' => 173, + 'Bowman-tennis' => 73, + 'rubella\'s' => 106, + 'housewife-mar-throwback\'s' => 131, + 'campaigned-outgrow' => 169, + 'Telemachus-frostbitten-placarding' => 20, + 'Scottie-formulate' => 108, +); + +my %h3 = ( + 'snail781' => 3, + 'Algerian\'s771' => 'WM`JuuzZ 'j\\?lZchm7Q5<', + 'duodenum\'s1900' => 'XZwnd '=6QDi7@y@Ln', + 'anxiety-Gretel' => 0, + 'Weiss\'s1385' => 'z_g', + 'clouting981' => 'eFYoV8E_7U', + 'pomading1888' => 'T\br]T5nc', + 'Mingus-deductibles' => 0, + 'notoriously-overproducing' => 1, + 'archetypal1909' => 'q9l', + 'exhalation222' => ';5Ko', + 'Armenian-realists-semiskilled' => 0, + 'trudged-Celtic-jigsaw\'s' => 1, + 'infield-daemons-rightly' => 0, + 'run2020' => 'O5slM8OfCe8qFpi', + 'vendetta-estimation-Constantine' => 0, + 'deadlocked2090' => 'jKlg4j6gq1', + 'extorting1613' => 'Arm;p8hvE5Qj3o7YqmmR', + 'kitty-gazers1375' => 'feoVK1lXt:^>v4', + 'tailwind\'s521' => 'S@llzStD0bDuupix9OY_', + 'particularize-busywork\'s' => 1, + 'Texaco-determiner' => 1, + 'purpler-spreader\'s' => 1, + 'nonprofessional\'s2115' => 'XJmhse@eb]ys8EGOC', + 'border-knack-Tijuana\'s' => 0, + 'tzarina-stringer\'s' => 0, + 'protest\'s568' => 'gtht', + 'compressor1989' => '8IeRC', + 'planning1360' => 'OpRP7Eg;U', + 'drably-instructively' => 0, + 'treasonous-slaughtered' => 0, + 'joist-misanthropist' => 1, + 'amputee-photoelectric1949' => 'Y?gFPKrpN0h', + 'gradations836' => 'efBr 'd', + 'bleeping-petticoat' => 0, + 'torturers1310' => 'C9vdE:2ETtk]J3ctv4Z^6', + 'perish-stilt-seasonal' => 0, + 'Pareto-upland-scout-Brobdingnagian' => 1, + 'Intel\'s1774' => 'ousaCN9aerXmU', + 'sieving-bumblebees-Helga\'s' => 0, + 'Dot-cap-disagreement\'s' => 1, + 'gather\'s1795' => 'e2Jpf', + 'Rabin-carousel-agar' => 0, + 'discretion' => 0, + 'naughtier1886' => 'LX`;fonSOFRK', + 'reflected-Pensacola\'s' => 1, + 'Eltanin-purpler589' => '\Ol0', + 'overestimated394' => ']TgOKp 0, + 'muse-entrails\'s' => 1, + 'Rocco-semiskilled' => 0, + 'contaminate1245' => 'X4\cj5r', + 'recoveries-cutter' => 0, + 'Liberace\'s1397' => 'i@BE0mAztWGIbmsmQg', + 'shells1019' => 'n0i5mh', + 'appendectomy\'s1502' => ']cJU0_lno[2_uXM@TyT', + 'McKee266' => '?j2H', + 'gyps-hackle-swingers' => 1, + 'Lucknow\'s1261' => 'k[iZgy', + 'abnormally1722' => '=A5htaWs<9G', + 'solidest-Szilard\'s' => 0, + 'impair-ambushes-printouts' => 1, + 'copyrights' => 1, + 'sinusitis-trimness' => 1, + 'derivative-phlebitis' => 0, + 'resemblance\'s950' => 'DAD', + 'Rocky\'s2035' => 'k@YCcClOK', + 'Galois-Pharisee-eglantine' => 1, + 'drapes-guardrooms474' => 'QpXY9kTlGxku;p9S', + 'dumbwaiter-crumbles' => 0, + 'seeings-Missy\'s1810' => '^>R', + 'cosmetologist2125' => 'j', + 'substantial-compressor' => 1, + 'groovy-steamroll' => 1, + 'commentary217' => 'BEU9Wm02>3kO7q5fGgd', + 'ionizer-Scotchman' => 0, + 'halberd-vocalizing' => 0, + 'guesting-insulation' => 0, + 'intermediates-whelk\'s' => 1, + 'saffron-erupt' => 1, + 'Soweto\'s509' => 'A@s^rJ4 'KemrC', + 'chrysanthemum-maraca-enema' => 1, + 'treason-bleakness\'s' => 0, + 'Pensacola\'s1392' => '2;V>9\wKwt0Q9', + 'gathered-bomb' => 1, + 'knives1862' => '24^IM]lDmwRz\vaVvF]z', + 'wiretap-abruptly1530' => '1z]aOpTiJda5W', + 'overworks-perceptively' => 1, + 'blackening990' => 'k', + 'polymath-Egyptian' => 1, + 'bailout-cruising' => 0, + 'scalars-emanate' => 0, + 'cremates-fingerprinted' => 0, + 'drapes-bushwhackers' => 1, + 'mallet-afflicted' => 0, + 'windbreak-ionizers' => 1, + 'perceptiveness2103' => 'B`jNkCiy', + 'saltiness-inessentials' => 1, + 'indeterminacy\'s' => 0, + 'puzzles545' => 'oNRE;q', + 'hoodooing-checkmate' => 1, + 'count-coops-archetypal' => 1, + 'Marcus-democratized1453' => 'r', + 'determiner-Yugoslavian\'s1270' => 'z15t0:b6', + 'ionizers-stem-orally' => 0, + 'Egyptian-La-opening\'s' => 1, + 'lineman-quadrupled' => 0, + 'northerly-transmitter' => 0, + 'midwiving-mystifies' => 0, + 'mucus-bouffant' => 1, + 'intemperance-lit' => 0, + 'unfurls1822' => 'uwX@L`Ql^', + 'pats-gyps1797' => 'lVYGFi', + 'affixed490' => 'zT', + 'lockstep-defected' => 1, + 'stringer\'s785' => 'G>ryicKGESBc', + 'atrociously1386' => 'KEDKNHI9CzFUPYsq9g2', + 'jitteriest-stilt' => 0, + 'pucker-lunched1893' => 'zRujcWNdIo1tCY', + 'Buchanan-count' => 0, + 'Cryptozoic-Betelgeuse\'s' => 1, + 'former-whelk\'s' => 0, + 'quiescence\'s1830' => 'pPpv', + 'astuteness\'s' => 1, + 'nimbi-Daguerre-determiner' => 1, + 'cloudbursts-conjecture\'s' => 0, + 'respiring987' => '<2qYN6]_KU_@l', + 'cosmetologist' => 0, + 'funneling2192' => '\EPsTNwmg\s87mG:voUfJ', + 'Malcolm-rainmaker744' => 'GwgCTWn9g^[t]jdY9?cy', + 'Bluebeard-Cornelia-budded' => 0, + 'evenings806' => 'b;[8FZM974uIpP', + 'McKee2163' => 'DYG', + 'cremates2011' => '?Op=G', + 'linefeed1550' => 'LeQxTx[', + 'Benin-woodpeckers2082' => 'Ryf?CWIqQ_eu_t]cqhj', + 'Mingus-paddle-expletives' => 0, + 'Calder-Jamar' => 1, + 'affixed-dire618' => 'FdapwfIDXdKF', + 'mahatma-ballyhoo-soda' => 0, + 'urea-resurrects' => 1, + 'wishful-halberd-ditched' => 0, + 'straightaway\'s1499' => 'oFyd', + 'Dominique1001' => 'nET=4_u7qwLOY3vR[4d', + 'Comintern281' => 'B^aeAp[K@@jxqaBC=a', + 'giblet\'s506' => 'Q4Yxmp@vvq\=uO', + 'Vespucci2050' => 'Mv@;eOMpdXB\IyfGk\>6', + 'Indian-kaftans' => 1, + 'Actaeon-phlegm\'s' => 0, + 'pucker-Leviticus-Irishwomen' => 1, + 'tenderly1705' => 'u4:GmiNZ[GK8qxR?3D', + 'gallant1597' => 'b', + 'Scotch-tactician' => 0, + 'Ta-fabricate1885' => 'P', + 'yachtsman1423' => 'g', + 'Gamow-thousands' => 0, + 'underflow355' => 'njuWIr3CNzp5', + 'idiosyncratic1907' => 'u^8F', + 'journalese2131' => 'Yb>\8=cA>U7i1:2>', + 'varlet-Carmichael\'s' => 0, + 'costliness-cremates' => 1, + 'Kodachrome\'s794' => ':CR', + 'whiner-urns-embryology\'s' => 1, + 'wrongfulness\'s' => 0, + 'Cesar-cats974' => 'eXZC_cB '?XP3hJ79QgPwn`?EIFAT', + 'freckling-gallowses' => 0, + 'butcheries1914' => 'cYfIcI>2p^?KZyvl', + 'durability\'s' => 0, + 'ruminant\'s1108' => 7, + 'dashiki-reimburse' => 1, + 'lengthways-agreement' => 0, + 'marvelling-bridged-hoop\'s' => 1, + 'suggestion\'s' => 1, + 'diminish2148' => 'a2nl\_bz', + 'LyX-Thai-negligs-Clio\'s' => 0, + 'electives1738' => 'y', + 'bracelet\'s1216' => 'z?zgIbFE8b\2u1SXo2_lG', + 'dashiki-worrisome' => 0, + 'telescoping' => 0, + 'cerebella-telethons' => 1, + 'scout-salespersons' => 0, + 'bridged1474' => 9, + 'enormous-punished' => 1, + 'rained2085' => 'bh8n^eL:DOZ>fIYpf', + 'striptease\'s1401' => 'rhgc^mxS5qTSXLhG', + 'negligs-midwiving' => 0, + 'burnt-fended' => 1, + 'hint1793' => '7gyC2`Yht3BdWcxzo=', + 'foetus-detain' => 0, + 'Maccabeus\'s1147' => '?H?HqF;O0JmzL7', + 'cynosures-cluster-Sicilians' => 0, + 'dairymen658' => 'kf44kzVukpp@mze[ozO', + 'stopping-aurae-unevenness\'s' => 0, + 'humane-spumes1980' => '1oEY5Z3ENiTU', + 'bookcase\'s1741' => 'aJy 'Qw]14', + 'cruising-discommodes' => 1, + 'centenary-earthenware\'s' => 0, + 'boggiest-fertilize-bunged' => 0, + 'vacate-cap-Melchior1249' => ' 0, + 'fluting-hotbeds' => 1, + 'underpaying-Ozzie-schnapps\'s' => 0, + 'smarmy-cellars846' => '8OokV@]p9Sm7@I', + 'emanate-excavating1395' => 'qKG:?Qc5O:k', + 'psychosomatic-starboard\'s' => 0, + 'wonted1155' => 'qHPv 1, + 'certainly-ficklest' => 0, + 'olden-follies-vocalizing' => 0, + 'planning466' => 'wqo', + 'fluting\'s528' => '7jyEav', + 'nave-germinal-hyperspace' => 1, + 'Hollywood-puzzled1032' => '>1;k^', + 'militaries' => 0, + 'furring1942' => 'a1y0`CCLoGRG '^', + 'pooch-chillier-Tereshkova' => 1, + 'conjecture\'s240' => 'aj', + 'khaki-gift-volt-Missy\'s' => 1, + 'stews-shells2002' => 'ue 0, + 'crossovers499' => 'NEBgRhbWm]VkV', + 'sequel-circumference\'s' => 1, + 'stampeded-cleaver\'s2105' => 'nRKvTSScgw', + 'petticoat1153' => '4vOhdHjN', + 'enzyme-actuate-bubble' => 0, + 'earmarks538' => 'sQ;xpbjD; 'WF4uFs9', + 'expansively689' => 'XHXhDvp', + 'maim-picnicker-circumnavigate' => 1, + 'racers1915' => 'dX\U`<1', + 'misanthropist' => 1, + 'mean-treason\'s780' => '^J_StErd6@?L6\28K', + 'sharpens-demonstrated' => 1, + 'introverts-Malaysian-pixel\'s' => 0, + 'hawthorn2198' => 'i', + 'hotbeds1833' => '=kHF', + 'cad566' => '4[>jLVW8', + 'skaters205' => 'W8]Et=]<:[', + 'erodes299' => '0>kcw]QBn93LEgLIM', + 'convalescence-unfurls' => 0, + 'mercenaries-Barrera-perk\'s' => 0, + 'hatchet\'s855' => '@]UaBbk=NGs', + 'bullfighting-Wm' => 0, + 'orchestrating476' => 'Q', + 'ballyhoo\'s2094' => 'G509>?^YW@Jaj', + 'foxy-Reagan\'s' => 1, + 'inaugurate983' => 'V', + 'Rh-outlandishly-damnedest' => 0, + 'concise-treasurers709' => '1j@5ox1GZIkbm3sBI', + 'maraca412' => 'TwOjN6:Uwu', + 'reputations-destitute' => 0, + 'Aimee-sensitizes-Lilian\'s' => 0, + 'cantata934' => '?@fEv\B?asQ', + 'envy-slogs344' => ']Wsto', + 'crookedest-Antoine' => 0, + 'sidewalls-monster\'s' => 0, + 'wishful277' => 'Q=Nqtc<]jG3', + 'Calder-affixed' => 1, + 'creases-sputum-marvelling' => 0, + 'launcher\'s' => 0, + 'sprite-yuck\'s605' => ']uHoo:2yPzTVS^?To@', + 'heckle-dowdies-caramel' => 1, + 'decorative-damnedest' => 0, + 'lovesick1757' => 'K;M_e', + 'Togo-aircraft1603' => 'z?e<', + 'creases748' => 'x', + 'subscriptions1834' => 'CO '>aY5AKJOk[Jc', + 'skater711' => 'aa9oDs', + 'Hurst-suppliants1926' => '2bKhXr2sR8@]x[8iOuBH', + 'Botswana-puzzler1342' => 'O', + 'marshes-Lucy-chilliness\'s' => 1, + 'checkmate-pleasant214' => 'h[>GjOflAyp31If', + 'meritoriously810' => 'uxA3DBLGNP9m;Ba', + 'Huguenot-outings-indeterminacy\'s' => 0, + 'Nintendo-Newfoundland\'s1489' => '31qz\Fw@L', + 'goriest-transposition\'s' => 1, + 'rained-Noe-phantasmagorias' => 0, + 'sojourn\'s868' => 'ml:pdvxnV5^kje 'TqsavxBGKmG39yj0ix`', + 'Dot\'s1560' => ']WTDUL>tgYyWRGKeje', + 'midwiving-divests-muddled' => 1, + 'stems-moldier-soda' => 0, + 'prefect-Qatar' => 1, + 'reelections-sofas-lintel\'s' => 0, + 'Lucy1280' => 'G4Hiv@', + 'crackdown-Lupe\'s' => 1, + 'retrain-slaps-concurrence' => 0, + 'backstop-obviated-warranty\'s' => 0, + 'maligning-Buchanan1164' => 0, + 'quitted-transfigures' => 1, + 'locations-impressive' => 0, + 'nautili2099' => 'wIuK[Mw', + 'eglantine1286' => 'jsi0\HMb98BS', + 'dinner-propulsion1924' => '?p59zgj=KMFkHT', + 'Turner-deadlocked555' => '7g?8', + 'furring1059' => 'x\hPHtwT', + 'ecological-magnificence\'s' => 1, + 'notes1501' => '9]Cl?Z5xc@l`@Df`\OHx\'', + 'aspirin465' => 'BfmR[ue^MB;;L\Q@', + 'sashes-severity' => 1, + 'inserts1668' => 'tPUW4B?tkx', + 'Barnum601' => 'H@3K', + 'espionage861' => '2@Ey]93pjeYz', + 'discretion-Togo\'s' => 1, + 'kinfolk-Theresa-granted' => 0, + 'earmarks-remotes-Cesar' => 1, + 'evil-Rh-coke-confessed' => 1, + 'healers-Helena' => 1, + 'Algerian\'s2142' => 'LT_ThE2r^3CFCgu', + 'stagnating-adjustment\'s' => 0, + 'repletion\'s' => 1, + 'Cameron-vocalizing-rollerskating\'s' => 1, + 'blockaded-evil' => 0, + 'quickening986' => 'j>[JdhOnms3a]8=V', + 'tactician2106' => 'Lgu0t7]s', + 'singeing-outskirt\'s' => 1, + 'racers726' => 'Ckoek', + 'maraca-draft-conga' => 0, + 'traced-plumage' => 1, + 'Dooley-queered347' => 'CCm0ASq\ts\dv60TZI;qt', + 'Jonathon\'s209' => 'S^]e?RPuID5\lwZ^', + 'technically845' => '=K8;DH3_v1VI', + 'subscriptions' => 0, + 'Esmeralda\'s' => 1, + 'handwritten1016' => '>:kJu?iLO', + 'ani525' => '=', + 'stain-facade' => 1, + 'gushy-fended-unclothing' => 1, + 'abruptly-belts1627' => '2?[c=p<59l?Ljv@W^', + 'northerly2047' => 'sK8wW8O:m4GP5reN1orJ', + 'lovesick-bellyaching' => 1, + 'Permian-detain-Downy' => 0, + 'crinoline\'s718' => ':;:E=gWfmbNl\q3J9l2', + 'seeming1241' => '\:wk', + 'overruled-ousted' => 0, + 'graced-fronts254' => '^wIN07W', + 'muddled-limes-rowboat' => 0, + 'Havarti-theater' => 1, + 'Voltaire-Comintern' => 1, + 'emasculation1675' => 'a]7L3c7ZE>\s8>@n3N', + 'filmy-tuft' => 0, + 'udder-uncharted1062' => 'ukUuj>bDv1', + 'homer-Erich\'s' => 1, + 'atrociously322' => 'W', + 'pushcarts-doping' => 0, + 'vised-pattered-implicitly' => 1, + 'generalize-unclothing' => 1, + 'pixel\'s1935' => 'dGV '7vPI0=Mday', + 'damnedest-creating1747' => '0EY=[', + 'regaling667' => 'eGZS@JdNuDpqb[Xd:', + 'Dot-trickiness' => 0, + 'hatchet-inaugurate960' => 'Cf^Xd^Msugqygq766r', + 'commissioner-crashing' => 1, + 'familiarized1674' => '1:q@rG1Ayo\2cln', + 'liquefy2185' => 'Yx:UUtLH?w;I;K;_:r0w', + 'Helga\'s1228' => '?', + 'transparency-Langerhans\'s' => 1, + 'obstinacy-plucked' => 0, + 'decommission' => 0, + 'zephyr-mouthwash\'s' => 0, + 'stockings-Proust-tint\'s' => 1, + 'diacritical-bracken' => 1, + 'umbilicus\'s1701' => 'Qx>w', + 'reconsidered325' => 'Y?', + 'wafer-incriminating' => 0, + 'Florida-typhoon' => 1, + 'Myles-renouncing' => 1, + 'invisibility\'s' => 0, + 'distention-gift-peered' => 1, + 'admitted-Lucy-vocational' => 0, + 'etches-vainglory-pampers' => 0, + 'stiffly-Andy-mailer' => 1, + 'circumlocutions-Verdi' => 0, + 'thunderhead\'s1465' => 'd9Kf\LbIFU>?Y;m', + 'ruminant-laziness\'s' => 0, + 'square-Krishna' => 1, + 'renouncing323' => '5L:J', + 'telex-notes1296' => 'hGxz>ZKSqeid:VvTUgfW', + 'mastering-overturning' => 1, + 'bawdier-narcissus' => 0, + 'cervixes-inseparable\'s' => 0, + 'Actaeon-Pharisee\'s' => 1, + 'stag\'s1264' => 'I', + 'petunia-swingers' => 1, + 'undersize-naughtier' => 1, + 'oscillators-escaroles' => 1, + 'impregnation2175' => 'gW3GfqalkQ>h', + 'ditched-Hicks578' => 'W@8JD6sB', + 'riskiness-comers' => 1, + 'Hicks-hospitals917' => 'VqB', + 'outings-swats' => 0, + 'cherubic-Preminger\'s1028' => 'ty8L@Ho', + 'moving227' => 't4\mL_VhjR', + 'hoodwink1864' => '9>^G>vHDURe6;', + 'Anderson-bewitching2132' => 'Iw5^L>1_D>aR:GGMHT]q', + 'portraitist1592' => 'a30z;FwT2F4', + 'thallium-gang-ruling\'s' => 1, + 'clouting1254' => 'WwW=jZ6XYN', + 'Chicago-stem-patinas' => 1, + 'expansively859' => 'pF3F', + 'holography\'s2081' => 'Z]vNtGJEDahPrw', + 'affixed-Nikon\'s' => 0, + 'curios-costliness' => 0, + 'Cf-earful-micron-compiling' => 0, + 'Dipper-Davidson\'s1858' => '\xvbOqi9HqSDO0Q', + 'loanword-recoveries1527' => '_0_uI', + 'draft434' => 'OWBZx]Qo]ILtm', + 'orally-opening\'s' => 0, + 'Kantian-inserts-brake' => 0, + 'wrench-esteem' => 1, + 'homer-horseshoed' => 0, + 'insurer-Vaduz-Lupe\'s' => 1, + 'Donatello2109' => '^AGOq:ngM=LuP', + 'panic-agar-tenderly' => 0, + 'Lassa-handwritten-thallium\'s' => 1, + 'punished-cerebella' => 1, + 'adulterant267' => 'pdHi', + 'mean-drunkenly' => 0, + 'fallacious-explanations' => 0, + 'skaters-Ana\'s1625' => 'J5i>VEBdMXu`HHE', + 'stepmothers-jigsaw-Lucknow\'s' => 1, + 'extorting-puzzled' => 1, + 'telex-afraid-reconsidered' => 0, + 'urns-divined213' => '[', + 'libeller-purpler' => 0, + 'duped-rainbows-handcraft' => 0, + 'cart-crinoline-emasculation' => 1, + 'enclosing-decorates-viciousness\'s' => 0, + 'thirsty-Menkar-idealist' => 0, + 'York1960' => 'URHE[GL@aDNyjh', + 'jigsaw-hint-bookcase\'s' => 1, + 'Intel-nuthatch-pattered' => 0, + 'induing623' => 'C>V8?`', + 'Kringle-donkeys-narcissus' => 0, + 'clemency-meritoriously' => 0, + 'area-roused1767' => 'rd`FZwJmTIHm', + 'sunblock-capering666' => 'fvnPpEDH:mpGJQB?@', + 'reconsidered-kaftans' => 0, + 'disfavored1846' => 'L<5QW\aLZW^RK', + 'cents-trustfulness' => 0, + 'knickers1169' => 'lVdz[vCkn', + 'vast\'s345' => 'W', + 'astuteness-sinusitis\'s' => 1, + 'persecutors-clemency' => 0, + 'wretch-flagpole-blocs' => 0, + 'bracelet-geographically' => 1, + 'perceptively1020' => 'g[N7ObF5', + 'venture\'s1446' => 'ih6', + 'sponged-hallelujah\'s1569' => 'My', + 'Comintern-silkiest1649' => 'E^mXVZ>tO5', + 'Highness-statically' => 0, + 'relative\'s1198' => 'uhuI7O', + 'lamentation1061' => 'vD_NFLZH>T`Qs\qIt', + 'realists-schooners-Dodson' => 1, + 'kinetic-transportation' => 1, + 'humorlessness-undercutting' => 0, + 'mailer1121' => '[kJTakbTM', + 'giblet-bailout860' => 'cib', + 'cherubic-stems-riddance' => 1, + 'deejay-arithmetic' => 1, + 'assignable664' => 'XhRVeS?', + 'spools-humorlessness\'s' => 0, + 'horseshoed1482' => 'CKXMVT42N`2fdfw', + 'stockings757' => '`', + 'cap-afflicted-expletives' => 0, + 'muse2048' => 'j', + 'dollar\'s1406' => 'OVVgN7Jq', + 'stairwell-enclosing-venomously' => 1, + 'alarmist-maximum\'s' => 0, + 'beagle-ironclad\'s' => 0, + 'kinfolk-outskirt\'s' => 1, + 'Dixielands-initiating' => 0, + 'victualled-daftest' => 0, + 'audio-affluently' => 1, + 'townsman-affixed385' => '_a?4P?uqT9k_Bg', + 'emanate-diacritical801' => 'T>G`7Vstb99ulFXJYXW', + 'librettist-sequel-therapists' => 0, + 'continuity-ostentatious' => 1, + 'former-plunder1451' => 'IuyXFk', + 'lawlessness527' => '\LOI5afpX', + 'nightie-comers' => 1, + 'olden-Aida253' => 'nPlqN6', + 'deductibles-crashing' => 0, + 'stooped-buff\'s1620' => 'q3', + 'married-shills1515' => '0XKYhK4`B`[475w\GP', + 'décolleté1285' => 'HE[FHYVQm@`@N', + 'jagged-works\'s632' => 'Kr;J2;Vy5q:l[OYFAodL0', + 'pirates1852' => '48r3HHnZ1`U]bDUlk', + 'godsends1277' => 'acIiv', + 'pentathlon-spelunker' => 1, + 'debuts-catty' => 1, + 'jagged-Qiqihar-torchlight' => 0, + 'eyeteeth1809' => 'y;um`', + 'inaugurate-hosts1572' => '><5Yj30^k`iruHEv_wXn', + 'resemblance\'s1072' => 'bgPAm', + 'toned1170' => 'wSl;gnpffMrjL=', + 'espy-stooped365' => 'eaL?B4z9MZW1VQr2', + 'giddy-outcry-bloom' => 0, + 'finance\'s1434' => 'lLo[174pRVhnah:[8@F', + 'dishcloth1075' => 'zlgKS1Zz>:', + 'gobbled-keel-scalars' => 1, + 'contralto\'s719' => 'x>', + 'sensitizes-phlegm\'s' => 0, + 'Somoza-solvent\'s' => 0, + 'bulky720' => 'zxC^LYXFMU 1, + 'repayment-weirs-khaki\'s' => 1, + 'cattle-wiring\'s' => 1, + 'leek-sealant\'s1951' => '3=\W^SZO3`zqRj;Z:hmH', + 'concurrence279' => '8:lzMZGtr>0Ds@Av', + 'showier-doping-facade' => 1, + 'seen-bullfighting' => 1, + 'demonstrated-wainscoting\'s' => 0, + 'sybaritic-cottontail' => 0, + 'Vauban-Cf-humorous-hatting' => 0, + 'constitutions' => 1, + 'rockier-phlegm\'s' => 1, + 'Chi-mystifies-smell\'s' => 0, + 'incriminatory1251' => 'Ql>][I3VUb', + 'localizing-hallelujah\'s' => 0, + 'rosary1845' => 'rbOMuPJeboGnYa', + 'carbines-solemner-moroseness\'s' => 1, + 'scabbards-bullet\'s' => 0, + 'babysitter\'s2054' => 'V`', + 'deliverer-enjoyment' => 1, + 'prolog-sissies-possession\'s' => 0, + 'count-Botswana' => 0, + 'explanations' => 1, + 'overeats-ruling\'s' => 0, + 'swatted-exclusive-bookcase\'s' => 1, + 'boogied-transgressor\'s' => 1, + 'astray-explanations' => 1, + 'rind-chirping' => 0, + 'crueler793' => 'Jt>IvJxI<', + 'schismatics701' => 'hj=TuiEDNoWNQ5', + 'checkmate-inaugurate' => 1, + 'Alaskan\'s1802' => ']YfVLI8TBUjO]6]w^', + 'agar-slaughtered' => 1, + 'saved-jagged-Jocasta' => 0, + 'viciousness\'s1033' => 'XEeP7CNHy:]hFYVSv9', + 'Luis-summarize-frontier' => 1, + 'icon\'s369' => 'AZxS]hS 1, + 'geology-Thai-joist' => 1, + 'waxen-binaries' => 1, + 'hatting-mallet\'s' => 1, + 'dune1848' => 'PF:@Iy', + 'tobacco-Meighen\'s317' => '^mYdC[', + 'holder-underworlds' => 0, + 'sharpens-guardrooms1544' => 'Nu5', + 'entreats-Adolfo1206' => 'DQLStj', + 'incriminatory1786' => '[NaD0iY4uM?R5UuZ9Zach', + 'seen-carousal\'s' => 0, + 'transmissions812' => '>lFk5jtbw5qf>m:]nL: 0, + 'chokes-etches-Erich\'s' => 1, + 'Gorey-Winesap-nightie\'s' => 1, + 'centrifuge\'s1211' => '3yQQ>CisC7stE]V>', + 'York533' => 'KZp1AO6f1l '30r8JxLE52OzW^bp', + 'bracken-attenuation\'s' => 0, + 'hostiles924' => 'w', + 'Eskimos-inseminate-Langerhans\'s' => 1, + 'pedestrianize609' => 'RefRu9z<`viLbYFTVVj', + 'wowing-tout-catty-sponged' => 0, + 'adulterant-repletion\'s' => 1, + 'letup-discernment1645' => 'dqbg`2d', + 'Turner-successor\'s' => 1, + 'streakiest-vibrancy\'s' => 1, + 'trudged2001' => 'qrs>xiRx', + 'typhoon-unclothing' => 0, + 'monsoons256' => 'X7G^ 1, + 'courtroom-brake-discretion' => 1, + 'reapers-crossovers' => 1, + 'shoelace\'s2063' => 'W=vS?IG', + 'licentiates452' => '@_I_\BT_', + 'deactivating-beleaguering' => 0, + 'Florida-loiter1566' => 's8\WO6s`hWqz', + 'successor-misappropriation\'s' => 0, + 'Wyeth894' => 'NOdAXMq0STq7WO^mq]EE[', + 'sierra\'s2158' => 'O]uK', + 'sloughs-Qatar-rightly' => 1, + 'libeller\'s1340' => 'r=bao\Cn[A63P`lUMP', + 'peach-impeachments1230' => '>', + 'Vespucci-GNP-statically' => 0, + 'hatting-bunged' => 0, + 'Cf-Qiqihar2000' => '1Pf:', + 'permitted-unsnapping' => 1, + 'trustfulness' => 0, + 'area\'s906' => 'x8:PJiuzLKGmHPFATm8H', + 'Armenian-servomechanism\'s' => 1, + 'Wm-eighteen\'s' => 0, + 'ani-derivative-diction\'s' => 1, + 'petticoat-violet\'s' => 1, + 'insisting798' => 'Hzt@hVjUlqSy?P4iHOzw', + 'petunia1162' => 'o;A_`Lge\R9NR5fA', + 'discourtesies-supervisions' => 0, + 'fans901' => 'YX', + 'adulterant-creole-how' => 0, + 'incriminating236' => 'v_kOOyAb8v', + 'Scotchman-circumlocution\'s' => 1, + 'Steele-sorrels1789' => 'xKGU', + 'Cesar586' => '\PCp9=kIfD_', + 'cots-militaries-Campbell' => 1, + 'Somoza\'s1593' => '3i;', + 'overturning398' => 'Wb`FJ8Q_I:=:O', + 'edgiest-carefuller' => 1, + 'polisher1073' => ';', + 'fingerprinted-notoriously' => 1, + 'sieving865' => 'PaK9', + 'diction-flabbiness\'s' => 0, + 'enema-stews1836' => 'xLfp[ip[G]I4Y', + 'pampers1902' => 'otU', + 'Irishwomen1046' => ' 0, + 'virtues-Ozzie-gnawing' => 1, + 'soft-acquittals' => 0, + 'wolfing-convalescence\'s660' => 'i', + 'trough2078' => '6@c61Wa4', + 'Alcott-rollerskating\'s' => 1, + 'archer1283' => 'iqg', + 'Durex379' => 'C9mJ=3@cSLFmXNIEQCj', + 'Colin-spate-tout\'s' => 0, + 'creases-finalists-quiescence\'s' => 0, + 'lengthways-unions-fail\'s' => 1, + 'Cathleen-southwest427' => '?x', + 'abstainers1718' => '4eLb8', + 'Erich-bilks-drawing\'s' => 0, + 'nonmembers201' => 'u', + 'astuteness\'s1271' => 'bn<`Y', + 'coke-Chandra-mestizo\'s' => 0, + 'border-emu\'s1352' => '9Yl', + 'swagged2166' => 'gI8Tv', + 'Newfoundland\'s1450' => 'CHZ', + 'bight791' => '?gaen4bVE:pr>E3fSl', + 'prolog-rained-overworks' => 0, + 'embryology-abnormally' => 0, + 'afraid399' => 'Q 1, + 'Basie-pushcarts-award' => 0, + 'inquirer\'s1904' => 'VW> 0, + 'cosmetologist1821' => 'E69[3:5', + 'Langerhans-rollerskating\'s' => 1, + 'rowboat-richness-pennon\'s' => 0, + 'LyX-shutters' => 1, + 'sissies-tips-subtleties' => 0, + 'national-chirping' => 1, + 'disputant-staph\'s' => 1, + 'cheerful-enjoyment' => 0, + 'Irishwomen418' => 'MoXUI>>g2=C@', + 'Galois820' => '5u '50=aJqvYGBf; '\uUb38npk95T8PL;=0z 1, + 'venture-quiescence\'s' => 1, + 'circumlocutions1048' => '6[EH', + 'nautili908' => 'd[dlzSXwU', + 'uranium-nectarines' => 0, + 'Augsburg1217' => '_J\^Yv6', + 'weirder800' => 'aYIBQo9X', + 'moving421' => 'sPvWgRL[2^DNZK;Eze', + 'dashiki-burg\'s' => 1, + 'crueler-gybed-cloverleaf' => 0, + 'undercutting1669' => 'wWMn1Sw=L', + 'punished1181' => '@:q', + 'divorces1925' => '9f5]NRm;mI9ArNN_2>zLT', + 'demonstrated-refereeing' => 0, + 'toned1831' => 'pOiebdDLBKmw0;fNzVx', + 'rowdiness-godsends' => 0, + 'mucus2028' => 'XY@C]dZ4vwbTIfPMcU', + 'snail828' => 'bzRbp4KRYL^pjyK0GzC', + 'inkwells1018' => 'xdfTDAWDDM6z@', + 'seethe-fishwives-jagged' => 0, + 'loamiest-humbler-beachhead' => 0, + 'clearing\'s318' => 'Wf4Tu5>pHp3r4c]K>sKtB', + 'plebeians2042' => 'n[@r>tYKQbWW', + 'crossovers291' => 'N90B[eC?ni?z 0, + 'affections-Vauban-particularize' => 1, + 'insisting426' => 'kS`1tiK4VtO8XmygLb', + 'waxen-U-Carina-onus' => 1, + 'compiled-sissies' => 0, + 'Noe-Whitney-Huguenot-materialistic' => 1, + 'wedlock-oligarchic' => 0, + 'Reginald-Lupe-negativing' => 0, + 'kisser-peeling\'s' => 0, + 'dishcloth-La-Nice\'s' => 1, + 'fertilize1292' => 'tEFh1qUmfdiH8`S', + 'archbishopric\'s' => 1, + 'satrap1000' => '2wzjoCsx;up '5 'Nua1s756Wc', + 'murals-photocopiers-fresher' => 0, + 'blasphemer1850' => '_F26qL', + 'hatchet\'s1472' => 'zx', + 'nontoxic-Galois397' => 'J;BRT]MX', + 'wiring\'s677' => 'Lz[f]Tkgz\hYCxGagU8', + 'Pareto-boutique-hoodwink' => 1, + 'onus-bantamweight1618' => 'JqR[rjUaHGNN4LA^_', + 'bacchanalian1008' => '?NXF8F\Vpm', + 'spreader-mountaineer-apertures' => 1, + 'straightaway\'s' => 1, + 'loneliest-wedlock\'s2068' => 'H>O^x@', + 'prescriptions875' => 't:b1<8J;trM_G:EivBzL', + 'satrap-skaters-authority\'s' => 0, + 'lit-respiring-puritan\'s' => 1, + 'slather-reelections2100' => '9Of:1X', + 'Marcus965' => 'n:@', + 'Mingus-triceratops\'s' => 0, + 'vortexes-singeing-telethons' => 1, + 'Wiemar1275' => 'd8', + 'dentist818' => 'E^3AG6bnw5uQI6a@B', + 'economics-fresher' => 1, + 'implicitly-sputum\'s' => 0, + 'powwow\'s2121' => 'iBuXxeWZlyV23q '0m1Q '8`NQFXzPw9AiYmgG', + 'keel-Lemuel\'s' => 0, + 'wainscoting\'s1172' => 'eYFAZTg9;SXS9e\>F', + 'produce\'s706' => 'ZLOk', + 'ruling\'s1106' => ';f1?s4RM6', + 'snowball-rightly1034' => 'nyn', + 'envy-moldier-Chimu-waves' => 1, + 'volunteer-sympathized' => 0, + 'vised-fairness\'s' => 1, + 'philosophers-foxy' => 0, + 'richness-bulky' => 1, + 'silkiest-vibrancy-impair' => 0, + 'deadlocked1259' => 'jpB]R06h?iJf`OJ', + 'coeducational-prearrangement' => 1, + 'carrion1780' => 'Y', + 'gallant-cheerful-clemency' => 0, + 'tinder-thumping' => 0, + 'wowing-deliverance\'s' => 1, + 'graduate352' => 'AM4_HQZNG2 5, + 'overlies834' => ']s4IR9BM=F0CYE 'M6f9VrzYJinl`N0y1c[KS', + 'fallacious513' => 'u_q13MzK8K@', + 'rosary1269' => ':T:6i', + 'Goodall-overweening' => 1, + 'phlebitis-reapers-swathe\'s' => 0, + 'Dipper1125' => 'XPbhIY?u[Hbhr8t', + 'Trevor-lynched2128' => 'jvQ`Ct', + 'Viking\'s2024' => 'nD?XE^Ha@D', + 'brusqueness\'s402' => 'O^mWX?8V>l\yFM_o=trq', + 'misinterpretations885' => 'y', + 'anxiety\'s2065' => '<', + 'kisser-Jocasta647' => 'DjM', + 'goofs-crossword\'s' => 0, + 'restraints2018' => 'PFy\^f', + 'crescent\'s428' => 'cN', + 'ski\'s559' => 'jjz44:0B5=agOC', + 'chokes-tailwind\'s' => 0, + 'bellyaching' => 0, + 'sharpens1058' => '1D@AiT', + 'apace1919' => '8GzYKRN9gH24v9Cog', + 'cart-cannonades1811' => 'xdWYVmVXn[1uJIE', + 'oared-lynchpins961' => 'lDv9QL', + 'freshwater611' => 'z4PdLgUanGDwt', + 'seeings-Irishwomen' => 1, + 'OD-bumblebees-nonprofessional\'s' => 0, + 'motherly-emasculation' => 0, + 'Holcomb1052' => '5saT]W96CF7]zOTf>u5', + 'Eddington-rollback\'s' => 0, + 'divined-yuck-erudite' => 1, + 'nautilus\'s343' => '6T@:LI', + 'visage-swathe-atrociously' => 0, + 'Eskimos2159' => 'Aw2 'gUxP8U>', + 'muddled-durability\'s880' => 'afNWXlw', + 'caveman\'s714' => 'Wmud]]hZo[zP2iJ:>x', + 'proverbially620' => 'L5Wugou[rVH0', + 'sequel1180' => '9QHY;\Gbiy`Z2`AV', + 'Holley-restraints' => 1, + 'rendering\'s944' => 'U', + 'cushioned-divests' => 0, + 'Pharisee\'s1263' => 'UD4m^L:;UskXU_jNnC1`', + 'infield-commissioner' => 0, + 'Dipper-germinal\'s' => 1, + 'restraints1432' => 'h0humYzFBV5', + 'cottontail520' => 'I6vsUE?', + 'funneling1728' => '6=8LmsfLbfZko', + 'protectorate' => 1, + 'snowball-convalescence\'s' => 0, + 'osprey-corruptest' => 1, + 'letup2147' => '\f3eYpBtp', + 'pampers-clearing\'s1595' => 'l>BBPJtaWVXTgr', + 'Minuit226' => 'ao?jX=F7h\w>MFau8\]KW', + 'meritoriously278' => 'T\'', + 'freebase-Ramos-inflexibility' => 0, + 'Esmeralda\'s619' => 'OXcryavg3X', + 'corruptest1658' => 'lMee', + 'burnt1776' => 'rYH[pB5uPK[DA8cq]m', + 'carets-uncharted' => 0, + 'nave-observers' => 1, + 'picnic1679' => 'udupiF@RoWPw', + 'indexed-gorier-skilled' => 0, + 'gewgaw\'s2140' => ']\D0', + 'slew-mavin-warranty\'s' => 0, + 'ionizers1239' => 'op]X:G:Fyl]]z8[k89=', + 'Meighen\'s415' => ';xtrjG]:fxV', + 'Hurst295' => '35c8FzYaiZ2>0:jBGF', + 'Bluebeard-decommission' => 1, + 'meritoriously' => 0, + 'impregnation760' => 'O^^vkuuM5l', + 'insulation' => 0, + 'waltzes1531' => 'TDnd`eYhMRscTo', + 'transfusing577' => 'U^]si', + 'Kodachrome\'s1066' => 'pp`X:cSEorKHFtxj', + 'escaroles-radar-feline' => 1, + 'gritted1656' => '6SIPRM=hV>B:DxxlH:', + 'pied-Jacobs592' => 'g4L', + 'reflected953' => 'SP2nRqD3QjrGO7F9Tm_sG', + 'supernovae661' => 'r', + 'suggestion-underflow' => 1, + 'crank496' => 'i6hHLcePh', + 'Calvinism-Barrera' => 0, + 'Newfoundland\'s815' => '3Kf7flRy', + 'concurrence1297' => 'x', + 'wrinkly-raised-repayment\'s' => 1, + 'nuggets1197' => 'FQsE=o6sa4m6S3', + 'debug-cots' => 1, + 'blamer-courtroom-Chandra\'s' => 1, + 'disfavored-chimes-Hicks' => 0, + 'bridge534' => 'o5N2c:ZMp:sHVKNn^g', + 'venomously-protectorate' => 0, + 'guesting-Campbell' => 1, + 'fingerprinted2041' => 'yVJj=FvbS1', + 'exhumation\'s2008' => '@yr4pZR>^KN`', + 'Eddington-criteria' => 1, + 'dowdies728' => 'fPD^101D', + 'hostelry-swiveled' => 1, + 'knives-nobleman-skater' => 0, + 'transmitter1787' => 'PnAV1xrn0', + 'ecological1014' => 'HJYDRvBA9O', + 'traffic-raised' => 0, + 'providentially1429' => '^aG:fjnyQZm', + 'cherubic-bongs' => 1, + 'lovemaking-negativing' => 0, + 'assignable2123' => 'jjnNk4n4_xuv1m', + 'mercenaries1619' => 'LmdIO=T;', + 'dowdies-seafarers-stamens' => 1, + 'windward-cheerful1994' => '62Wh', + 'undercutting361' => 'm_', + 'Krishna1777' => '8js6?WPlXh:3', + 'fresher-cats2187' => 'YJCH\do6dxI58k 'Q[F', + 'hostiles340' => 'F', + 'fertilize-vendetta' => 1, + 'Maxine-Nice-Highness\'s' => 1, + 'Guatemala1688' => 'b=zSDgO>wI`oEE_MkV', + 'Chicago823' => '1h', + 'pumpkin-actuate' => 1, + 'Lucy-Holcomb2200' => '=sQ\cU^82\?', + 'water-Erich\'s1279' => 'su', + 'ditched-quadrupled' => 0, + 'hicks-corrupter-dweller\'s' => 0, + 'calibrates574' => '3:V5BAINC6?', + 'stepmothers-torchlight' => 1, + 'humorlessness\'s' => 1, + 'jigsaw-cloths1284' => 'JwgX6GS[TTi_ypTi@', + 'skater-compressor1209' => 'HuQWUPUI8[Rp', + 'Proust-cheerful' => 0, + 'overestimated-chilliness\'s' => 0, + 'beaux-Jarvis\'s895' => ';p;QG_FJ', + 'restraints-sexiest' => 0, + 'playpen-polisher-debauching' => 1, + 'snail-toughness-transfusing' => 1, + 'primroses-anatomist' => 1, + 'demonstrated1814' => 'ci;lnhMlQ_H', + 'daemons1139' => 'ovzyO``_w8U7_1', + 'produce-unevenness\'s' => 1, + 'godsends-pats-Brianna' => 1, + 'exclusive-micron-tips' => 1, + 'ostentatious-silkiest' => 1, + 'Barnum-overestimated' => 1, + 'ballyhoo-besotting1892' => 'E;', + 'leek260' => '_J@L>;7R', + 'cartilaginous-Ca' => 1, + 'bogeyman-exhausted' => 0, + 'barbarism1735' => 'QOVQzSo48YC3hb', + 'sir-wartier' => 0, + 'Pensacola\'s312' => 'BMWt', + 'besotting-Cardiff\'s' => 1, + 'moldier-tangibility\'s' => 0, + 'wrongfulness\'s1763' => 'SOH', + 'technically-square\'s' => 0, + 'deejay498' => '', + 'bumblebees-obviated634' => 8, + 'windward-bumblebees' => 1, + 'discerning432' => 'Ik_o\0qNrS>W3J', + 'rarity-starvation\'s' => 1, + 'Gustavo899' => 'xES', + 'Wiemar-cloudbursts' => 1, + 'styling411' => '2I9Oz16BO_ZbO282=4GJ', + 'Reagan\'s1958' => 'E3aIvR0Ks', + 'indexed-obliqueness1517' => '=TenfBY7tZ9gRDRM', + 'corruption-Carina' => 0, + 'saltiness-resurrects670' => 'v7YHWF', + 'midwiving-misappropriation\'s' => 1, + 'Tunguska-pumices1611' => 'DwOpm', + 'romanticizing1546' => '3hKUTcgDw 'gA4;j:R:', + 'skater-spreader\'s' => 0, + 'taxying1639' => 'tL;:z?lKo5', + 'nontoxic-curtest' => 1, + 'ostentatious1734' => 'RgNHcA', + 'duty-denouements' => 0, + 'recall-Maldivian' => 1, + 'convalescence\'s827' => '\CY2Q', + 'penitentiary' => 0, + 'amperage-sprite\'s' => 0, + 'lazybones\'s228' => 'GFyNfkkn', + 'andiron\'s2102' => 'Q7>m 'V8[p6FEJT', + 'portraitist-misdemeanor\'s' => 1, + 'anatomist1940' => 'L', + 'voodoos451' => 'JIgJDrU^', + 'western-matrimony-slob\'s' => 0, + 'finance-Brobdingnagian' => 1, + 'rankle870' => 'rV=C1[m;\VsNB[><', + 'statically' => 1, + 'cellars1156' => 'FUL9UAy90GN', + 'relay-Raul-Huffman\'s' => 0, + 'smarmy1713' => 'muOxcmZTH', + 'outings-unions-locations' => 0, + 'Nice-motorist\'s' => 1, + 'volley1460' => 'CUa5bKaQf:rNvF:O', + 'rockier-befit-fallacious' => 0, + 'Steele-theater' => 0, + 'bongs-drably-Algerian\'s' => 0, + 'lingo-pushcarts' => 0, + 'dentist789' => '1:u 1, + 'meritoriously-calibrates' => 0, + 'booklet\'s879' => 'pDd8OtKy?6;B:d2kEn', + 'eloped-encoder-Bullwinkle' => 1, + 'muddled460' => 'K4X?NcZK35][R\kT', + 'stems-battlement\'s' => 1, + 'Highness-yawns' => 0, + 'postcards1026' => 'Bwajonl0RtOKDJK4GXPB', + 'muse-humorous1977' => 'wy_1^Vg:hYycssK6', + 'Chicago1654' => ']?ql13@V[_rL>J?:yK>kY', + 'outings750' => 'uweiIl', + 'planned-stripper\'s' => 0, + 'Gustavo584' => 'd`XeA>vz0l0?wXGGcmIDN', + 'recall-wolfing1140' => 'gOcrEC\3eeGBuZKn0X', + 'destinations1025' => 'ZlZD', + 'holstering-journalese' => 0, + 'crackdown1068' => 'CZ9GX', + 'negligs-dweller\'s' => 0, + 'daemons-swats-richness' => 1, + 'tallness1088' => '3it`Z8Ldwk', + 'claptrap-dweller-outlandishly' => 1, + 'doping-Pensacola\'s' => 0, + 'cart-Gettysburg\'s1851' => 'auAaPI@k', + 'Tijuana\'s784' => 'W6W2aXZ^^^CNp>7``G', + 'proper-recite-volt\'s' => 1, + 'Head1278' => 'egfEei3qM=dGuhu^E', + 'bullet-enjoyment' => 1, + 'vast\'s878' => '^M?kctJHdH3`D=:dq', + 'jagged1186' => 'KGc3g@t3i3[?R5]', + 'shadow-Florida-count' => 0, + 'bevels-hotbeds-localizing' => 0, + 'recession-acquittals' => 1, + 'permitted2160' => 'i]IGLwBMPw8GprmB', + 'bulky1234' => 'MEmda>75df7b', + 'tinder-Reagan\'s914' => 'G<', + 'authenticity-buoys-caveman\'s' => 0, + 'annually1971' => 'U_^9XvTiFM@ 0, + 'substratum\'s782' => 'PZz', + 'stopping1927' => 'S', + 'apologist\'s540' => 'L^KqRonyfB_9H114MQn:8', + 'cowpoke-Somoza-pernicious' => 1, + 'Bullwinkle-Jogjakarta\'s' => 1, + 'Houyhnhnm-sociology\'s' => 0, + 'rainbows779' => '0khzc^LXuEq;p30Kip]7C', + 'rudiments552' => ';nhkS7_KHdn]4dNvnK6x', + 'skater-commutations' => 1, + 'divorces1098' => 'tB', + 'Damian1896' => 'Tly', + 'divorces776' => 'f09]J1KG[s', + 'windward1820' => 'Q=EV5', + 'Botswana1664' => '^W2nz6:3', + 'saint\'s625' => 'K:l', + 'Liberace-geology-windbreak\'s' => 0, + 'Vaduz-yawns-inapplicable' => 0, + 'Erich-carets2089' => '31d', + 'coordinate-republics' => 0, + 'soil-Oshkosh1378' => '9MgBkii', + 'inaugurate723' => 'QIPBEc2Qu', + 'swats-entrails\'s' => 1, + 'misinterpretations' => 1, + 'gushy-bacchanalians' => 0, + 'journalese-Gamay1475' => '0EMwXC', + 'admitted-weight-preppies' => 1, + 'gybed-destinations' => 1, + 'pumpkin\'s1698' => 'UBfDz:Y>', + 'knockwurst873' => '9HaXj]Gk]H', + 'Mo-icon\'s721' => 'UwOMU', + 'archaisms1473' => '2ZzmRpOT5W>8N:qE2>iql', + 'alterable233' => 'N6J8de7', + 'modernized-sybaritic' => 1, + 'unsteadily-randy-wretch' => 0, + 'finance-favoritism\'s973' => '4ou_;nFFI', + 'proverbially590' => 'xag>4r7DwQV', + 'technically-hoagie' => 1, + 'fronts-foible\'s212' => 'qFcO 0, + 'shoelace\'s803' => 'DP_xYC`5kXQ[MmgD61V3W', + 'affair-Armenian1095' => 14, + 'induing371' => ' 0, + 'technician-castigates' => 0, + 'nectarines1873' => '7q=1UfKB7CliuwGg]39', + 'foxes-detectors' => 1, + 'peered-entreats-pencil' => 1, + 'damnedest-protectorate\'s' => 0, + 'solvent-cots-bridge' => 0, + 'Malaysian573' => 'Vs]]IT:Zk', + 'hoodwink211' => '7UrL 0, + 'Voldemort-Voltaire' => 1, + 'gallowses871' => 'taUVCx6r1OZ', + 'inquirer\'s320' => 'tx7=1jaGP\TaROz^2', + 'queered-riddance' => 0, + 'sharpens-crinoline\'s' => 1, + 'yawns1813' => 'OYU@xKn>1MJrZi', + 'tips-appeal\'s822' => 'VtLPxCOH>', + 'Antoine-Melchior' => 0, + 'favor-Cf-colander\'s2169' => 'ih=', + 'fabricates-holder-master' => 0, + 'backpacker1865' => 'b;SrU', + 'overestimated-stripper\'s' => 1, + 'assessing-mixtures1891' => 'jp^ypsyU3J', + 'substratum\'s207' => 'E\8', + 'Valium-schismatics' => 1, + 'Graffias\'s' => 1, + 'Leiden-uneven-sausage\'s' => 1, + 'spoilt-weariest-carbines' => 1, + 'shadow-U-landholder' => 1, + 'incriminatory1037' => 'n:; 0, + 'dweller-extinguishers' => 0, + 'renovators-exhalation' => 0, + 'shells-imperious1634' => 'sR]z11DuCl3^E', + 'mistreating1390' => 'HEm6Qg\hDVm\dCWQbPK', + 'arithmetic1723' => '?S1', + 'effervescing1159' => 'pJ>2AAqjM64`uhTkhR`', + 'granted-cocoons1204' => 'zEWr1', + 'perk-weirder1368' => 'z92h`qdYemAtTD?', + 'carefuller1138' => '5oTOH>:S=?:ug', + 'statically-tobacco\'s' => 0, + 'Secretariat1483' => '_c[\cdf', + 'bittern-suppliants502' => 'O[', + 'loanword-fourteen\'s1804' => '_Q2lkLBU32s8U=LRb]X', + 'chokes740' => '39w:krl@_@@MIRh:', + 'oared-trousers\'s' => 1, + 'swathe\'s996' => 'eU;IK\6', + 'localizing294' => 'o', + 'moving-humbler-Comintern' => 1, + 'lawlessness826' => 'R', + 'apathetic-granted' => 0, + 'sinecures439' => 'W', + 'cervixes-duped-buff\'s' => 1, + 'networking311' => 'yXw<8N', + 'swathe\'s333' => ']uJk', + 'semifinal\'s1455' => 'Fbg\5f8wacqiw[kjOx\3?', + 'overeats-megaliths1419' => '3I[', + 'fraught-punished1539' => 'ryuzB@K[N:Aa', + 'cosmetologist-bobble' => 1, + 'counterfeits-mestizo\'s' => 1, + 'schnapps-sensitizes' => 0, + 'chrysanthemum-windshield\'s' => 1, + 'fluting\'s1806' => 'zOnpYf8m', + 'passerby-entrails\'s' => 1, + 'afraid2186' => '>F\2a@AOdCt8Df', + 'Jogjakarta-expostulate' => 0, + 'disarmament\'s' => 0, + 'unions-Garland-GNP-handwritten' => 0, + 'follies-Atlas-wrench' => 0, + 'wrongfulness-stem-appendectomy\'s' => 1, + 'emigrate-queered-ionizers' => 1, + 'stems-alphabetizing-churn' => 0, + 'citrus-swagged' => 0, + 'oscillators-Newfoundland\'s' => 0, + 'Luis-area-oatmeal-slenderizing' => 0, + 'hostelry\'s1481' => ']d`A6Tjysu', + 'fronts1422' => 'qE9x3W_cB', + 'chillier-vised-spicy' => 1, + 'distention-zilch-undersize' => 1, + 'rowboat-Gerardo\'s' => 0, + 'pats-romanticizing2013' => '5?Y', + 'motivator-scuds-water' => 0, + 'perk-ballyhoo-facade-bilks' => 0, + 'letup-acute\'s' => 1, + 'deleterious' => 1, + 'marshes-rudiments531' => 'I', + 'staph\'s892' => 'DvMO\4;5xdM\', + 'Secretariat1056' => 'h^RQKm27lDI_7', + 'deejay1715' => 'Y[`jE0', + 'funneling-launcher\'s' => 0, + 'campiest-Permian\'s' => 0, + 'Chimu1825' => 'FQ5Qv9o8g9T]5oY4O', + 'bribery-blueberry-Chicago' => 0, + 'Northeast\'s359' => 'gjE[', + 'coops1089' => 'Bkk;Es2w@', + 'portion-riffing-amperage' => 1, + 'amputee-pumpkin\'s2118' => 'k=', + 'lateral-Sankara\'s' => 1, + 'undercutting-perseverance\'s' => 0, + 'forgot-Sherrie\'s629' => 'pf', + 'lingo1366' => 'X=^A[816;q1g '^::Zr]fP6cqRrSCHtI', + 'Tunguska-Noe-loaned-confessed' => 1, + 'bloom-bittern\'s1952' => ';za5[v7]?To', + 'swankier1623' => '\mpvI^m9;si9NB', + 'Beverley\'s1053' => 'zK8MgA', + 'wimp-affair-giblet\'s' => 0, + 'masquerading-triennial\'s' => 0, + 'nimbi-pedestrianize' => 1, + 'planning-protectorate\'s' => 1, + 'Zachary-fezzes-smooches' => 0, + 'fatalistic435' => 'hN^rpC:0`Gn[@', + 'semifinal\'s' => 1, + 'no-ironclad-sniffles' => 0, + 'slogs-inapplicable' => 1, + 'naturalness\'s330' => '8C05IU;RA`yYh', + 'Krishna945' => '\0ALS5GM^Ky`i1pZn', + 'repayment\'s1326' => 'OfaMJSNh', + 'crueler-pantyhose' => 1, + 'journalese-oleomargarine\'s' => 1, + 'mountaineer-congresswoman' => 1, + 'arithmetic2056' => 'v 0, + 'tallness-produce\'s' => 0, + 'zephyr\'s283' => 'q3ERt^qVU[X', + 'disconnections-hyperspace' => 1, + 'launcher-transfigures' => 1, + 'Lemuel\'s2161' => 'Nj4= 'bMbLY=', + 'vane-concise1687' => 'OmH1;ZNw42tX50_5?', + 'Atatürk\'s1808' => 'hy@FOvvEn;6gQ', + 'continuity\'s1357' => 8, + 'buggies-wimp897' => 'kQjJXn', + 'bomb-puritan-rung\'s' => 1, + 'submersing2026' => 'ZgseUiTq[?hiwc?=o8', + 'keel-inquirer\'s1215' => ' 1, + 'Aida766' => 'H5MfR6Sif:RchRJIggc?J', + 'lap-toggle\'s203' => '[J?y[H4', + 'prose-decommission' => 1, + 'tobacco\'s329' => 'G5xwLkjqG<>@z7ke9c', + 'puzzles-Downy-drapes' => 0, + 'pushcarts-magnificence\'s' => 0, + 'halberd-flagpole\'s1681' => ' 'NJuR', + 'upland1985' => 'JdIcVk', + 'atrociously-ballyhoo\'s' => 0, + 'volt-Pensacola\'s' => 0, + 'etches1840' => 'k9GguPU=q6:WZ', + 'took1142' => '\0y]fZ93xnJk>C4ZzI^Je', + 'caveman-nightmarish571' => '?V@vfMz', + 'victualled' => 1, + 'limes1766' => 'JfpjItcfzM\n8', + 'adjustment\'s' => 0, + 'Meighen\'s1113' => 'jw@AgE_why7SRR[]d9uF', + 'nautilus\'s1621' => 'WpSnbfI:LPyc9O', + 'idealist712' => 'dCNlX6NKTe4iH`ZMHgkd\', + 'rejuvenating1740' => 'mwn<:eO', + 'lazied-plucked659' => ';jF8J', + 'checkmate-asylums1965' => 'sA_X81^0', + 'espy-quarterlies' => 0, + 'deeds-waywardness\'s514' => 'oJ7;', + 'Menkar-Kodachrome\'s' => 0, + 'runabout749' => '9k7Fxlt29d', + 'puzzled903' => '8CatywfW1aV:`sv?a\RmH', + 'crossovers-bellyful\'s' => 1, + 'thunderhead-bubble' => 0, + 'sexiest-derivative-toadstools' => 1, + 'binaries480' => 'i2^rr;1:V[tQ8k[ZmJ', + 'crossword\'s1798' => 'zeZCBTB:pl?me', + 'sunblock530' => 'l', + 'maximum-zombis' => 1, + 'typhoon-gang-semifinal\'s' => 1, + 'scout-Reagan-giddy' => 1, + 'transfusing-patinas' => 0, + 'bewitching-salving' => 1, + 'Lupe-blocs-negativing' => 0, + 'vibrancy\'s1009' => '2;K`2aO\7i?dyE', + 'oligarchic-Pareto' => 1, + 'Chi864' => 'Y', + 'impair-Carey' => 1, + 'authenticity-Soweto\'s' => 0, + 'satrap-amperage-treasonous' => 1, + 'evil-flambeing2188' => 'xixB;jU>kbgN', + 'shutters354' => '9hQY5k>q@PDkGYA:`fN', + 'Buchanan915' => '7\87ID6qr:T4AcgLm', + 'victory372' => 'ix8Ideo5`s 0, + 'venture-riddance-holography\'s' => 1, + 'electrocardiograms980' => 'HIvHDRKWq_pMgJK2oc', + 'atheist-buying1720' => 'g_fe15f', + 'notoriously-clouting' => 1, + 'venture\'s1143' => '[]aI', + 'afflicted-slaps' => 0, + 'supernovae-genitalia854' => '8k9a;8_bT`6fLq', + 'sexiest-plebeians' => 1, + 'ditched1857' => 'j4pZ', + 'paddle-caramel' => 0, + 'felicitous648' => 'TPznYQGuRq@EyEU?Q26z', + 'thirsty-unfortunate-receivership\'s' => 1, + 'debauching-disputant\'s' => 1, + 'muse-salespersons' => 1, + 'Winesap-stoical-onus' => 1, + 'leek-vestigial' => 1, + 'sobriety883' => 'L;_z]Qi', + 'puzzler-Assyria-seen' => 0, + 'retort-Missy-succumb' => 0, + 'cloths-Rabin\'s2194' => 'k2WOHpR>ort;[`sK;', + 'Lora-volley337' => 'AdQrnPy', + 'Alcott-Tijuana\'s1785' => '0rxFX5', + 'cellars-Saskatoon' => 0, + 'manics1514' => '5Nnbe2KB?h_^F@2\', + 'nuthatch1371' => 'R8I8HRV>', + 'prepaying-square\'s' => 0, + 'introverts206' => 'RQN3E=@d0WMVaM5bet', + 'drawing\'s247' => ' 1, + 'excavating1484' => 'qp9@pv;LXd5Fdw', + 'Intel-authenticity' => 0, + 'freshwater2107' => 'Yv', + 'micron-GNP-negligs' => 1, + 'leanness-hyperspace' => 1, + 'wiring\'s1849' => 'S6SUsgj[;cAWI', + 'introverts1348' => 'IPB>@RHSNV\LDSMNm=i\', + 'groovy363' => 'DA6xk2Ue\BLX', + 'windward-copyrights' => 1, + 'generalization-templates' => 0, + 'disputant-recollecting' => 1, + 'koala-obviated-workdays' => 0, + 'knives-Slavic1661' => 'knk;1^>JI?Aay:T=M', + 'Saskatoon-spectroscopes' => 0, + 'antechamber\'s' => 1, + 'aspartame-conspire621' => 'g0clB^[;', + 'Bullwinkle-squeezer\'s' => 0, + 'motorist-Wiemar-excellently' => 0, + 'whiner-moussing-noshing' => 0, + 'freebase1082' => 'VMCxS`m', + 'withhold-Melchior' => 1, + 'chirping-geology\'s' => 1, + 'moorland988' => 'FgA3fnbr;o`L3b\kL>', + 'Algerian-wainscoting\'s' => 0, + 'Kresge-granule\'s2178' => 'TBu734[q?I;P', + 'Krishna-telex1408' => 'yL', + 'tuft-gorier-parabola' => 0, + 'puzzles475' => 'nLi8M8P[CnQ6M8\', + 'debauching-leniency\'s' => 0, + 'reconsidered2171' => 'GazGc=_p', + 'kinetic-brunette' => 1, + 'skilled-gybed' => 1, + 'gnawing-admitted' => 0, + 'naturalness-wonted' => 1, + 'caramel-Rod-reconsidered' => 0, + 'deductibles741' => '\j5FNN1fzxXvDPjENvcq', + 'triennial\'s' => 0, + 'impedes-bobble1800' => 'x\K9', + 'cassette2112' => 'Aqn864', + 'Missy-Nevadan' => 0, + 'moroseness\'s1149' => 'IPUM:e2q`Rt3@c1=tF 1, + 'rained-drubbed-dismissing' => 1, + 'housemother1513' => 's5E:Py', + 'Eltanin-bevels-sorcerer\'s' => 0, + 'impedes-flights-capitulation' => 1, + 'Dot\'s560' => 'Q@_', + 'moorland-compiled' => 0, + 'Leviticus-buff\'s1274' => 'CM', + 'named-icon\'s1982' => 'I', + 'smell-reasserted' => 0, + 'knickers1213' => 'TgR]9H3l', + 'outcry-Figueroa\'s' => 0, + 'radar-realists' => 0, + 'hotbeds-caddies-Cryptozoic' => 0, + 'petunia-timbers1979' => 'lbxeXf:S>8U', + 'disagreement\'s' => 0, + 'cutter-erodes-Barr\'s' => 1, + 'Calder1083' => 'tFg84oQtl\qxUUdkF;y?', + 'masqueraded' => 0, + 'assemblywomen-water' => 1, + 'Damian-ventilation\'s' => 0, + 'Levant-brewer' => 0, + 'syrups-Australia' => 1, + 'waled1843' => 'M', + 'lunched1373' => 'mcI@gjS9nmjXvG9y', + 'synthetic-Steele395' => 'i', + 'graybeard-Nootka\'s' => 1, + 'how1351' => 'kr^X?G?wnHa', + 'erodes-Liberace\'s2022' => 'l;BuX`tbt', + 'dumbwaiter' => 1, + 'divorces-attribute\'s2172' => 'CWir=g;Sz]Podddc', + 'householders' => 0, + 'puzzler1448' => 'J0b1A', + 'genitalia-technology' => 0, + 'website450' => '\', + 'straightaway-kinetic' => 1, + 'Northrup-Goliath-Oprah\'s' => 1, + 'waltzes838' => '@wWe>;', + 'stylish-staph\'s1128' => '3c]bFrI>Rrx=?=eZE?[', + 'mountaineer-taxonomy' => 1, + 'aurae-deadlocked' => 1, + 'bevels314' => 'R8nc1TYC4CM 0, + 'yachtsman-saunas-rationals' => 1, + 'humorous-sacks276' => 'fi^TMI_hOSA5iqLis_opp', + 'Ozzie\'s505' => 'ps[HaWLo^mxATGlp>6i', + 'relative\'s238' => 'wR_aLvwkXaWkzh`', + 'Mahavira1719' => 'Wv2NB', + 'appointments1117' => 'I', + 'square-sharpens' => 0, + 'Dictaphone\'s655' => 'Ep', + 'deejay-purpler-murderously' => 1, + 'Missy\'s1112' => 'QF^yLm=4Ko@:rLEVa', + 'Longfellow\'s' => 1, + 'groveler\'s1376' => 'Lm85iOoKEy', + 'chirped377' => 'BFQnr2o>7jZ', + 'ulna-attribute\'s510' => 'l', + 'hint-mutt-hallucinogenic' => 1, + 'Cameron-wimp-holstering' => 0, + 'latterly-arithmetic' => 0, + 'sojourn\'s778' => '^@gRa', + 'actuate-crochet\'s' => 0, + 'smooches-reasserted1064' => 'LiG', + 'carefuller1890' => 'Q]', + 'lateral615' => 'vF0so_e?92thPC7\:ik1Z', + 'sear-arachnids-Lagrange' => 1, + 'substratum\'s1905' => 'B', + 'freebase-fans-recollecting' => 1, + 'cox-stupidities250' => 'f5KGNLCiSLYtsyMza64><', + 'insomniacs-hallmark-Rh\'s' => 0, + 'trudged-expostulating' => 1, + 'contralto-Eskimos-Theresa' => 0, + 'windshield\'s715' => 8, + 'curios-Randy-drouth\'s' => 1, + 'displeasure\'s550' => 'sm2', + 'opts-enema-spreader\'s' => 0, + 'sobriety-continuity\'s' => 0, + 'toadied-McKee' => 1, + 'rubier-centralization' => 0, + 'appendectomy\'s' => 0, + 'seen-transposition\'s1815' => 'y\?VLQS_W:GWs', + 'respiring-skater-inhospitable' => 1, + 'physically501' => 'oz2uODWIm:', + 'Luis2137' => 'B', + 'naturalness\'s' => 0, + 'localizing-master' => 0, + 'Argonaut-puzzler' => 0, + 'clatter\'s446' => 'dCjL7j?h', + 'gobbled1195' => 'o', + 'overestimated1682' => 'Td>x2T==cv03nFCktR', + 'Head-Tunguska-Malcolm' => 1, + 'fourteen-estimation' => 0, + 'reeks-servomechanism\'s' => 1, + 'unfortunate285' => 'dE1DLT1Ds', + 'telex-produce-Cornelia' => 1, + 'permitted752' => ' 'YlnVtZ1W58RbmqZQ6RM', + 'transcribe-uranium' => 1, + 'Rh-waled2168' => '8J7c75Shyf=k@', + 'emasculation633' => 'o`[PB2y1hp9bd;SH]', + 'peculiarity\'s' => 0, + 'saddling-zephyr\'s' => 1, + 'torchlight-commutations1944' => '0zAaOxfmw[RD', + 'semifinal-Barents-Maccabeus\'s' => 1, + 'Helena747' => 'u5`aF`CfNv', + 'early-Rothschild-cloths' => 1, + 'circumnavigate1135' => 'r', + 'spawn769' => '@]F>Oc 0, + 'Maldivian-married' => 0, + 'mucus-cursorily1670' => 'FqxSe93_', + 'sniffles-discommodes' => 0, + 'nutrient\'s736' => 'x`6W\CR7FF`:uLzMG', + 'roused989' => '0ts0]_OGAp2VjzomBz\:', + 'queered-gluttonous473' => 'S_y;ppb:e1k2k7pirVmu', + 'gushy-Beverley\'s' => 0, + 'chirping-Carmichael\'s' => 1, + 'fluting\'s1258' => 'NG1`I:', + 'dowdies-geographically216' => ':pFZpZ;77P:', + 'weariest-sinusitis\'s' => 0, + 'diacritical-archbishopric\'s' => 0, + 'erupt-drunkenly' => 1, + 'quotas-Leviticus' => 0, + 'photoelectric1226' => 'I6tNR1fsV7`x\', + 'Soweto-Greta-palaver' => 0, + 'trotting-Kringle' => 0, + 'catty-mending2044' => ' 'YGG?b^7]dXUpl=WYY', + 'Singh-abstainers1295' => 'j25tDx8y5zAgDezC', + 'hurriedly-chairmanship' => 1, + 'loiter-Dixielands' => 0, + 'famishing-portico-taxonomy' => 0, + 'loiter1324' => ' '9LfT', + 'begets-sorcerer\'s2075' => 'PL]K?;Z2Ju', + 'rent\'s1651' => 'XcbINVLxmzFAnL=rknEx', + 'unaccented1246' => 'sknl', + 'Sankara\'s1347' => ' 0, + 'sanction\'s1402' => '9NBkEkKuidoa', + 'micron774' => '@MLIh2TMIu]jke\', + 'leniency\'s422' => 2, + 'ventilation\'s1778' => '[U48NbU1\eH', + 'stepmothers1630' => 'Pe]bGff', + 'spelunker414' => '_\HwzqqHKY', + 'economics-Leviticus' => 1, + 'overate-onus1459' => 'BnUJ4\uCD1BI1y', + 'carets1308' => '<', + 'creating995' => 'bPNO[\XsVY', + 'matrimony-direct-overcharged' => 1, + 'Teutonic-leek' => 1, + 'Orlons-reconsidered' => 1, + 'Actaeon-waltzes' => 1, + 'wells-tout-phantasmagorias' => 1, + 'explanations557' => 'Z', + 'bullfighter-Atlas' => 0, + 'inflexibility725' => 'zhaWIO4nR7\;LxHCyE4', + 'anaesthetizes1227' => 'K', + 'outlandishly389' => '3281PtNh\C5ImaVDPw', + 'nightmarish230' => 'm9>3v:D`vfS6 '0ZP]laR`\;e', + 'stupidities1044' => 'tAp[L5lCUzdU02rh', + 'unfortunate-electrocutes' => 0, + 'drawing\'s2027' => 'HEnLMbLTjE', + 'ostentatious674' => 'TQn61N>t5QXBzE', + 'Nintendo-magnificence\'s274' => 'He>oJf8T_YLr', + 'Rodrigo\'s1447' => '3q_4`42mC\bAbi', + 'transparency1166' => 'I9v^PiU8LyW@Hx^', + 'Erich-complementary' => 1, + 'Viking-attic-design-filmy' => 0, + 'mockeries-intemperance' => 1, + 'nautili1327' => 'n', + 'lingo-Myles1410' => 'TW`:FSWoaIU5gL', + 'brewer-baneful' => 0, + 'completion\'s1666' => '8enJWG?``I2I9', + 'foetus1189' => 'McM0E', + 'polisher-tinderbox2154' => '1g_:PhHY;', + 'tallness941' => 'H_MerlGG5JdO;tTaT7qw', + 'geographically-tips' => 0, + 'Erich\'s921' => 'd9`pi@E9c\S=j]YF', + 'lap\'s1325' => 'l', + 'ironclad-wiring\'s' => 0, + 'gorier-Sankara\'s' => 1, + 'Excedrin758' => 'u<@2QLf', + 'besotting-encroached' => 1, + 'venture-cynosures-Wm-realists' => 0, + 'babysitter-transposition\'s' => 0, + 'virtues-clout\'s1522' => ';h 1, + 'vane-paddle\'s2167' => 'n', + 'triumvirate-master' => 1, + 'rosary-suffix\'s535' => 'q^4\=;[3xmoxIW0 'eARj@kCSf^', + 'meritoriously-dismissing' => 1, + 'Guatemala231' => 'ZbgfcrUvR@IQ6j', + 'omit-sunstroke-wardroom' => 1, + 'insubordinate-affair' => 0, + 'vibrancy\'s579' => 'yxaT[pUtwEdh5tV`=', + 'disbursement2098' => 's8Iy0x48fEmg9ty', + 'corruptness-Gamow' => 0, + 'perceptiveness' => 0, + 'reappear-guesting-dumbwaiter' => 0, + 'criteria-Davidson\'s' => 1, + 'tubas-audio\'s' => 1, + 'roused-affections' => 0, + 'certainly-Cryptozoic' => 0, + 'eloped687' => '7SWEz8[', + 'Wm-unaccented2110' => 'n0l9', + 'moorland-archaisms2083' => 'O]7Yj6EAOXe3JGP_:mm\', + 'Randy-cloudbursts-mouthwash\'s' => 0, + 'initiating-painstaking\'s' => 1, + 'burlesquing1525' => 'A2c_aHI3Ch9vjA;Gm', + 'Dominique1487' => 'rI=ZfAwJ1ZrlS', + 'owner635' => 'V4>gS4hy', + 'marshes-bight-Vauban' => 0, + 'transfusing' => 0, + 'person-fans1548' => '?OZpYmB9EA2sPVKeen', + 'android-precocity\'s' => 0, + 'crochet\'s1655' => 'mckDDM', + 'sweating1177' => '5ztiNNR', + 'crescent-vised' => 1, + 'wowing1601' => 'rKbR77fQk@tyjrdKTUV', + 'victory1584' => '[Rz3a;RA', + 'bribery-tangibility\'s' => 0, + 'cantata-chimes' => 1, + 'inserts-initiating1765' => 'EUBQ@xfRk]CTL>JqH@Dd]', + 'beltway-drably735' => 'swr6B4S[S5s:JpI=5E', + 'drubbed1035' => 'xS', + 'dispirit-stupidities' => 0, + 'venomously' => 0, + 'tactician-respiring' => 0, + 'wartier1519' => 'XTqdgyOhfWn0xQ', + 'orchestrating1107' => 'PrDCfxYs;]', + 'rainbows-rainmaker' => 1, + 'CinemaScope' => 1, + 'inapplicable-sofas-inspection\'s' => 0, + 'Kishinev\'s1711' => '78FY5', + 'clemency-expostulate' => 1, + 'annexation-Tereshkova' => 0, + 'besotting1176' => 'm', + 'insulation-muse-cocoons' => 1, + 'bongs-lexicography\'s' => 1, + 'proper-Atatürk\'s' => 1, + 'draped-atrociously316' => '>', + 'Actaeon-beltway1413' => ':PKhELqO_=]J5>x2ZUS0l', + 'bittern\'s1301' => 'NPo', + 'negation1256' => '^wu', + 'vocalizing' => 1, + 'graduate703' => 'HD', + 'Togo-wonted1807' => 'K2LETf>c50xvroAa', + 'freckling1488' => 'a]cHSo8J', + 'fended-graybeard' => 1, + 'oscillators-circumference\'s' => 0, + 'olden-Australia-nontoxic' => 1, + 'indeterminacy-broth' => 0, + 'exclusive-pressings' => 1, + 'pleasant-sucks-rephrasing' => 1, + 'hoagie-therapists' => 1, + 'veterinary-entrails\'s' => 0, + 'riveted977' => '9vO[', + 'western-conjecture\'s' => 0, + 'Rod847' => 'p`Ce[VD\u=9K4', + 'commutations-lunched' => 1, + 'telex-slather-Kodachrome\'s' => 1, + 'drably-crumbles-saint\'s' => 0, + 'butcheries1696' => '9t', + 'leanness-inimically' => 1, + 'tallied876' => '>', + 'saved937' => '_2_OZVL7s0J5hv', + 'bushwhackers1426' => 'BZZ;eEu', + 'ski-intermediates' => 1, + 'overcharged2040' => 'j20oc3Gem<_l=toc=cX', + 'theater1604' => '@uTEVt2LpS=XbZdK;Xlrd', + 'Oprah-pixel\'s2096' => 'aOJc:', + 'wordplay\'s1872' => '=qZ4ReWt5?', + 'gurus-timbers' => 1, + 'Jogjakarta\'s1695' => '6dw>w85C', + 'puritan-bleakness\'s252' => 'HHFRZeDv', + 'belabor-Irishwomen' => 0, + 'pumpkin-unsatisfied' => 1, + 'parochial-repertoire-shills' => 0, + 'telex-buggies-Szilard\'s' => 0, + 'Pam-puzzled-singeing' => 0, + 'stepmothers-proportional' => 0, + 'prescriptions1057' => 'dVpf\voQbY[?Qo3a', + 'Teutonic331' => ' 'TVYP>4 'DTSoY6x_x3k_u^?dz^::', + 'jitteriest-blamer1090' => 'jPEj9[ABwEWoeC', + 'undergarment-rung\'s' => 0, + 'sappiest2196' => 'mXu', + 'traces-kitty1182' => 'uDE;`D4pyGH@R\VkIud', + 'border-Voltaire' => 1, + 'precipitations' => 1, + 'disgust-besotting-vainglory\'s' => 0, + 'commutations-toned-maim' => 1, + 'oleomargarine\'s' => 1, + 'babysitter\'s2095' => 'I>Ls', + 'blazing-bloom' => 1, + 'clouting700' => '238GqV1VS1GgV_F 0, + 'pawning2122' => '5l 'FpmCOmKR0i', + 'Houyhnhnm-sheepskin\'s' => 1, + 'romanticizing-sir-paeans' => 1, + 'improvidence-tubas-tiara' => 0, + 'inkwells767' => 'ql6pFNXto', + 'disruptive' => 0, + 'clemency-randy1997' => 'r:T 1, + 'acute-precocity\'s2066' => 'd@Bw', + 'rescue-ruminant\'s1622' => 'On_m>uwcQ;ARt1VIw', + 'riffing-loneliest1363' => 'lmC_Q`:N]zw', + 'emigrate1998' => '<1c', + 'motorist\'s517' => 'C', + 'soft-inhere-windshield\'s' => 0, + 'swathe-gyps-trickiness' => 0, + 'Chi-trimness599' => 'X', + 'twinkling2157' => '_gHtxk[PDS', + 'wafer-carets-bridge' => 1, + 'inauguration1022' => 'o\q', + 'monsoons-curios' => 1, + 'handcraft1200' => 'NWM<0Tm', + 'misbehaving-micron' => 1, + 'humorous1335' => '4d', + 'petunia-stockpiled' => 1, + 'blocs-furor-gift-gorier' => 1, + 'thallium\'s455' => 'F4Hx', + 'recall-design1826' => '^HekE[WlKCTQRv', + 'worksheet-fishwives' => 0, + 'sheepskin\'s' => 1, + 'anaesthetizes-patron\'s' => 0, + 'lovemaking-torchlight' => 1, + 'Adventist\'s796' => '?z0@pckv', + 'creating-reconsidered' => 1, + 'swats1803' => '0p;]BOlD:', + 'rendering-peppercorn\'s' => 0, + 'Eltanin\'s307' => '_KK9D', + 'gorier-eyeteeth' => 1, + 'programming-trustfulness' => 1, + 'provincials679' => 'H8 'gIOH 'O\qa8]', + 'Yugoslavian\'s1755' => 's', + 'conk-cap-unsnapping' => 0, + 'Argonaut-eczema681' => 'BM', + 'hobbit265' => '97mFjbOn', + 'spoilt-drouth-lawlessness' => 1, + 'timbers-Rena-solemner' => 0, + 'Carina853' => 'GzBlaMFp=x34ClRP1pQ', + 'Jung-violet\'s1856' => 'jthgh\?\`c^_Ns', + 'Graffias-sponge' => 0, + 'card955' => 'ps9V;', + 'overproducing393' => 'GfjlS', + 'Vauban-maximum\'s1105' => 'qP2W7K?jFPG', + 'paddle-supervisions580' => 'A', + 'national-Carey' => 0, + 'blockaded596' => ';4UNJf26OemUha=OlLL', + 'distillations739' => 'hYH4gDy', + 'crackdown-arachnids' => 0, + 'mucus-belabor-earthenware\'s' => 0, + 'hoping939' => 'KK', + 'Steele-displayable1110' => '`g\Ninspiud=bZb]OiUV', + 'chirped-playpen1683' => 'oL4lAw6', + 'strawing-observers-tyrannize' => 1, + 'deadlocked1463' => 'Z<<;x5nOiAq', + 'Lysol-simulcast1726' => 'I', + 'zombis-portico-syrups' => 1, + 'providentially1221' => '4z;', + 'tildes-Jung-overate-biasing' => 0, + 'masquerading979' => 'u', + 'stairwell-aimlessly' => 0, + 'olden-Northeast\'s' => 1, + 'brake-repayment\'s1773' => 'g`kHs`^WouEikHUL', + 'gather-forgot-durability\'s' => 1, + 'wiring\'s2114' => 'fTTpro7G[4d0', + 'nonprofessional\'s1471' => 'd2EkPf1Nq', + 'silkiest1829' => 'TLr4^d>', + 'Barr\'s235' => 'dmyHwJj\V5BVnVc@xlh?q', + 'Menkar1961' => 'KxcNb0ts', + 'concurrence464' => '>`9u', + 'temptresses1430' => 'u:x3NN>ryYG1T;:D2', + 'allegories303' => '_NMx3X8RW[_HZ9rV=5Yv', + 'feline-geology\'s' => 0, + 'moving-accompaniments1311' => '5f6:L5FJDrbIZ@61Yu', + 'shutters-Chimu-overturning' => 1, + 'plucked-wishful410' => '4KC3muAFm=wXyFSs3T', + 'mixtures1133' => 'cKgK\aYySoKMApSO', + 'palaver-Rod-obliqueness' => 1, + 'foetus-duodenum\'s' => 1, + 'volley672' => '>', + 'telethons-commentate' => 1, + 'Tamara-fencer\'s' => 0, + 'hoodwink1969' => '=`UNoD`X', + 'playpen839' => 'Kk;y0XQnn2uQUP_0O9n?', + 'demolishes-Calder' => 0, + 'scalars1222' => ' 'sQ67_l8rR3;z1HXx', + 'Rh-Comintern-treasurers' => 0, + 'poplar991' => ':K4[vT?ukXu2141M', + 'woodpeckers-eczema' => 0, + 'unsubtle-vainglory\'s' => 1, + 'Tunguska-pigpen\'s' => 1, + 'sojourn-inhere-Celtic\'s' => 0, + 'enzyme-falter' => 0, + 'Graffias\'s2087' => 'fFRfieR26', + 'DiMaggio-waltzes' => 0, + 'miniseries746' => '31c8xbLKVVIrAg', + 'passerby\'s1452' => 'NOpbMX42\M3', + 'Whitney-sponge1485' => 'I', + 'caddish1334' => 'J2UYvU]Exvr97g', + 'Meighen\'s315' => 'LhEllf1bR?Xk;nd1IPV', + 'freebased-pentagon' => 0, + 'impedes-permeability\'s' => 0, + 'virtues-onus-raised' => 0, + 'nuthatch-completing1101' => 'Mr`', + 'salvation2045' => 'MOzlx9>HVrfZ4DdEi0T49', + 'moldier2126' => 'I', + 'shadow-gimpier' => 0, + 'rowboat-Davidson\'s' => 1, + 'polarity881' => 'JquKJ', + 'Hellespont\'s904' => ']5C[8p', + 'envy1178' => '[=3NiHh8FcO`UC2hV', + 'supervisions488' => 'SBsw', + 'Lucy-draftiest1192' => 'U9gZW:KplA[Lt?[Kx', + 'nosedive787' => 'ocu9uTDYGMcD', + 'Missy-duty\'s1290' => 'VUcR[dpj', + 'maligning-overproducing' => 0, + 'facade622' => 'y6v]1OuR^=?q', + 'trotting259' => 'S2s7nsC0zxSM6@m', + 'follies2093' => '@0rjlbfKwhTX6O', + 'pressings-premises' => 0, + 'respelling-wolfing-landlubber' => 0, + 'earmarks2019' => ':j5xB5HbsK6iFE`EIDw', + 'reapers495' => '^mS', + 'antechamber\'s1420' => 'yTfv', + 'swathe\'s2120' => 'XxXr2FjEh', + 'hallmark-tyrannize2034' => 'HNkC`d', + 'Goliath310' => 'gve=C38ABsp', + 'nectarines-flatware\'s1708' => 'MCyCT89PYS`N[Q;wXl', + 'irradiated1119' => 'tW3H5hdu1>gk', + 'southerns-nonmembers' => 0, + 'armlet-knives-premises' => 1, + 'cheerful-semiprofessionals' => 0, + 'raised-giblet-Northeast\'s' => 1, + 'mercenaries-scabbards' => 0, + 'Barents-mallet\'s' => 0, + 'cruising-derivative' => 1, + 'pennon-Valium' => 0, + 'lynched-rendering\'s2037' => 'd;^xIbi>1wJZtA?', + 'conk-raised1504' => 'l\RRP', + 'fronts-pats-throat\'s' => 1, + 'Reagan-nosedive-beaux' => 0, + 'fur1201' => '6 1, + 'disgust-crispier' => 1, + 'bailout639' => '7mTE@Oir9OqOA', + 'Kishinev-Steele' => 1, + 'mockeries1689' => '4n0J\=', + 'photocopiers-roast\'s' => 1, + 'contaminate-schoolgirls' => 0, + 'Kresge-Creon373' => 'es>9dfB`hD8d_4zR3[9e', + 'disenchants' => 0, + 'limes-telethons' => 1, + 'Pharisee\'s1551' => 'ikdKjq?c8:;IqgeILY', + 'racers935' => ':BztAfSH\N9Ycz', + 'deactivating' => 0, + 'inhospitable684' => 'x@6wd9jDU@22d7tqG', + 'tallied-cerebella-chilliness\'s' => 1, + 'bursted2051' => 'QT=', + 'enquiring-fossil' => 1, + 'mistreating-fresher' => 0, + 'physically1339' => 'saFfx3R 0, + 'carpets1461' => '7]8_w?4LCp1vvi:r', + 'kaftans1004' => ':EFXi^jH;;', + 'quiescence-optioned' => 1, + 'barker\'s2005' => 'gLlx4JA`WEI[[[JJDlf2', + 'unclothing1791' => ';29', + 'sissies-sieving1273' => 'umVriVqCu`ooTE', + 'motivator-rhapsodic' => 1, + 'pricing-geology\'s' => 1, + 'consultative982' => '?C=x8aaI88DjfP@MB]C8', + 'foxy-inflexibility730' => 'TLP?aJyCd;8', + 'quill-limes-Voldemort' => 0, + 'infield\'s470' => '[3Hd239LNj2b 1, + 'loanword1384' => 'jYm_gcRRBUdj6QIw8', + 'sabotage\'s383' => '>P', + 'ficklest-Minuit-mistreating' => 0, + 'disbursement-undercutting' => 1, + 'Voltaire-relay607' => '[d8Pj66`[_ha77\bsbIB', + 'moving1171' => 'TP6ai?wN?UOs\Vivx', + 'archbishopric\'s282' => 'B', + 'transcribe1103' => 'JYFw_7sG[E5rzF', + 'barbarism-osprey' => 1, + 'reapers-lockstep\'s1428' => 'qyPJY4Rsm23GZo@V6', + 'drubbed-undercutting' => 1, + 'envy-Downy-cruising' => 1, + 'urns-spate-anxiety' => 1, + 'Jacobs-photocopiers' => 1, + 'gorier-throat-brusqueness\'s' => 1, + 'consultative' => 0, + 'western\'s1761' => 'eJ', + 'painstaking-beleaguering' => 1, + 'traces-sealant-spools' => 0, + 'Huguenot-Annie\'s257' => 'pAj01f;RpC]', + 'rowdiness357' => 'Aa', + 'solaces-overweening' => 0, + 'wrapping-Nintendo1252' => '_^', + 'lingo-swingers-showier' => 0, + 'traced-Juno-shaver\'s' => 1, + 'frightens-uranium' => 1, + 'motherly-underrate' => 1, + 'joist-Carey1913' => 'f4gCOnOrWoQ', + 'perceptiveness1626' => 'f?CeqTw', + 'Bayer1154' => 'x', + 'caveman\'s1732' => 'u?3>', + 'presumptuousness\'s' => 1, + 'reversals-Saskatoon' => 0, + 'mousetrapped-durability\'s' => 1, + 'proportional' => 1, + 'Gettysburg\'s1494' => 'EJ@3]P', + 'cleaver\'s1175' => '[0Dntj;V8lH@L9U0Ly?^:', + 'venture\'s638' => 't', + 'slaughtered1943' => 'kxY4EQ', + 'skit-shills-jigsaw\'s' => 1, + 'Bayer-moving' => 0, + 'Atatürk\'s1609' => ':xQLEAK;tq8gb[4EMvrM', + 'mountaineer2162' => 'UP', + 'underwriters1745' => 'W]LAH?', + 'sieving-Sargasso' => 1, + 'Malaysians2071' => 'G8uX1Oku4vS', + 'wiring\'s1538' => 'M', + 'overturning920' => 'F\gFG6J 0, + 'Garland368' => 'N', + 'slinks-tallied-reversals' => 1, + 'clemency-Rod-earful\'s' => 1, + 'incriminatory1917' => 'oIKI08_B`csAG:Ff', + 'wrongfulness\'s1646' => 'a1[', + 'styling1686' => '@rAt;uGojInT8', + 'flabbiness-erudite' => 1, + 'hobbit-spawn' => 0, + 'Hurst-Freemasonry1374' => 'zWr:<7', + 'phlegm-bleeping-Brahe' => 0, + 'introverts-mockeries' => 1, + 'Huffman\'s441' => 'J18[9', + 'Rena-crueler844' => '_=sjC4gH5OQJ\>', + 'Ontario\'s1750' => 'i<', + 'urns-permitted-Mayo' => 1, + 'dollar\'s1704' => '^eU?8hWPkSeo`N5a\', + 'snubbed-chirped' => 0, + 'no-seasonal' => 1, + 'overeats840' => 'rtZ=bpNLdRF[`\:`9r', + 'slogs232' => 'D54wDDXJoQi', + 'submersing-launcher\'s1995' => '5l6Q', + 'Hollywood616' => '^RZ[wyWdg', + 'Jonathon-western-shills' => 0, + 'cerebella-commutations' => 0, + 'daemons487' => '8noMIBdWEdL9<:O', + 'Wiemar-murderously1577' => 'KGQh8', + 'noshing1433' => 'dVa<;L', + 'whiner-narcissus302' => 'Din', + 'provincials-Wm' => 0, + 'volunteer1871' => '`7', + 'disagreement\'s653' => '2n3sDZ9ZQ', + 'nectarines1190' => 'E0vE^]j^8@ 1, + 'vised1678' => 'I', + 'daydreaming-roast\'s' => 1, + 'starvation\'s1558' => '[JyS\MJK4Ft', + 'doping-seen-Gamay-Dipper' => 0, + 'pollinating1300' => 'Y>xqdkC7C_V;EL', + 'person575' => 'BiT[JMW6I]29<_b]G', + 'Chandra-deadlocked' => 0, + 'freshwater833' => '`^yBs0eO_1tTvkRE', + 'dumbwaiter1518' => ']GSS7XPz3XfU', + 'undergarment-beagle\'s' => 1, + 'exhalation-damage-listener' => 1, + 'autocrat-stuffed' => 0, + 'biasing-chaperon\'s' => 0, + 'muzzle-feline733' => '?Tj', + 'caretaker-Helga-oatmeal' => 0, + 'sensitizes2111' => '<=f5MkzAR5g5]Gv6', + 'corruption406' => 'lhrOL5H;q', + 'quill\'s630' => 'T', + 'acclamation-fertilize' => 0, + 'rained-birdie-uneven' => 1, + 'warranty-proportional' => 0, + 'concussions-manics' => 0, + 'Weiss-abruptly-overcharged' => 0, + 'armlet-lengthways985' => 'Jlj3WMYTlgQgtN', + 'synthetic1672' => 'sX 1, + 'swingers-appointments' => 0, + 'Felicia\'s1185' => 'P7ZE', + 'ostentatious-concurrence' => 1, + 'appointments1552' => 'KC`^', + 'tangibility\'s' => 0, + 'printouts-underestimating' => 0, + 'graced-ganging-perish' => 0, + 'induing-hyperspace' => 0, + 'rind-dauntless-cleaver\'s' => 1, + 'plunder-embryology\'s' => 0, + 'Maccabeus-disarmament\'s' => 0, + 'invisibility\'s494' => 'Ot8=qR3[SF;hvRnDoGTg', + 'expansively1922' => 'C:', + 'affluently1828' => 'rIYLPzkExvpJfFh96:q', + 'substituted1134' => 'k', + 'Preminger-vocational' => 1, + 'streakiest-koala-card' => 1, + 'transparency-sorrels' => 1, + 'modernized1414' => 'SMgb7c7>Kw', + 'seen-Guatemala-masqueraded' => 1, + 'earthenware\'s1350' => 'Y_7 1, + 'horsemanship-overturning' => 1, + 'flatware\'s1379' => 'JopoflI\?4H', + 'technology1244' => 'w', + 'pentagon-sashes-venomously' => 1, + 'escaroles400' => '7HGEk_3^8', + 'osprey1716' => 'KP2TY', + 'transmissions1331' => 'eDQd8sL>ScJw', + 'documents-mestizo\'s537' => 'C[3a1L1\o 'snlm2heiRx6\J', + 'amateurism-improvidence' => 0, + 'materialistic663' => 'y=?tu;X?3w1XE\:wIm`', + 'thirteen431' => '26QY9e5tSbZml?v8', + 'weirs-mouthwash\'s' => 0, + 'rarity-OD-freebased-traffic' => 0, + 'Togo-oared-granted-outcome\'s' => 0, + 'amputee-deadlocked' => 1, + 'worrisome-bookcase\'s' => 1, + 'gyps-buff\'s2039' => 'HaMNX[9ewD2KUJXE', + 'Phillips-sheepskin\'s1466' => 'f', + 'ellipse-thirsty' => 1, + 'galaxies409' => 'ohy2KCCQW[v:ANT5', + 'fail-mistiming' => 0, + 'spoken1916' => 'IlN9Ryou;CYLxoff', + 'archer-posies-bluejay' => 0, + 'brunette-unctuousness' => 0, + 'automate610' => '\d;Hq', + 'peach-stratified-mucus' => 0, + 'Lilian\'s1937' => ']', + 'umbilicus-square\'s' => 1, + 'gnawing2031' => '@3tk]4hVVTN', + 'counterfeits963' => 'a0MoMIkB5', + 'cantata738' => 'ZwEfs 'l', + 'Jung\'s2091' => '\a', + 'acquittals887' => 'wKPoum5TfSNG?vkW', + 'overbook-tiara' => 0, + 'continuity\'s1898' => 'zuGM1RYFE', + 'unfortunate1495' => 'S[CK', + 'Lilian-churn-rhythm' => 0, + 'romanticizing482' => 'L?;Mqdm_hq5;<3', + 'relative-emanate' => 1, + 'catty-weariest1400' => 'BkYU', + 'kitty-chaperon\'s1305' => '6SXyuT?CJPS_Z=', + 'swagged-reversals1205' => 'k', + 'skillets-showier-misdemeanor\'s' => 0, + 'capitulation-townsman' => 0, + 'blazing911' => 'Clb@8>71r5D2Wur', + 'archaisms-mailer' => 0, + 'Cameron-skater' => 1, + 'kopeck\'s1823' => 'h7q0?JkAI`rxStvXOGYc', + 'liquefy1389' => '@D4A', + 'linefeed957' => 'B41sRdkC', + 'quadrilaterals-picnicker\'s' => 1, + 'Dictaphone\'s650' => ';Vft5w4:r64P^PkI', + 'servomechanism\'s' => 0, + 'unraveling-exports' => 1, + 'rainbows1754' => '[Na@jg4Hf>Z', + 'wafer-semiprofessionals' => 1, + 'Huguenot-adulterant-ruminant\'s' => 1, + 'outings-Chi-gimpier' => 0, + 'fronts-alphabetizing1445' => '^Qw4b1gixsXVWuky', + 'graced-racers643' => 'jr', + 'humbler-barbarism' => 0, + 'inkwells602' => 'K;q', + 'quadrupled-forger1729' => 'qYnb3jU4Qg941V', + 'Constantine1533' => 'U=qxQUM6u>M', + 'Leiden-constitutions' => 0, + 'householders-appeal\'s' => 0, + 'daemons-euphemisms' => 1, + 'saffron-gnawing1115' => ']gUEGC9^uUYVlBny:D', + 'subscriptions338' => 'hpCY5qg4[^5d9Gl', + 'cad842' => '1U_3`', + 'Reagan-misbehaving1542' => '\]P_2s1A_GoWZm]', + 'Damian1129' => '>kXop8@', + 'proficients-Rabelais\'s' => 1, + 'riposting790' => 'TOMQfm]_q88JiTWo', + 'temptresses2043' => '1pUM', + 'motivator\'s1587' => 'BFq', + 'Rothschild268' => 'pk2xg', + 'literacy-lowers1163' => '^UYkMfrqvYNdf', + 'whelk-freebased' => 1, + 'trickiness-militaries' => 0, + 'tallied-moroseness\'s' => 1, + 'bullet\'s1218' => ']d9p5q6[q', + 'lineman-Octobers' => 0, + 'bulletined-opts2079' => ':iJhFk`iCH][QG@05', + 'motorist\'s332' => 'F', + 'hallmark-ostentatious' => 0, + 'archetypal1594' => 'wrR4?s]Lb3', + 'prearrangement932' => 'pRFZ_7', + 'Jogjakarta\'s1816' => '\MYj '9xeTZYjCwm@YDpUL6JP', + 'atrociously-maraca' => 0, + 'veterinary-Orlons' => 1, + 'fingerprinted2038' => 'jJZ_588fTg', + 'sacks-swankier-Beverley\'s' => 1, + 'picnic223' => 'swm2WSyUhfRRi0fgVII0M', + 'retrain-electrocution\'s933' => '9cQ3F]JILGkFlW', + 'snifter-andiron-encoder' => 1, + 'ex-foetus-underpaying' => 1, + 'modernized1220' => 'i', + 'mitosis-spoilt2143' => 'm;hb@K?kqkV>ur1Phgg', + 'Proust-felicitous' => 0, + 'Della-pattered1323' => 'pYDhKRs=1X', + 'monster-aurae' => 0, + 'visage-lowers2061' => 'LGh5b^?VAi`98uG6]bz_', + 'transcribe-zephyr\'s' => 1, + 'polymath-midwiving' => 1, + 'cots-whelk-slaps-postcards' => 0, + 'erupt-weirder' => 0, + 'criteria640' => '8JDSiFb?^iQitXowve', + 'graybeard1553' => 'WYX[', + 'saved773' => ']q60Qjat7BJ\5c85`J', + 'polisher-salespersons' => 0, + 'busywork\'s1617' => 'HkO`];]', + 'favoritism-flagpole\'s' => 0, + 'latterly518' => 'fpCaO>5A>0bA3NR2`?5', + 'landlubber893' => '4JOO56s '57<', + 'Rocco-southerns204' => 'H`mEYvj', + 'afflicted-Nikon-bribery\'s' => 1, + 'skaters-hicks869' => 'hkuS68T', + 'pumices-granted-dowdies' => 1, + 'inkwells-Actaeon697' => '?[r[?v2rdJYbi80_q', + 'slants-withdraws1769' => 'U', + 'ironclad\'s457' => 'N', + 'indeterminacy\'s284' => 'jxM?SVN', + 'painstaking\'s645' => 'sJYGawSL8K;g2>', + 'overusing969' => 'M1@SiD[wwOR3RHafk8', + 'precipitations-sobriety' => 1, + 'Kantian-Cesar-perjury' => 0, + 'conga1799' => '@BlFw_v8v', + 'tint-narcissus1003' => 'X3CGgPZYuznFIsw]m9kiF', + 'McKee-Tanner-transportation' => 1, + 'tips-urns1988' => ']u:B`0 0, + 'Kantian234' => '^TD_IISZ6Xw9L]_Ya;`', + 'attribute-suffix\'s' => 1, + 'realists1861' => 'R', + 'riddance-Atlas-riddance' => 0, + 'Constantine-freckling' => 0, + 'Marcus-impressive1165' => 'wztTEXkvzW', + 'hicks-flybys2136' => '78N`TF568JY>mEB9]`HK', + 'maim-humbler-hoorah\'s' => 1, + 'retrain-hatchet\'s' => 1, + 'autocrat-hobbit1038' => '=G6bw 0, + 'quadriplegic-substantial' => 1, + 'Northeast\'s547' => 'J?9dO 0, + 'householders360' => 'c>YxgL=R;O', + 'hotbeds-condo-arachnids' => 1, + 'carousal-evil-slogs' => 1, + 'hotbeds1174' => 'HaW[[Y686wah', + 'instructively1480' => '?1Wi', + 'dweller-Dodson-disarmament\'s' => 0, + 'decommission2021' => 'P', + 'beltway1320' => 'J3', + 'broth-photocopiers' => 1, + 'defected-pikes549' => 'Gc?FE2G', + 'mestizo\'s809' => 'Z4hd22cgV@m2Fb@]', + 'nappies-unfurls-toned' => 0, + 'punished1224' => 'D', + 'shells-disregarding1573' => 'iEOO]7rBy>KC]O_s', + 'Botswana-bevels' => 1, + 'Liberace\'s1078' => 'LWKcW0Pp31aEO2^=75Q', + 'hoping-Wm-realists' => 0, + 'demijohn\'s835' => '\wQ=097pEoI@=fjKOL3K', + 'tomatoes585' => 'NPf3ft^8Uv`6Z', + 'rosary-mistreating' => 0, + 'Atatürk\'s1764' => 'AUeI75FPOVpkkuE3=ok\M', + 'relay-theater-proverbially' => 0, + 'border-enviousness-stampeded' => 1, + 'pentathlon\'s829' => 'q`P', + 'Ozzie\'s1383' => '2S=l8Py=Ajsv`G`C;o', + 'technician\'s' => 1, + 'riveted-gallant' => 1, + 'galaxies1207' => '\A=d5bYlVfhcjpM:', + 'Vespucci-showier1272' => 'vO;yTOHc1:H6', + 'intervene-insulation' => 1, + 'saddling-toggle-patienter' => 1, + 'commutations-schoolgirls' => 0, + 'perceptively' => 0, + 'foxy-waxen929' => '4nwJRwLcdYevgW>txVp', + 'stuffed-destitute1838' => ':', + 'orchestrating606' => 'W:zBhKGoROR', + 'Oshkosh-withhold1932' => ';9tVHKBQz7f:2Ex', + 'mistreating858' => 'GC\@=Jm:kTa@Gq', + 'Nikon-rankle1631' => '5n?wBDh:4Bbf7', + 'muzzle-flintlocks' => 0, + 'pentathlon-hackle\'s' => 0, + 'vestigial-slumlord\'s' => 0, + 'bracelet\'s' => 1, + 'checkmate-emasculation' => 1, + 'realists-strangulates1015' => 'CSkGzT:ci', + 'Navratilova\'s1699' => '=', + 'lineages-disgust-Houyhnhnm\'s' => 1, + 'water-stoical-Ramos' => 0, + 'yuck\'s1462' => 'Sub:Nf?9Ymq@HG', + 'electrocutes1404' => 'T[', + 'Marcus-abnormally-loaned' => 0, + 'wrongfulness-owner' => 0, + 'western\'s843' => 'e', + 'riffing-Rod1638' => 'f=kgV', + 'wholesaling-dollar\'s' => 0, + 'churn-quitted' => 0, + 'tablets1024' => '8LnZz9\ifz\5om@wK\', + 'Della-ani-cordite262' => 'tD:GG\96HRfTFwdV', + 'whiner-chilliness\'s' => 0, + 'idiosyncratic1203' => 'E', + 'tips1895' => '5JiejZKd>N', + 'weirder-CFC\'s' => 1, + 'completing-cablecasts' => 1, + 'cottonwood-hospitals' => 0, + 'carpets-uncharted' => 1, + 'barber\'s636' => 'nKH]zo8Vcj1`9X', + 'stagnating-horsemanship' => 1, + 'cloverleaf-graced-skilled' => 1, + 'Sherrie-Erich-lovemaking' => 1, + 'acquittals271' => 'BBPn;Ft5', + 'portion-Hanoverian\'s' => 0, + 'marshes-impressive' => 0, + 'mystifies-seen-permitted' => 0, + 'sexiest-trickiness' => 0, + 'improvidence-nonmembers' => 0, + 'Eltanin-panic' => 0, + 'solidest1412' => 'Q^\d88:B', + 'renouncing837' => 'J=X27NhbG', + 'televises2146' => 'rPBM=m^PtYap', + 'singeing-Vaduz\'s' => 0, + 'impedes1697' => 'jt?rA[urmcB[', + 'Hurst-deleterious' => 0, + 'goriest-silkiest' => 1, + 'boor-bullet-emu-locations' => 0, + 'bracken1545' => 'q>Rl6Ezqc7N3', + 'sinecures699' => 'mqh2mu', + 'frontier-gorier-Reginald\'s' => 0, + 'Kishinev-staph\'s' => 1, + 'hotbeds-rowdiness-roundhouse' => 0, + 'democratized408' => '@r8s0N', + 'retains-cloverleaf' => 1, + 'Yugoslavian\'s1050' => 'h11', + 'underpaying-slenderest' => 0, + 'diacritical-safer' => 1, + 'dauntless-bullet\'s' => 0, + 'kopeck-overworks' => 1, + 'ganging-skilled' => 0, + 'cheerful477' => 'q', + 'federated1023' => 'b=v^N 1, + 'trotting-schooners' => 1, + 'carryalls-intercom' => 0, + 'conjecture-planned' => 1, + 'reappear694' => 'MrZP', + 'rollback\'s2116' => 'zxD`6HBLQK2NYWT', + 'Oxonian\'s704' => '\@q', + 'Winesap-Andy1011' => '9eOJWKo74TnsOOb', + 'semifinal-Orlons-raised' => 1, + 'Chinese\'s1399' => ']7PGRCE1J3WSCzJd3J?', + 'scabbards-riposting' => 0, + 'gradations' => 0, + 'initiate309' => '<7s', + 'schusses-grainier225' => 'Zj];jga9vf>=DF', + 'sojourn-toned-presumptuousness\'s' => 0, + 'sharpens-austere-pampers' => 0, + 'filmy1947' => '0@gt', + 'sequel690' => 'h:LsYq<0Um4MhkfoFE', + 'coke\'s1930' => 'm>B\Xc', + 'subhuman\'s' => 1, + 'tackiness-temptresses' => 0, + 'slicking342' => 'KQ8', + 'bouffant-disruptive1582' => 'ixSHSW', + 'hoping-decorates1614' => 6, + 'Brahe-lawlessness-rind' => 1, + 'rainmaker1563' => 'xoQdE@M`0`DwzZS?Sot]', + 'snowball2084' => '_McDYyvJa', + 'Barrera-lateral-emu\'s' => 0, + 'Gettysburg\'s1839' => '>snyYjU 'JX=ERC_A', + 'withhold-Campbell-prose\'s' => 1, + 'prefect587' => '7PDwVkT48Nb', + 'tiara-fitted-crossovers' => 0, + 'agreement-spreader-Reagan\'s' => 0, + 'Basie-crashing-Betelgeuse\'s' => 1, + 'Barnum-oligarchic1096' => '3KO:5ceZeZ', + 'solaces-tavern\'s328' => 'f4qRk3\LfH', + 'slinks-sucks1612' => 'IhIqVV[NN', + 'subtleties-cosmetologist384' => 'afcz\q6XFzUd7', + 'seeming2033' => ' 'bj2_C@bmv9;:S=Tvuq6E', + 'Hanoverian\'s301' => 'e0wf[vd', + 'hitch-direct255' => 'tB05hd`LLWsPo[ll', + 'diabolically2179' => 'S@6vN9', + 'relay2141' => 'k[4wYCPMxBvPHW>zMg', + 'kaftans-duped-glide' => 1, + 'volley-stylish' => 1, + 'wolfing-poplar-heckle' => 0, + 'typhoon-windward-enumeration\'s' => 1, + 'rightly-servomechanism\'s' => 0, + 'curtest-ambushes-sunstroke\'s' => 0, + 'megaliths-cottonwood' => 0, + 'flabbiness\'s956' => '0<7CBd;kHnUPHpka', + 'bobbles-fans' => 1, + 'espionage761' => 'f:NxxEi1', + 'sprayer-reapers' => 0, + 'Walls1756' => '2xv9P', + 'weight-stillbirths1667' => 'VB;\_92JuZVC?0 0, + 'erodes-Steiner' => 1, + 'murals1007' => 'TTBg9q15@9U7', + 'gristle-cad1641' => 1, + 'persecutors516' => 'vGeGmh:noC', + 'Quixotism902' => 'jGJwsnr\T>f3atY', + 'oleomargarine\'s1509' => 'D6cY^\;e<', + 'bridge-owner-hackle\'s' => 0, + 'backstop-overweening' => 0, + 'tobacco-abnormally-toadstools' => 1, + 'proper-toadied-Suva\'s' => 1, + 'courtroom\'s1772' => '^cTGb>j?W[q8NFJjn8', + 'affluently1744' => 53, + 'nightmarish1882' => ']PSeJXjtab=S', + 'marginalia-megaliths-no' => 1, + 'archetypal-Steele-Nootka\'s' => 1, + 'boogied-ionizers-satyrs' => 0, + 'naughtier1146' => 'SLDDIgEz', + 'undergarment1253' => '=>rLp9Zuzk', + 'débutante-cents' => 1, + 'jihad\'s657' => 'v', + 'cents1702' => 'EUSTZosd7', + 'cheekily-knickers' => 1, + 'Permian-zippy-leanness' => 0, + 'nappies-conjecture\'s' => 0, + 'bacchanalians-duty\'s' => 1, + 'nutrient\'s1396' => 'gjru[', + 'lingo-Aron-stockings' => 0, + 'negation-creator1571' => 'zOVX4D:Nc``C1c', + 'beagle-bubble-gang\'s' => 0, + 'saddling-nobleman\'s' => 0, + 'Calder-brake972' => 'HqDw', + 'determiner1673' => 'WQsSDziaPO?', + 'Dot-maraca-imperious' => 1, + 'Suva-poplar' => 0, + 'optioned463' => 'M0EUk>FcmEH[', + 'homer-starvation\'s' => 0, + 'inspection\'s582' => '@A@v5fabF@3uiO', + 'Flanagan-Carey-stiffly' => 0, + 'undersize-sexiest' => 0, + 'naturalness-weariest' => 0, + 'pixel-pulsated' => 1, + 'knack-gobbler-programming' => 0, + 'transcribe556' => 9, + 'caddish927' => 'H6faNvB^@', + 'worrisome-corruptest' => 1, + 'mutt-transfusing-Antoine' => 1, + 'Omayyad1650' => 'lF;dyp:6IPTx;', + 'rollback-moldier-boor' => 1, + 'bootie-loneliest' => 0, + 'Maccabeus\'s481' => 'tnx\`Z', + 'corruptness572' => 'Oe3ttdVOt9p`FlGw5Q', + 'raft-overlies1377' => ':k[LWZkwUV:H?', + 'manipulation\'s1094' => 'YY0d]q3J8vfhG', + 'busywork-crumbles' => 0, + 'Kringle-Betelgeuse' => 1, + 'saltiness877' => 'F@j[j^', + 'excavating1041' => '>DU[v4ayrIo', + 'lovemaking-accompaniments' => 1, + 'stilt-mystifies' => 0, + 'transparency443' => 'b3I>Rjb?y5', + 'barker-Lysol-sniffles' => 0, + 'swingers-pooch\'s' => 0, + 'dividing-pollinating' => 0, + 'thrives-theater' => 0, + 'thirteen1953' => 'j`j=wo7y@r', + 'impregnation-water' => 0, + 'dinner\'s1219' => 'YJ9Fx:oKuhXmlYk@sgp', + 'oatmeal-Carey1931' => 't[92gs7v', + 'Assam\'s1188' => '7Cx_', + 'waves-babysitter-early' => 1, + 'pompon-Qiqihar1136' => '_55exOpHeR', + 'Patrick-citrus\'s' => 1, + 'schismatics-seeings' => 1, + 'plotter-debuts' => 0, + 'bushwhackers500' => ']nA`=', + 'quitted-Raul-Sargasso' => 0, + 'schoolgirls646' => 'VQ>bdUL9NjV4E23', + 'Patrick-sierra\'s' => 1, + 'jihad\'s1287' => '1sFM2;7Ki^B0>', + 'Cornelia1387' => '>x', + 'completion-generalize' => 1, + 'simian-shutters' => 0, + 'recite-cupful-sunstroke\'s' => 1, + 'crabbed-hosts-recoveries' => 1, + 'claptrap-peach-Celtic\'s' => 1, + 'dumbwaiter\'s444' => 'V^5E', + 'transplanted732' => 'F>HhinYVWq', + 'sinecures-Centigrade1677' => 'b;5:xRR]TJd1a`8E', + 'smokiness-staph\'s' => 0, + 'espionage-apes-Vivienne' => 0, + 'streakiest-carryalls' => 0, + 'anatomist-Scotch-moving' => 0, + 'pharynxes-booklet\'s' => 1, + 'voodoos-purpler' => 1, + 'leanness524' => 'be7zIJ25J0', + 'deleterious542' => 'q`IhE?UYUH7 'C:F6AQju3kkNxkZc', + 'unsatisfied768' => '92\POoYI41cQ', + 'meritoriously1435' => ':Sx9z[DY4<8FL', + 'Zachary\'s326' => '];DdYl?', + 'initiating1748' => 'NzE9L@f658', + 'nappies-rendering\'s1074' => ' 'jpmtwdUZI;QeZAxPE?', + 'Vivienne286' => 'qwFl]b', + 'inaugurate1079' => 'K', + 'smooches-Rh\'s' => 1, + 'Reagan\'s471' => 'IHQ', + 'cherubic1302' => 'HDS>:', + 'loneliest-anxiety\'s2151' => 'CEEJzW6wnzBrU', + 'temptresses912' => 'gZQ@h 'kE?[bN=?uvqCtEUGhheF9', + 'triceratops\'s1097' => 'RAMtLV 'H@kkn0o 1, + 'cutter872' => '?WnnLXvt@nAwgq', + 'dairymen2030' => 6, + 'Betelgeuse\'s' => 1, + 'ability-emasculation' => 0, + 'Creon-funneling1600' => ';Yu', + 'discerning-débutante' => 0, + 'mavin-ulna-extolling' => 0, + 'disregarding1700' => 'pw\kD1N', + 'healers-stag-cap-hallmark' => 0, + 'coins-Celtic-Benin\'s' => 0, + 'euphemisms595' => 'zgRDY2M7c', + 'cats-tenderly1160' => ']j7G_G?', + 'torchlight-bombed' => 1, + 'coeducational-stupidities' => 1, + 'ex-actuate968' => 'sVe0IhX;aQQztjdPKuTGQ', + 'Jarvis-Cesar-centrifuge\'s' => 1, + 'doping-iconoclastic' => 0, + 'recall-reeks671' => '3NTrQgU7_TXOgnFgh60x8', + 'abjures1006' => 'T', + 'innovators-Debussy' => 0, + 'wedlock\'s705' => 'qIRf', + 'nectarines1724' => '?fSeu\UXHSLmm^', + 'tallied-rind-peaceable' => 0, + 'preciosity-freebased' => 1, + 'launcher-generalize1345' => 'CASV7y41P@gB6', + 'genitalia1388' => 'qGd[aVD<1HrXh:t^OeH', + 'successor-Creon' => 1, + 'armlet\'s346' => 'z0boTlcb3Ob6LH>U6G5', + 'Missy-ski\'s1365' => 'JG9^`8c', + 'spoken-victualled-flintlocks' => 0, + 'lamentation202' => 'yv5jkIU\VPI3ap', + 'sealant-reissue-broth' => 1, + 'riveted-adulterant' => 1, + 'dismissing-sear-schoolgirls' => 1, + 'Maldivian-allegories' => 1, + 'physically-halberd-uncharted' => 1, + 'lawlessness1868' => 'vys]fXoHx?LTz', + 'prescriptions-Gettysburg\'s' => 1, + 'subtrahend-mestizo-graybeard' => 1, + 'Communions-accompaniments' => 1, + 'precipitations1920' => 'USxI^yx[glUj', + 'petticoat-oligarchic' => 0, + 'cheekily-proper\'s' => 0, + 'trucker\'s436' => 'l\^hs8L_krZzAN', + 'rind-Copland1690' => 'i]OqZ1yVrpkHBSUO', + 'spreader-Andy-pernicious' => 1, + 'pencil1260' => 'iSugkI2yc2', + 'durability-adjustment\'s' => 1, + 'bullfighter-unfrocks' => 1, + 'Newfoundland\'s1827' => 'azH^', + 'smokiness-pastoral\'s' => 1, + 'durability-quiescence\'s' => 0, + 'befit-swingers1880' => 'iTn]]a>9ZyKsYpYj;WH', + 'overweening407' => 'iVMo@;Lcf=jW5;', + 'administrator2119' => 'nY', + 'treasurers-permeability\'s' => 1, + 'Pabst-Lysistrata-displayable' => 0, + 'emigrate-begets-nectarines' => 1, + 'national-foxy' => 1, + 'Macedonia\'s1500' => 'WMXUT:', + 'cots-gluttonous-assignable' => 0, + 'evenings2059' => 'JRt?AmJmMUYsF`pZ6k`0', + 'destinations' => 0, + 'appointments-ratifying' => 1, + 'silkiest-pikes1999' => ']', + 'produce-powwow-Gerardo\'s' => 0, + 'Suva\'s1431' => '4mN\tn=MFqkg9Y7VQ', + 'cleaver-cheetahs' => 0, + 'impressive' => 0, + 'visage-hackle-daydreaming' => 1, + 'bridged-loaned-inimically' => 0, + 'conceivable-schismatics' => 0, + 'facade-plebeians1534' => 'FqET\', + 'paddle\'s1889' => 'BHa30^=\e', + 'apace-Shavian-wholesaling' => 1, + 'crashing-conscripted' => 1, + 'deleterious-espionage' => 0, + 'skater-hospitals' => 0, + 'deleterious1878' => 'gfovR4S<1JWnXB10H_<^`', + 'mold-damage\'s' => 0, + 'bushwhackers-derivative' => 1, + 'pastoral\'s1523' => '?X', + 'nonmembers1657' => 'tn3A_Co=9?bG;', + 'Eltanin-tubas' => 1, + 'Tamara-insubordinate' => 1, + 'refereeing1043' => 'wOgV^_zBM[87gOux6Te', + 'unfrocks958' => 'xqYk35CLBxFKh', + 'rephrasing1903' => ' 'P2KCXMLDY', + 'Jayapura-Proust' => 0, + 'virtues-shills-stems' => 1, + 'Ana-oleomargarine\'s' => 1, + 'ecological-aurae' => 0, + 'jigsaw\'s597' => 'H', + 'knickers-purpler891' => 'gj;NJ3:QDFE9R', + 'giddy-regaling999' => ' 'VS2h@vDwnD', + 'Preminger\'s1725' => 'i>IFjjNZ]P', + 'belts-swagged-mantle\'s' => 1, + 'blueberry\'s2133' => 'jyEl', + 'improvidence-mutt-felicitous' => 0, + 'kaftans-taxonomy' => 1, + 'displayable' => 0, + 'Somoza-peered-expostulate' => 1, + 'funneling-slumlord\'s1607' => ':a@o3jWaXcK[0:F', + 'soft-holography\'s' => 1, + 'brusqueness\'s416' => 'nK9Znl4@[b0N<', + 'BMW-technically' => 0, + 'rent-stoical-buying' => 0, + 'debug-treasonous' => 1, + 'therapists1069' => 'Br;o\g>q9 '5DTZgZc?', + 'moldier-planned' => 0, + 'overeats-intercom305' => '6HV', + 'Titan-affluently-pumpkin\'s' => 0, + 'Erich-Kishinev\'s' => 1, + 'condensing1491' => 'a3VzouL', + 'etches2058' => 'vd\g^vcMA\KG@OI_0H2', + 'sashes936' => 'M_I', + 'radar1067' => 'Fmnef;=r[', + 'Garland-Suva-attic' => 0, + 'Atatürk\'s' => 1, + 'picnic-latterly1752' => 'gmCi8ccV7f', + 'Voltaire1739' => 'v^ahm<];;Xi5GH', + 'transfusing1887' => '\\6?>H', + 'holstering-dumbwaiter' => 0, + 'jitteriest-servomechanism\'s' => 1, + 'transmissions852' => 'el414Nt5tNSgX4', + 'camphor\'s856' => 'sBx]FZ=:O', + 'tablets1503' => 'cS?T1QgACl26X', + 'vendetta-Lora-Titan-Centaurus' => 1, + 'thinker\'s1036' => 'A', + 'fresher-soda1130' => 'r>I;C;4xVogjLGM@?iS@3', + 'beachhead1235' => 'h8jPe\R^h^e4', + 'severity-Gettysburg\'s' => 0, + 'timbers-wartier1403' => ';DIN^', + 'gluttonous-Freemasonry' => 0, + 'muzzle-fezzes-wowing' => 1, + 'gluttonous-sputum\'s' => 1, + 'moussing1477' => 'nIPE', + 'debug-veterinary799' => 'yUbWnu3Rfohew29<', + 'Eddington1770' => ':DGi06\PrVrx@e', + 'ecological-courtroom\'s' => 0, + 'misappropriation\'s804' => 'yaQp=HI', + 'parsley-encroached' => 0, + 'biophysics-cervixes-skilled' => 1, + 'osprey-snubbed-lockstep\'s' => 1, + 'swathe\'s688' => 'Nr_x', + 'nightmarish-despite' => 0, + 'alarmist1875' => 'K 1, + 'providentially-sofas' => 0, + 'Daguerre1362' => '[yIl', + 'extinguishers' => 0, + 'blackening1318' => 'QgKq;VyCqH\ffCxGiu0T8', + 'heroins-disbursement' => 0, + 'encroached-Theseus' => 1, + 'damage\'s1606' => 'oTuRqtZ]]oQB6D8nN', + 'transportation1879' => 'FkiyRJSpE9j6kr`oJ', + 'Brianna-obliqueness-styling' => 1, + 'Sicilians-Rosecrans\'s' => 0, + 'Qatar-pharynxes' => 0, + 'painstaking\'s1615' => 'CXO@UebsS', + 'bullet-overeats' => 0, + 'negligs413' => 'rjHnDu9B:YdT0A', + 'seekers-compiling' => 1, + 'discretion1589' => 'LGNusBpRoOVi=7nId', + 'humbler-wiretap\'s1911' => 'EdHRN:8521hk6xG[1R', + 'extorting-saltiness' => 1, + 'muse-undercutting' => 1, + 'follies-bellyful-torturers' => 0, + 'rescue-follies' => 0, + 'mixtures-taxying' => 1, + 'intermediates896' => 'Oj4^`g<\MH@6n', + 'caveman-bacchanalians' => 0, + 'Lucknow\'s1353' => 'Z', + 'hurriedly1991' => 'aFmoFA=v>zmZv;c2FniB', + 'ellipse-Lora-Kodachrome\'s' => 1, + 'worrisome-no-groovy' => 0, + 'vised-corruption-Clio\'s' => 1, + 'Medina-bracken-octogenarians' => 1, + 'treasurers1393' => 'P[_DGzWd4Uy1xV[=yX`', + 'manics-telescoping' => 0, + 'polymath-hostelry\'s' => 0, + 'Calder243' => 'PZMGVv', + 'caffeine\'s1790' => 'E_?@', + 'kopeck-maim-repertoire' => 1, + 'deactivating367' => '4u?u', + 'nuggets-salespersons1436' => 'v?g', + 'cannonades' => 0, + 'spoilt-stoical1369' => 'in 1, + 'hoaxer-mucus-misappropriation\'s' => 0, + 'southerns-ellipse' => 0, + 'groveler\'s2104' => 'qFXi 0, + 'CinemaScope-Celtic\'s' => 0, + 'giblet-Vaduz-perseverance\'s' => 0, + 'derivative-concise' => 1, + 'marshes948' => 'f^ySi1FI', + 'traces-disaffect' => 1, + 'workdays1897' => 'S', + 'daydreaming-orchestrating' => 0, + 'niceness-foxes-Itaipu\'s' => 0, + 'backstop-Qatar-Juarez' => 1, + 'amperage378' => 'T3T7]p', + 'conscripted-Goodall\'s' => 0, + 'Aron-euphemisms-cynosures' => 1, + 'fans817' => 'hAWlxKE', + 'Oshkosh-Soweto\'s1959' => 'W', + 'macadam-Garland1990' => 'vWMZ>lycN '>eTDfm2CCO@RV4', + 'sacks-documents-early' => 0, + 'gallowses-clearing\'s' => 1, + 'toadied-Manila-cents' => 0, + 'Noe1547' => 'ZQI>qMn', + 'Steiner-Proust-hallelujah\'s' => 0, + 'ditched-rhapsodic' => 1, + 'rebates-pirates' => 1, + 'grilled-Carina405' => '0U;58Q:P_6=MMFt^@b', + 'gyps-schnapps\'s' => 1, + 'stillbirths429' => '8H', + 'humbler-foxes-cad\'s' => 0, + 'submersing-tobacco\'s' => 0, + 'inauguration962' => '[[Etu;x?V3cUzy3TS', + 'Bullwinkle970' => 'VA73PxBePMwP[hvm1bN`', + 'gyps-Wiemar-Kodachrome\'s' => 1, + 'tuft-tips-southwest1929' => 'ld1`ZA`Pz', + 'quadrupled-landlubber' => 0, + 'reprehend-marshes-armlet\'s' => 1, + 'chilliness\'s821' => '2;Qp\W3J', + 'democratized1416' => 'fyyqc7faD6;WD>s0gW', + 'durability-draped-inimically' => 0, + 'encloses2190' => 'bw]V]0SSyFkQRna2p', + 'chokes-centenary' => 1, + 'electrocution-horseshoed' => 0, + 'ventilation\'s' => 0, + 'crookedest-Carmichael\'s' => 1, + 'exonerates2077' => 'dvKJS7=o', + 'Erich-Pandora' => 1, + 'restraints-reasserted' => 1, + 'furor\'s1229' => 'xF', + 'vainglory\'s1124' => 'D5', + 'torchlight613' => '@GQOMVH4Zp[vUf]EYEa', + 'murderously808' => 'PmDr0=TUEu2aDURll', + 'spoken-spelunker' => 1, + 'soda751' => 'Ov:h9gI;5k2oqQ', + 'Justine-orchestrating440' => 'Vq>r;NhQZQVc?Pl48@`h', + 'bursted765' => '[kI0b\Ya8', + 'Huguenot-Aida-tapir' => 0, + 'germinal-Calvinism-adjustment\'s' => 0, + 'Menkar2108' => 'V1FOqqQo9', + 'overeats-showboated' => 0, + 'namesake-hatchet-curvaceous' => 0, + 'miniseries1928' => 'nel@fb@pme?@^VG9:', + 'ditched-slants-Navratilova\'s' => 0, + 'boutique-Irvin-psychosomatic' => 0, + 'finance-Aida909' => 's;19?8MECv1yLJ[58NqV', + 'Daguerre491' => 'QnIqml', + 'Barents392' => '\Z?kL_ap>rS[', + 'sinecures-Rio1987' => '@UPhN9klb<', + 'slumlord\'s2164' => 'IGX]Q]X\Ln9', + 'recite-steamroll-sprayer\'s' => 0, + 'crinoline-cupboard' => 1, + 'nightie-cordite' => 0, + 'blueberry\'s386' => '`8HGT2rXl6WgFcuuk;?9H', + 'grainier-Phillips' => 1, + 'crookedest1304' => '=', + 'propulsion-heroins' => 1, + 'schusses662' => '\;LQT0K_=:^eOWtQ?fXug', + 'wells-bushwhackers570' => 'K', + 'koala-primroses-Nintendo' => 0, + 'weirder1468' => 'zOq>rhuP>QYf?\', + 'claptrap-dollar\'s' => 1, + 'bracelet-freebased' => 1, + 'mestizo\'s1874' => 'b4\', + 'Sargasso1934' => 'Lqu5d]r03eA@sp[\c]LO', + 'stooped919' => ' 0, + 'acute\'s1564' => 'Vgr=7rHLs4n4I9E', + 'stylish-vane-persecutors' => 0, + 'catty-dishcloth1636' => 'fVtv@VqZu]pxE^a', + 'pharynxes-urns-olden' => 0, + 'creases442' => 'q@mJ', + 'inspection-debug' => 0, + 'slob-euphemisms' => 0, + 'kaftans-allegros' => 0, + 'juncos519' => 'jJbnYabg0f@Vp', + 'licentiates951' => 'NGzhWI:', + 'beachhead-solvent\'s' => 0, + 'Beverley-insomniacs' => 1, + 'Annie-brewer-wrinkly\'s' => 0, + 'limes1411' => 'ZDT', + 'trousers\'s707' => '5_Ekio<2Rs]^p 0, + 'orchestrating' => 1, + 'deeds210' => 'RcdlaP', + 'deliverer\'s1963' => 'DdmB^wdClD', + 'vortexes1157' => 'EoYo7Fs7mOcG', + 'affixed1122' => 'omcmal>[h:0M:[DK', + 'copyrights-forgot-stepmothers' => 1, + 'tinder-cloths-impair' => 1, + 'annuity-streakiest-hurriedly' => 1, + 'racers-andiron\'s1535' => 'GdkddqyL^E', + 'scrapers-thirteen-obviate' => 1, + 'Nice\'s1983' => 'D__4qV>0F?h', + 'complementary2053' => 'MlAvogFU', + 'Indian\'s445' => 'A1Od7gqS:7PrOcrr', + 'Nikon-Holcomb1298' => 'fkhM5Y3Pj', + 'chokes1497' => '5b', + 'fabricates-fans' => 1, + 'sieving-android\'s1313' => 'Smp5D;b3p?asn9]z', + 'ionizer-mutt' => 0, + 'regaling-consultative1027' => 'x3lMOpGKjyTOUVo', + 'stepping-ratifying1860' => 'RrO5C1f', + 'sulfate-Qiqihar-prescriptions' => 1, + 'galaxies1610' => 'wb36879YiS', + 'quarterlies-headlight\'s' => 1, + 'annually339' => 'eNgP@', + 'telex1398' => 'kkd>O:8R=Z', + 'stripper-intercom' => 1, + 'clatter-Kantian' => 1, + 'stamens469' => '2et] 1, + 'recall-stag-trotting' => 0, + 'obliqueness1835' => 'I', + 'mastectomies' => 0, + 'Ugandan\'s1354' => 'LW]dX<\2', + 'diabolically1578' => 'T]llZV2X1r^m>j', + 'spelunker1441' => 'RY0wo', + 'Jonathon\'s907' => 'hHrP?8FgM@mxYlNlnr56', + 'marvelling-quadrilaterals' => 1, + 'Oprah-resurrects-initiating' => 0, + 'appointments-wimp' => 1, + 'abjures-idiosyncratic' => 0, + 'freebased562' => 'YnzKTiavyf', + 'no-observers-crashing' => 1, + 'flambeing-loaned' => 1, + 'satrap-Brobdingnagian' => 1, + 'Celtic-fife' => 0, + 'Campbell246' => '[2;=[s;?DOPV', + 'took-shaver\'s351' => 'ILR6FI80dMCvTpFUV', + 'Maxine\'s1733' => 62, + 'ex-indexed' => 1, + 'distention\'s319' => 'J[gvgt2tfh0>4', + 'jaywalking1199' => '`Qnh5vdAM`HvB;^D8J@9', + 'cremates2189' => 'b?u=gIuGtF29', + 'archbishopric-strawing' => 0, + 'Cornelia1151' => 'tnwr', + 'daftest-repertoire' => 1, + 'Gamay-conscripted1099' => 'nx8\w3', + 'burg\'s1662' => '4WR', + 'tobacco-uncharted-bracken' => 1, + 'quadriplegic-mastectomies' => 0, + 'foxy-morns-bantamweight' => 1, + 'giblet\'s802' => 'z]RZb', + 'Reginald-Florine\'s' => 0, + 'Gettysburg\'s588' => 'NTBKAhCO_4PG>jhcV=q]?', + 'filmy-communism693' => '^uATLb31zlP', + 'bellyaching273' => 'QZNvKfb6J^', + 'Zachary-zoologist' => 1, + 'economics-triceratops\'s' => 1, + 'inapplicable1906' => 'U8>[ibIJI2gvyr`xJ', + 'parsley-tinderbox' => 0, + 'protectorate\'s2036' => 'ACEXVQ]0KYUYZAof;rEZ', + 'Wm-throat-daydreaming' => 1, + 'Flanagan\'s624' => 'Jg?vHX1t', + 'affections-mistiming' => 1, + 'deejay759' => '<_u0TywFuoI1w]PM`A5', + 'eglantine287' => 'bV^rl4red@;Q=eS', + 'spreader-riskiness' => 1, + 'niceness-carryalls' => 0, + 'zilch-manipulation\'s' => 0, + 'deeds-beggarly764' => '[BvxtitaV', + 'burnt-sir-dinner\'s' => 0, + 'sinusitis\'s489' => '[', + 'drubbed-Juarez' => 0, + 'motorist\'s2150' => 'rf8^xAb4dx7@cdp', + 'crescent\'s548' => 'ylL?3;z0RNy6UkM^9e`g', + 'pastoral-plebeians2180' => 'KZ8;HFaIDidpcd8W', + 'saddling-chrysanthemum' => 1, + 'pharynxes-bouffant' => 1, + 'appeal-Downy1511' => '1FXK', + 'cowpoke-cryptography\'s' => 1, + 'viciousness\'s1322' => 'q^Ea>tr1=VDkpW6ixwg', + 'pentagon-submersing' => 1, + 'Pareto-damnedest1743' => 'rvYUkM5IugMW1', + 'pumpkin\'s886' => 'oM9vmCpLsOd', + 'stamens401' => 'Wga<08Lc8YJgQT', + 'inapplicable1663' => ']s]R;JtKhgCts7bkm]', + 'lily\'s816' => 'n^GNhs664 'T', + 'proper-mistiming' => 1, + 'mucus-schoolgirls' => 1, + 'knickers783' => 'iEbAA4\^]YPK4`Z9', + 'ballyhoo\'s1801' => 'S0>I=dgL_>dNB', + 'galaxies905' => 'Z8mzDq4bpnx\yD', + 'beaux-Naphtali2067' => 'tc\H', + 'oared-Altaic-dumbwaiter' => 0, + 'lintel-bawdier-Levant\'s' => 1, + 'aurae-Beltane362' => '2VE_:cFNNmVNb2B=', + 'Dominique1262' => '0]xlmHF[eHx[omasA', + 'cowpoke-abnormally' => 1, + 'seafarers831' => ']>zRK9cacf?Fv0u', + 'bilks-Conakry1247' => '^QdP=', + 'Luis-postcards-agar-petticoat' => 1, + 'cherubic598' => 'ag6PkuBosS_>6Ig0A', + 'Atlas910' => 'NF5Rc3AHeL', + 'Oshkosh-motherly' => 1, + 'brusqueness\'s1421' => 'HK;B0EMhvbZn?=e]>w', + 'Saskatoon-zilch-Teutonic' => 0, + 'bloom-ratifying1939' => 'wZ9S', + 'courteously' => 1, + 'conga-Brobdingnagian' => 1, + 'modeled-peerages' => 1, + 'slather-toadstools' => 0, + 'overeats-urea' => 0, + 'painstaking\'s1727' => '2DJDuio6U=R1I=kLe\f', + 'federated-oligarchic' => 1, + 'Erich-murderously' => 1, + 'Leviticus1549' => 'dW4Boc8DcK01jWt', + 'bilks-thallium-conk\'s' => 1, + 'affixed275' => 'cKS0P0Qy0 'LaC@>0d_0W', + 'supernovae-Titan' => 0, + 'derivative-sausage\'s1449' => 'wjGs7WwAO', + 'swats-recollecting' => 1, + 'opts-no-produce\'s' => 1, + 'mastering-Vaduz-polarity' => 0, + 'Nintendo678' => 'z<@\9K8V^]f1T\uRq', + 'freebased1536' => 'dz=:[Ma>REmiJ3\5]G', + 'George1238' => 'PYkQCDzCO', + 'undersize1265' => 'dpFmMf 'U<;h>', + 'copyrights2023' => 8, + 'gushy1478' => 'VwjU]R9k>CudmjcLf', + 'corrupter-lovemaking' => 1, + 'hosts-stilt-slather' => 1, + 'overeats-bogeymen' => 0, + 'mallet-follies462' => 'h', + 'Octobers1978' => 'c:Ab[Blaj>BUqV4tA', + 'interminable593' => 'idY\5TF>YsN>l3Hr0XCKZ', + 'marginalia\'s1975' => 'Qz]i7Lf7\L:X@Sdq', + 'proselytizing245' => '7yk`4L', + 'jaywalking1586' => 'yZytaXS9F9_q', + 'heroins-hoodwink' => 0, + 'worksheet1709' => 'X', + 'debauching-weight-woodchucks' => 0, + 'seeings1844' => 'POwPy4E>J`AsK;2:', + 'Jacobs-misinterpretations' => 1, + 'innovators-swats-constitutions' => 1, + 'waywardness-interminable' => 1, + 'sulfate-transfigures1458' => 'QuQahcugrvvas9z', + 'bawdier-straightaway\'s' => 0, + 'ecological1319' => 'GF;m3<2M@mc', + 'subtleties1380' => 'cq7am2rH;^UiLL0xL^', + 'blackening-mousetrapped' => 1, + 'thatch-Jocasta-conspire' => 1, + 'ski-binaries-bleakness\'s' => 1, + 'Theseus-gorier-horseshoed' => 0, + 'pentagon1307' => ']a3JShKi', + 'draftiest-protest\'s' => 0, + 'whim-Galois-meal\'s' => 0, + 'ambushes-courtroom\'s1118' => '1p]Ko[U;A2_', + 'puzzles1753' => '0<[x[J', + 'Glass\'s1424' => 'X]6Iq', + 'Bluebeard-Calder-leanness' => 0, + 'mold\'s600' => '^]zsD1`F5d', + 'creole-enquiring1367' => 'u93yo', + 'nobleman\'s1933' => 6, + 'hoodwink-humorous-falter' => 1, + 'noshing526' => 'msN8J2qu7;qSC0kaimI;B', + 'thatch-Irvin-ionizers' => 1, + 'shlepps-dishcloth1984' => 'k', + 'pigpen-repayment\'s' => 1, + 'preciosity1633' => 'oXuZFW9bb2_', + 'Betelgeuse\'s1908' => 'PFov12gM', + 'relative-unclothing' => 1, + 'prone-assignable' => 0, + 'Maccabeus-sulfate' => 1, + 'stilt-Rod1599' => 'mvNIO0j', + 'koala-Gustavo978' => 'ymeoPZPp@rqkg', + 'wrapping-mousetrapped' => 0, + 'Wiemar\'s2010' => 'l8JMrK2fePh', + 'Centaurus2080' => 'H>wB1qQ=Zc4dN1w?', + 'opening-Oxonian\'s' => 0, + 'detoxification-warranty\'s' => 0, + 'apertures1956' => 'ol0M', + 'authenticity1191' => 'iUibde<;BXG>?Pj\nd', + 'permitted-bunged1968' => 'YhopxjIKQMD>8k9` 0, + 'impregnation775' => 'vrkzRGgRGn6WCPAw', + 'cottontail553' => '0JM0_^', + 'technician\'s454' => 'iFsFmm?L2;3peE]UElL', + 'Kantian-corruptness' => 1, + 'Centigrade-Pandora' => 1, + 'bullfighter-plebeians' => 1, + 'lap-prizes-detectors' => 1, + 'squeezer\'s263' => '6BPW<\CBNo@G92', + 'unraveling-ambushes' => 1, + 'disuse-weirs' => 0, + 'jitterbugs-opts-brunette' => 1, + 'unevenness-betrayer' => 1, + 'sandwich-cunt-seediness\'s' => 0, + 'capitulation-democratized' => 1, + 'Cardiff\'s1993' => 'Q1 1, + 'underestimating1945' => 'U[8tnKm_Jhm=[', + 'hospitals-streakiest' => 0, + 'masquerading857' => 'GfR59M=', + 'trucker-lynchpins' => 1, + 'débutante-gondoliers' => 1, + 'diminish390' => 'YB4cy', + 'prearrangement2134' => 'y`LZwDBl 1, + 'Jamar-outings-cheekily' => 0, + 'zephyr-sloughs-creating' => 0, + 'nosedive583' => ';49q?:', + 'trudged1439' => '`6OwB>5zgXfl', + 'hiking2064' => 'Yt:QYN2hBY', + 'letup1087' => '0@B\76fmp:cU:', + 'gondoliers-waltzes1894' => 'Mml=v', + 'moussing-incriminatory' => 0, + 'gibbon\'s1859' => 'op[Ru', + 'Cesar866' => '0obtoxFqcuF?r', + 'quadrupled1168' => '\]aEZ', + 'prone-cheekily2012' => 'K3141', + 'hoaxer-Cornelia' => 1, + 'intermediates507' => 'v6PgF', + 'soil-blueberry\'s1341' => '5Eld', + 'tapir-encroached' => 0, + 'undergarment888' => 'K', + 'macadam-carefuller' => 1, + 'Tijuana-cruising-actuate' => 1, + 'Buchanan731' => 'xXUS^?V; 0, + 'addressee-explanations' => 1, + 'cynosures-imputation\'s' => 1, + 'magnificence\'s563' => 'aVf2DoDhp[AGrq', + 'Communions1060' => '4YqT:qOt\cNgi', + 'Holley-Calvinism' => 1, + 'Macedonia\'s737' => 'R', + 'presupposition\'s1554' => 'bEiiecBf3', + 'Brobdingnagian523' => 'zlnW', + 'generalize717' => 'GK:nic^y[WuO', + 'bribery-stepping-rankle' => 1, + 'cloudbursts1349' => 'E9cVgU', + 'courteously745' => 'YV[mLnyCI 'ofZZKnvP=Wq', + 'subtleties-bewitching' => 0, + 'cap-transcribe1526' => 'q;]g:Zwb', + 'carousel-endorser' => 1, + 'vicinity\'s364' => '6rV?wX;BliER^?Q', + 'spicy925' => '7_0>con 0, + 'ganging-recall' => 1, + 'lingo-hoop\'s1440' => 'O', + 'appeal\'s1992' => 'Q', + 'Downy-negativing850' => 'gYW9YnNnwr:jYqLXR[M^0', + 'tips-enchilada' => 0, + 'sacks1077' => '3hIh9ZCge5OOwQcSzv:', + 'moldier-plunder' => 0, + 'steamroll1012' => 'fRE>Rn;8zH1aZ\k`', + 'uneven-Slavic' => 0, + 'Lysol543' => '8Zu', + 'blamer-spoilt1721' => '5N_\x4]7f@Ut', + 'inessentials-Freemasonry' => 1, + 'Ugandan-moving-cassette' => 1, + 'jihad-chilliness\'s' => 0, + 'seediness\'s1648' => 'b', + 'named-modernized-audio\'s' => 1, + 'sissies-scalpers-Anatolian\'s' => 0, + 'patienter-blockaded' => 1, + 'Singh-propulsion1524' => 'z1]RKV?=T3', + 'laziness\'s1567' => 'yWld<`', + 'anxiety\'s1576' => 'l5Xe8YxrG:esd 'FRA_n]VUbe:kc', + 'bratty-disparities' => 1, + 'cremates-monster\'s' => 0, + 'Andorra242' => 'Z 1, + 'sprite-lineman\'s' => 0, + 'Texaco-damage\'s1381' => 'cxFnYVttQyRJ5lO^zdZZ', + 'Lexington-freshwater' => 1, + 'Nintendo-phantasmagorias' => 0, + 'Lassen\'s569' => 'VMkHIVwdVXLRxThC', + 'triceratops-handwritten' => 0, + 'deactivating1855' => '8P9= 0, + 'pastoral-semifinal\'s' => 1, + 'cox1555' => '[8Wz@FP\22x8?=PW_', + 'scalpers2062' => 'P>mBNjIwV', + 'expansively2076' => 'z9UpzzV', + 'stampeded-fourteen\'s' => 0, + 'stratified-introduced' => 0, + 'Helga\'s1574' => 'Er[JkK?6A9svB', + 'destitute-hyperspace1910' => 'c@x@LBwrV5@LcH8', + 'andiron-Ramos' => 0, + 'divined2070' => 's', + 'tenderly-patienter-Permian\'s' => 1, + 'therapists-hoodwink' => 1, + 'throat-typhoon-swanked' => 0, + 'incriminatory-stamens' => 0, + 'shadow\'s1144' => '7itViBL1JeOusXbPG?S', + 'edgiest-introverts' => 0, + 'seekers-violet\'s565' => 'Mt\\Qj', + 'jousts-convalescence\'s1966' => '>', + 'cerebella1314' => '0d6OeBDny', + 'wrinkly-jitterbugs' => 1, + 'inseparable-entreats' => 0, + 'tout\'s2135' => 'hIe 'N]vJ', + 'flights1093' => 'w`oL', + 'ruminant\'s1332' => '\', + 'yuck\'s1543' => '=mn^6s', + 'disenchants-southwest' => 1, + 'affair-hobs-trousers\'s' => 1, + 'subscriptions-drably' => 0, + 'toadied-Greta-gushy' => 1, + 'babysitter\'s' => 0, + 'refereeing-preppies' => 0, + 'cots-opening\'s' => 0, + 'negativing-Conakry-adulterant' => 0, + 'racy1202' => 'k?[>2RyyMWV1', + 'reapers-stampeded-Jung\'s' => 1, + 'southwest-macadam1456' => 'Mbj;eHu_', + 'germinal\'s2156' => 'tgj@S`u6Q[fyHHyas8w5', + 'annually1588' => 'gZ6EkcJ:pFS6wgr2', + 'wrinkly\'s2057' => 'Mdy6S', + 'southwest-congresswoman' => 1, + 'border\'s825' => 'ONV=vRnQ0k8', + 'patron\'s1242' => ';G', + 'fencer-inkwells' => 0, + 'scarlet\'s522' => 'v=Ja', + 'gobbler375' => 'iU', + 'rollback-insomniacs' => 0, + 'pomading-upland' => 0, + 'freebase1070' => 'Dg;zmEudZ', + 'boutique\'s1248' => 'Vfh8>NR', + 'thirteen1986' => 'G@4DQ:L\t8=', + 'finance-tablets-buggies' => 0, + 'scarlet\'s2174' => 'BWy3v8B', + 'coins-jihad-fife-Gorey' => 0, + 'assessing-snail-binaries' => 1, + 'wedlock\'s1781' => '`58RhXKDTHWI[m\a;dcA', + 'timbers1559' => 'l', + 'providentially-circumlocutions' => 0, + 'preppies-Lexington1948' => '87sFUH', + 'ionizers1309' => 'dAL2e2', + 'daemons-Diego-repayment\'s' => 1, + 'roused-respiring-armory' => 0, + 'cocoons-snubbed' => 0, + 'overruled2155' => 'ZwosnOkc9hCeeVU6mK', + 'pucker-induing-directions' => 0, + 'pampers-sequel1225' => 'CG5TcY\L:rP9diK', + 'sojourn-bacchanalian' => 1, + 'Brahe-duty-ex-stampeded' => 0, + 'peppercorn-direct' => 1, + 'slather272' => 'Cubw>`ARml', + 'embryology\'s1964' => 'JyOolrP=T\stE@XvwW', + 'Soweto-yawns' => 0, + 'slogs-Betelgeuse' => 0, + 'Juno-initiating722' => 'C', + 'famishing-Atlas1394' => 'mJ', + 'Esmeralda\'s2139' => 'px0`uTqVd4nRAu5K>A[SY', + 'proper-masquerading930' => 'eYjU3SY', + 'meres-mistreating' => 0, + 'skater-saved508' => 'mh1bP]VgBRgZyqAi?0', + 'snail-disfavored-oscillators' => 1, + 'drawing-bridged863' => 'lt;PXu87Z?:AOuxzpNJq:', + 'patinas420' => '^Bc42z[2XVU5d', + 'uncharted-baneful' => 0, + 'teethes-commissioner1364' => 'K[kLAjCY3pF^', + 'sprier1602' => 'f>>3wEpiXzJ\DtquYQ', + 'hear-bootie\'s' => 0, + 'respiring-federated' => 0, + 'tallness-Minuit1328' => ';z', + 'disputant\'s1642' => 'M>kQl 0, + 'sensitizes1680' => 'Vdq3xDLMUqpO0KOJ', + 'skaters-lateral-faecal' => 0, + 'bilks-Lagrange289' => '[v>Ki', + 'proportional-chimes' => 0, + 'showing1055' => 'MKeq48g\Zfxdg\Y0GCj', + 'reappear-Basho1941' => 'vZsb', + 'hundreds-treason\'s' => 1, + 'staph-unctuousness280' => 'NYBNHHO^f3p', + 'meritoriously1443' => 'IX>1nZ', + 'spoilt1590' => 'WL3jI', + 'Secretariat-Houyhnhnm\'s' => 0, + 'humbler-smell\'s' => 1, + 'stillbirths' => 0, + 'repertoire-hussar-expostulate' => 1, + 'gristle544' => 'nubYZ', + 'sharpens424' => 'nZD', + 'La-picnic306' => '?0RzQ\W', + 'inkwells1841' => 'lCkLm', + 'rent-enviousness\'s' => 0, + 'ability-landholder' => 1, + 'andiron\'s926' => 'zb9W', + 'costliness-espy-carets' => 0, + 'genitalia-pantyhose' => 1, + 'debuts-bilks-attic' => 0, + 'rivaling1051' => '^i?LB3>4Vu3HYaN', + 'Medina1454' => 'cm\H0', + 'triennial-bellyful\'s' => 0, + 'Verlaine\'s1516' => 'a', + 'swiveled-admitted-dairymen' => 1, + 'unsnapping-faecal-petticoat' => 0, + 'amputee1877' => 'VhJjW9', + 'person-Rio1706' => 'R_?yEbI_l_`0RgCg', + 'Hurst-birdie' => 1, + 'sensitizes-alterable-launcher\'s' => 1, + 'Hollywood1161' => 'sGw=w]Zh', + 'permitted-no-cantata' => 0, + 'copyrights-aspirin-gaffes' => 1, + 'Truffaut1173' => 'Tn`1MHP5@aPiu9zk3?To3', + 'distention-seeings' => 1, + 'handcraft-backstop\'s' => 1, + 'intermediates1493' => 'mR '<<@]', + 'declassified2092' => 'd', + 'Davidson-sprayer-Noe-saint\'s' => 0, + 'transcribe529' => 'NO', + 'precede-screw-Barr-Whitney' => 1, + 'falter-spread\'s797' => 'SKdf2yIewXqC^6B', + 'slather-showing-Kresge' => 1, + 'run-smokiness\'s244' => ']PH12G3kg<>_8N', + 'churn770' => 'sj=2>b:c2GEj 1, + 'forgot-arachnids1783' => '0njF', + 'heckle-afflicted' => 0, + 'definitions-multiply' => 1, + 'reimburse1710' => '`RyS5ShRF2X', + 'lynchpins2183' => 'BLN\0C3HntL\jV>4pj\', + 'cupful\'s824' => 'c4ERl0iH^^JWJ:@fZs]2\', + 'roundhouse1268' => 'Itci`q5MJ0g<6ga', + 'technically-photoelectric' => 1, + 'Lexington696' => '@u4sq3z5RH:P94xpRk', + 'Jacobs-picnicker\'s' => 1, + 'stripper-osprey-networking' => 1, + 'outcome\'s1585' => 'X4?@s', + 'buying-perceptively' => 1, + 'Holley\'s541' => '`o7', + 'buggies-falter' => 0, + 'plucked-Hicks' => 1, + 'severity-Hollywood-Dominique' => 1, + 'gorier-taxying' => 1, + 'joist-Preminger\'s1343' => 'Qa8sHw', + 'pouch-soft-realists' => 0, + 'burg-penitentiary' => 0, + 'telethons1085' => 'RGxO]ZZ`2QX:bZf6Yx', + 'hyperspace1338' => 'weVnR', + 'sucks304' => 'otaUTvghyUcey6rx', + 'durability-expletives' => 0, + 'televises-loamiest' => 1, + 'fabricate382' => 'RCSSU^y3fKD9ih]]v:PO?', + 'rhapsodic1884' => 'aWi6R>vDf5n', + 'maim-boogied2003' => '_`s4X5Q', + 'tubas-soda-Florine\'s' => 1, + 'follies1972' => 'W@Dz=IvdsM0k? 'C', + 'bracken-trousers\'s1842' => 'O[SOWFfU0', + 'donkeys-hotbeds-anxiety' => 1, + 'entryway\'s' => 1, + 'Excedrin-sensitizes-cablecasts' => 0, + 'cruising-sympathized' => 1, + 'waled627' => 'rR8g79f7F\2[InBvaN', + 'facade959' => 'PTF09zIIaSs>4jI', + 'cloth-skaters993' => 'Aw6NbmtR_', + 'overruled612' => 'h<^5g6mTfW\4', + 'crinoline\'s1194' => '@', + 'stepping1643' => 'U16YxwzwJ:', + 'swingers-oscillators' => 1, + 'bleeping-hiking-holograph' => 1, + 'reasserted' => 1, + 'Intel\'s1837' => ';KtBrl', + 'Alcott-lucked-Viking\'s' => 1, + 'ruminant-stain-wafer\'s' => 0, + 'draft-muse-creating' => 0, + 'nonmembers-Theresa' => 1, + 'tilted-opts425' => 'kRJJoH', + 'fencer-stupidities-seethe' => 1, + 'orchestrating-pouch' => 1, + 'famishing-crackdown-beaux' => 0, + 'weirder-reimburse1742' => 'e06bNIblyO', + 'ostentatious-La' => 0, + 'niceness-nuthatch' => 1, + 'jaywalking-expletives' => 1, + 'prone913' => 'jb[R^\Eso8j;XpK', + 'reprehend-flintlocks' => 0, + 'crank1356' => 'mk`YUdNw5u>ReL', + 'buying-Chicago-abruptly' => 0, + 'Ca-khaki-reelections' => 1, + 'drouth\'s1583' => 'DRoeFlTmQ25[1=n', + 'flabbiness\'s576' => 'Ns1[AXqgP7CJ[5', + 'Mingus324' => 'DM0oC:70', + 'brusqueness\'s' => 0, + 'Liberace-Menkar-nonprofessional\'s' => 0, + 'nautili-lingo-throat\'s' => 0, + 'bluejay1817' => 'm=A@j6llC<\J>?9m', + 'effervescing341' => '1;3pN_0VaOZiuUm`', + 'marginalia\'s1232' => 'ZH7rOdEHnktq@PR', + 'voodoos-abruptly' => 0, + 'Juno-affair-Singh-sputum\'s' => 0, + 'ambushes1208' => 'J', + 'beachhead-stews-sniffles' => 0, + 'lazybones-transposition\'s' => 1, + 'bilks604' => 'VlrJkWIqhOkG', + 'sympathized-discommodes' => 1, + 'rhythm1344' => 'dK', + 'painstaking-master' => 0, + 'leniency\'s1223' => 'W8=V;Biw_Wb', + 'perceptiveness942' => 'RuVDPKKWx6;jk4f7\dVk', + 'Evert-Esmeralda\'s' => 0, + 'excavating-Minuit-prepaying' => 1, + 'Rabin-whaler-dumbwaiter\'s' => 0, + 'monster-gristle-overate' => 1, + 'hobs-explanations' => 1, + 'moldier270' => '@SozG5eZrgd]]zbpbc', + 'curvaceous1629' => 'Fib?Pa>8\qCTjM?DCd', + 'Brahe-snowman\'s' => 1, + 'belts1570' => '2bAjgbbc`L ']', + 'Helena-mastering' => 1, + 'baneful1805' => 'lm=X26@ucEx^W3W\', + 'wishful2029' => '[', + 'Barents792' => '\5ARTuFq[1CEK=FymG', + 'attic391' => '^', + 'hawthorn-kopeck\'s1250' => 'pt`lIDzLDcXFua;2h3WN', + 'weariest-militancy\'s' => 1, + 'Conakry-chairmanship949' => 'n[v', + 'cats-puritan\'s' => 1, + 'temptresses1496' => 'b', + 'comers-leniency\'s' => 0, + 'eighteen-preppies' => 1, + 'notoriously-pirates-extolling' => 0, + 'volt-petticoat-fabricates' => 0, + 'riskiness-polios218' => ']v07L:4fqWiNf', + 'unions-swagged' => 0, + 'Scotchman-earful\'s' => 0, + 'impeachments1355' => '>^\>BLwj9MDS', + 'fabricates-musicologist' => 1, + 'thatch-extorting' => 0, + 'mistiming-authenticity830' => 'Z36DeGSAEhJg\]<_Brr', + 'allegros1102' => 'p[1g@B[43WjdI', + 'cauldron-mousetrapped' => 1, + 'dizziest-gimpier1312' => 'dHFK;F]', + 'rind-area-pedestrianize' => 1, + 'annuity-creole-baneful' => 1, + 'inserts1730' => 'aILRxOG:dqft7', + 'Melchior734' => 'WMTZM>mXx=f]00Xq^', + 'linefeed486' => '<_L[Q7g_f]H8xqWefE^p', + 'carets-wimp1540' => 'u', + 'traffic-mountaineer' => 1, + 'spumes-wiretapped1529' => 'P\hnn]gd1l_ty@PmB', + 'sacks458' => 'aex', + 'Hurst-vibrancy-western\'s' => 0, + 'Daguerre350' => '2BnSpt`@', + 'naughtier-apertures-bellyaching' => 0, + 'slenderizing' => 1, + 'Cameron-crackdown' => 0, + 'blasphemer1123' => 'UVNe]0du', + 'snowman\'s1391' => 'jpQX\Nxzq6jHJVUo', + 'poplar-vised-servomechanism\'s' => 1, + 'Jayapura\'s617' => 3, + 'radar-unions' => 0, + 'audio-bulky-GNP-wardroom' => 0, + 'fail\'s626' => '??m8NScMwxpXvxw', + 'fidgeting-Hicks-moorland' => 0, + 'stain\'s591' => 'e', + 'granted2195' => 'F', + 'obstinacy-precipitations' => 0, + 'transposition\'s' => 1, + 'caveman-morns' => 1, + 'compiling1505' => '^^lC', + 'salving-tips' => 1, + 'Nice-hoagie-moussing' => 0, + 'pulsated327' => 'm_]` 1, + 'underwriters-scalpers' => 0, + 'Jocasta-sprite-pumpkin\'s' => 0, + 'assemblywomen251' => 'gl4', + 'Basie-appointments1240' => 'x4XTaU`9o`Wjj', + 'telethons-quelled' => 1, + 'semiskilled-Bullwinkle' => 1, + 'archbishopric\'s2055' => '_M^MB53tq', + 'ratifying1158' => 'D<_bK`Dele>ye3MR', + 'telex-completing-Tereshkova' => 0, + 'typhoon-fallacious' => 0, + 'Brianna-pollinating' => 1, + 'allegros-Verdi' => 0, + 'fidgeting-plotter' => 1, + 'recollecting' => 1, + 'escaroles-Chimu' => 0, + 'cantata-mutt403' => 'SmDreth@5yKdDyV\p0e^', + 'pencil-bevels-guesting' => 1, + 'appointments554' => 'Sv', + 'Jayapura\'s1962' => 'L31@', + 'muse-neutron\'s' => 1, + 'petticoat-moorland-foible\'s' => 1, + 'servomechanism\'s1288' => 'n<^Ggd9vJ', + 'dizziest-wimp' => 1, + 'Brianna2052' => 'jZa;wAeNm\sOwOY@^ 'a', + 'hicks-decorative-technically' => 1, + 'seasoning-nutrient-Cherie\'s' => 1, + 'Comintern-pouch-sissies' => 1, + 'Cryptozoic' => 1, + 'introduced1616' => 'O6j 'cyXFoo`tXB', + 'cad-Brianna1532' => 'T`vx6FgZZ', + 'tiara-Adan-sniffles' => 1, + 'slenderizing-lexicography\'s' => 0, + 'espy-austere-saved-reflected' => 0, + 'bulky-Gamay-pats-detectors' => 1, + 'espionage-battlement\'s' => 1, + 'Tanner-militaries-outlandishly' => 1, + 'striptease\'s264' => 'tkTCJwapDfge6TI', + 'Altaic-nonprofessional\'s' => 1, + 'addressee-Hollywood-Krishna' => 0, + 'sheepskin\'s2009' => 'HUngsXHr6', + 'impressive-peeling\'s' => 1, + 'graduate1065' => '3zYE>H_Vye 'nAi]19G4vOt1]U', + 'deactivating1442' => 'Au9Gh7pCA?\z', + 'Egyptian644' => '9dg9', + 'inapplicable-gobbled' => 1, + 'prescriptions' => 0, + 'abstainers1372' => 'yRyX]hOvUXmglqOwo', + 'Debussy-Hicks' => 1, + 'simulcast-Tijuana\'s' => 1, + 'Davidson\'s1316' => 'E2sTMUDJ71', + 'forgot1847' => 'kS', + 'chrysanthemum-riveted' => 1, + 'bullfighting1303' => '3wbww', + 'trudged-Orlons' => 1, + 'hopper-holography-caveman\'s' => 1, + 'foxes387' => 'W0>6fR@a>F4m', + 'sign-realists' => 0, + 'humorlessness-hallmark' => 1, + 'belabor1005' => 'Rh1x;@1UVm`', + 'sunstroke\'s1707' => 'A\1c\cOb', + 'unfortunate2072' => 'wy?9w3KScb\', + 'hallelujah\'s1692' => ':HA<\@` 'AynZ\78V9j', + 'perceptively813' => 'S_', + 'timberland882' => 'zLU5R:@aB', + 'Weiss-Carina-concurrence' => 1, + 'distention-bursar-excellently' => 1, + 'headlight-legato\'s' => 0, + 'Valium763' => 'QS5v37yMgh6v_J?@6', + 'Steele656' => 'M;_wHILAio[@', + 'discretion-electrocardiograms' => 1, + 'plotter2006' => '_qEj3qJj>Q>Qa', + 'arithmetic546' => '>5F?l>O`BZFvpyz`', + 'appellant536' => 'Q[`c8B;p', + 'Pam1336' => 'IGke9F\Q>4LcPtFrp6w>', + 'centralization300' => 'cO2UKri_cx:Xisut7^', + 'salvation1337' => 'eT', + 'encoder1492' => 'iG', + 'beleaguering1712' => 'CNlN]wiG\hJ', + 'inescapable-pentathlon\'s' => 1, + 'sharpens1818' => 'EJ@NH469nw0hGKi1', + 'peaceable-pumices1031' => 'iY5NEww4', + 'mercenaries-lengthily' => 0, + 'telex-Felicia\'s' => 1, + 'budded-quickening-preppies' => 0, + 'Valium-bunged-motherly' => 0, + 'expletives-Antoine' => 0, + 'bacchanalians503' => 'H_m6dn5', + 'mastering814' => '2fQvXiIe_S2^1', + 'stamens539' => 'uFN\eGNBrL_Yyi', + 'slaughtered456' => 'aAyZsNZR0vUSltH', + 'stuffed1775' => '1S7Cj:', + 'precipitations-sweating' => 1, + 'bullfighter\'s1637' => 'sO\3', + 'succumb-raised-famishing' => 1, + 'incriminating-brake-pressings' => 0, + 'heckle1407' => 'A\', + 'overproducing-Verlaine\'s' => 1, + 'apathetic608' => 'Wy', + 'discommodes239' => 'Q;h6wXnr_\`362YwFYGD', + 'satraps1869' => 'H0:;D=KoK=Ug`ncriZ8Z', + 'creating-dollar-conk\'s' => 0, + 'Newfoundland\'s654' => 'eSQ', + 'beltway-Brobdingnagian' => 1, + 'waled-George-Steiner' => 0, + 'amputee-peeling-displeasure\'s' => 0, + 'bawdier-anxiety\'s219' => 'hVOrw;W', + 'slicking1537' => ':gizAy3WuaS=M7Fj<', + 'uranium-statically1294' => 'g;w6vXBRH;\Uz', + 'roundhouse-linefeed-fans' => 1, + 'taxonomy1437' => 'ah[iS

Jf', + 'impair2176' => 'ldtb\Ih7ASFV', + 'checkmate-blasphemer' => 1, + 'Diego-randy-dune' => 0, + 'Kishinev\'s1628' => 'Mt7Qx6ie', + 'gristle-freebased1605' => '`9[F[9xz1D4KwyalUL', + 'seethe-coeducational' => 0, + 'Vivienne-disputant\'s' => 1, + 'Aimee-centrifuge\'s' => 1, + 'mestizo\'s702' => 'Zs83', + 'aimlessly1970' => 'DvhiSxlD`ddhSB:Ki96\', + 'overusing453' => '7^f9z]', + 'Togo-flattery\'s' => 0, + 'clout-centralization2015' => 'mHE25[=VCb4AL=', + 'completion-abnormally' => 0, + 'refereeing1579' => 'N[z', + 'vane-falter' => 0, + 'transfigures396' => '_ay>cm:YLw>gR4YKv;y', + 'dentist1417' => 'u[Ggc_l\6ua_y', + 'attribute-bight-oatmeal' => 1, + 'citrus-deeds-inapplicable' => 0, + 'bursted-Mayo-wiretapped' => 0, + 'prescriptions-wrinkly\'s' => 1, + 'Argonaut-nautilus\'s' => 1, + 'Aida-mahatma-detectors' => 0, + 'capering898' => 'Al8acUA8Q', + 'wartier2182' => 'tQU73;BTiB', + 'checkmate-mold-resurrects' => 1, + 'saved1632' => '_c4D:', + 'brunette-satyrs-quadrilaterals' => 0, + 'furring-nacre-alights' => 1, + 'square-transfusing-brake' => 0, + 'Texaco-barbarism1731' => '2g=tXRD>zVD7VT', + 'unions-chaperon\'s2017' => 'E8JD', + 'evil-nuggets-displayable' => 1, + 'Carey-rugs-funneling-deliverance\'s' => 0, + 'barber-appendectomy\'s' => 1, + 'playpen-retains-guesting' => 1, + 'rationals-hoping' => 1, + 'throat\'s673' => 'k[rAR6X', + 'saved1684' => 'UxFov3cv]WUP', + 'actuate-inserts680' => 'U;MwvcUDfVd', + 'suggestion-taxying' => 0, + 'exports-tinderbox' => 0, + 'named2073' => 'S;LbX[h^sKFr?o5Fz', + 'works\'s2101' => '_]rbVCP<:f5', + 'caddish-misanthropist' => 0, + 'vendetta1899' => 'OMBiptTIIw?f', + 'waywardness\'s795' => 'Btr', + 'mending-Navratilova\'s1796' => 'lI<', + 'baneful-overestimated' => 0, + 'Slavic-stiffly' => 0, + 'affluently' => 0, + 'librettist\'s288' => 'f2I1EUwuyxe=w0lxT', + 'buff-Manila900' => 'W`PE`axrb;`Xi', + 'scout-schnapps-theater' => 0, + 'Copland493' => '\I^ac\[o3O0tzjnz91]2P', + 'national\'s1918' => '^lGHv<]QWO`\', + 'stuffed1049' => 'J', + 'outskirt\'s1703' => 'X9Zp^B', + 'phlegm\'s1184' => '9tbT_x`@@89GGkj', + 'Carey-Rio-boutique\'s' => 0, + 'juncos-orally' => 0, + 'Winesap-tackiness' => 0, + 'Tamara-tinderbox1665' => '2wLzpSmn2BE', + 'bullet-cloverleaf' => 0, + 'crispier1214' => 'PFFc1qqN\5', + 'budded-spoken1183' => 'uNb6MvznxcH1rl', + 'stews1415' => 'rV?', + 'instructively-coops-bantamweight' => 1, + 'templates-Nevadan' => 0, + 'tapir-Szilard-hallelujah\'s' => 0, + 'quarterlies1973' => '7mG]f6ro9s\K>J0', + 'gaffes-lap-pleasant' => 0, + 'prepaying-run-proper\'s' => 1, + 'Pabst-sign-actuate' => 1, + 'Barrera1788' => 'rxxf', + 'Anatolian\'s1040' => 'Qfa[5mlxdT:', + 'laziness-slicking' => 1, + 'campiest-famishing' => 0, + 'hostiles-introduced' => 0, + 'escaroles-appointments336' => 'UDkrST[EBKUws0vQ7X', + 'donkeys-expostulate1457' => '=', + 'tout-cannonades2181' => 'y', + 'Teutonic-phantasmagorias' => 1, + 'stepping220' => 'iNvuV[yeeek>PIgFX', + 'edema-Cryptozoic' => 1, + 'freebased-dune' => 1, + 'Australia358' => ';5WX;lz7X=aU4a', + 'Barr-orchestra-skaters' => 0, + 'programming492' => 'xg`7fkNAB', + 'riposting-conscripted' => 1, + 'cottontail1030' => 'JFiX', + 'underwriters-bombed-impedes' => 0, + 'spoilt-alphabetizing' => 1, + 'crescent-toughness\'s' => 0, + 'exonerates-Nikon\'s' => 1, + 'burlesquing-boogied' => 0, + 'tonnages1876' => 'wd 1, + 'tzarina-bleeping1111' => 'cRK', + 'statically1759' => '[e405BI3uJl>grf', + 'Esmeralda\'s1084' => 'qxur', + 'bribery-duodenum\'s' => 0, + 'bellyaching-pleasant' => 0, + 'Rh-affections' => 0, + 'preppies-national\'s2184' => '9GXiH', + 'scuds-tobacco\'s940' => '8<0 'siV^h:Wf_n3^QKJ]', + 'sprier-lateral1427' => 'jb;xZrx\g:Rgjc', + 'overate1647' => '=bDeSOwptqmEUUeY', + 'granted-ditched' => 0, + 'stripper-Mahavira-namesake\'s' => 1, + 'pulsated-carefuller' => 1, + 'cannonades-indexed-winches' => 0, + 'misanthropist-actuate' => 0, + 'muse-declassified923' => 'Tf]3', + 'Steele334' => 'f', + 'Proust-sputum\'s' => 1, + 'initiate-defected' => 0, + 'costliness-criteria' => 0, + 'beachhead-chimes-woodsiest' => 0, + 'wainscoting\'s1382' => ';f?z:', + 'freebase2124' => '6v1JUENV9qWaQ0YuI', + 'astray-wordplay\'s' => 0, + 'Hanoverian\'s' => 0, + 'attic-inserts637' => 'pDKZi:XHr=8;OjKB5LpY', + 'monster-panic2152' => 'tn26wpt7yXV=pRq`ypjF', + 'condo\'s889' => 's4qMFRhAvj3`tooCFg1', + 'sheriff-soft-hoodooing' => 1, + 'gibbon-Sankara\'s' => 1, + 'guardrooms1150' => 'on>GVqXXZliOp@4[sf3', + 'knickers-boggiest-tonnages' => 1, + 'substituted472' => ' 0, + 'dishcloth-spools-iconoclastic' => 0, + 'enjoyment-spoken' => 1, + 'hatting-Indian\'s' => 0, + 'perk-Augsburg-pushcarts' => 1, + 'obliqueness-modernized' => 0, + 'consciously-aspirin-silkiest' => 1, + 'foliage-eyeteeth' => 0, + 'victory-galaxies-Qatar' => 0, + 'salespersons-lengthways' => 0, + 'mantle-ex-Maldivian' => 0, + 'gibbon\'s841' => 'G]NAd^14pQ;E:', + 'card-gondoliers' => 0, + 'chilliness\'s1196' => 'TOI=0HTpYiMh:', + 'Oshkosh-mixtures-duped' => 1, + 'inessentials-timbers' => 0, + 'stripper\'s208' => '56V\Udn0nVd=', + 'parabola-schoolroom\'s' => 0, + 'decommission497' => 'krSk1PYlXCR>b', + 'styling952' => 'P', + 'protest-dashiki-technically' => 1, + 'ability-Wiemar874' => 's\c^p>3Wb', + 'proportional729' => ']uRwTwSXXyH', + 'ostentatious652' => 'EvJQw2iMfKYwC2bJ', + 'Antoine-Jacobs1231' => '^Hhr9dcJ=9', + 'lintel\'s753' => 'd5K;InDE45ZLs>', + 'notes-portraitist-proportional' => 0, + 'sneaky-fallacious' => 1, + 'rationals-alphabetizing' => 0, + 'Jacobs-shaded' => 1, + 'rationals-toadied-Holcomb' => 1, + 'spokespersons-olden' => 1, + 'subtrahend2014' => 'etRd', + 'underwriters1608' => 'wTdUf', + 'Kodachrome\'s2165' => 'v44Q\]k=Q', + 'introduced-permeability\'s' => 1, + 'stairwell-Debussy-Sherrie\'s' => 0, + 'torchlight-nautili' => 0, + 'Holcomb478' => 'hu', + 'zilch-ani-intercom' => 1, + 'gazers-fresher-holstering' => 1, + 'rhythm2088' => 8, + 'Betelgeuse-succumb' => 0, + 'annexation-implanted' => 1, + 'donkeys-gallant' => 1, + 'raised-singeing-caddies' => 0, + 'Nice-shaver-underestimating' => 1, + 'cynosures-satraps' => 1, + 'hoop-Gretel1187' => 'h4e5Nttuw:Nc1>][p>^Y[', + 'vacate-caddies' => 0, + 'Indian\'s743' => '[:?PtB_LalZ', + 'muse-disbursement321' => 'K', + 'preciosity419' => 'aeI]^H0XSPg', + 'supernovae-intercom' => 0, + 'Andorra381' => ':3fR7O\P`3Xl', + 'pricing-librettist\'s' => 1, + 'corruptest1104' => 'T4H>qq0D^;w@]Pt', + 'commentate-mestizo\'s297' => 'WDMtmZ7U 'lIFBiUgxABsSL]5qA:]>', + 'semifinal-radar' => 0, + 'unclothing2004' => 'SvycW:ipCK`4', + 'orchestrating1557' => 'uwYQoSOd]Hq]', + 'homer-wishful' => 1, + 'coeducational-syrups' => 0, + 'meres-sprayer\'s1039' => 'O>BVN 0, + 'befit-keel-drawing\'s' => 1, + 'cots-outcome\'s423' => ';`<^:ML\J@W', + 'gondoliers-Helena-kitty' => 0, + 'respiring-dowdies-cervixes' => 0, + 'cad-Preminger-decommission' => 0, + 'pharynxes1193' => 'pVz 1, + 'emu-genitalia849' => 'O', + 'tout-bracken1276' => 'DlsKuT?N5^o', + 'Raul-carets-tallied' => 0, + 'murals867' => 'YV', + 'militancy-introduced' => 0, + 'foliage\'s1179' => 'dB^`[gPO4`T3;', + 'shadow\'s1329' => '8zv[;DX^HyCil`tr]4', + 'petticoat1794' => 'qpj\dq>w9i', + 'saffron-naughtier' => 1, + 'crookedest-solidest' => 0, + 'gybed-Havarti' => 1, + 'holography\'s1080' => 'm`cd 'PWyuY0;eoK', + 'crank-puritan\'s483' => 'O=2b:u;0jfzG\B@w1nw_l', + 'dizziest564' => 'M<^3vhdRSLph7e', + 'shlepps-Yugoslavian\'s' => 1, + 'snubbed-crank' => 1, + 'inaugurate-bacchanalians' => 1, + 'embryology\'s997' => '3`WPc3', + 'satraps-hyperspace-beaux' => 1, + 'rowboat713' => '^08n5=7]Hx@V[w', + 'Mahavira1954' => '_;', + 'cottonwood2130' => 'SVd0:pfx', + 'chimes-petticoat' => 1, + 'aurae682' => '3AK5@DF`8@5', + 'Betelgeuse-unclothing' => 0, + 'detectors-bluejay1467' => 'ybMDv', + 'Mingus-Menkar' => 1, + 'Cesar651' => 'FV_', + 'inhere1045' => 'htK2f', + 'cursorily-clearing\'s' => 0, + 'spelunker1996' => '2q4?y8lsSk5AVj^YgoR8', + 'Australia-workdays' => 1, + 'silkiest1086' => ';j? 'ejV2v\PzB7hh_x', + 'Brahe-inkwells-peppercorn\'s' => 1, + 'windward-spokespersons' => 0, + 'Longfellow\'s631' => '3v?FSXCNd5`nak', + 'narcissus-Brobdingnagian' => 1, + 'bleakness-grilled' => 1, + 'espy433' => 'O`sYpsnxtV7ADw', + 'flintlocks-cherubic' => 0, + 'boor727' => '818kOYN9c', + 'slather-brewer-aspirin' => 0, + 'alarmist-emu\'s884' => '4ggtKV?pUko;]QWdyBojP', + 'satraps-Argonaut1243' => 'n7y^WzE', + 'Evert-picnicker\'s' => 0, + 'salespersons1054' => '29qd;_4eC', + 'rosary1476' => '2zRqI<7T^', + 'Beltane1317' => 'dF1PkQ:Qb`y', + 'planning1116' => 4, + 'udder-misdemeanor\'s229' => '8@FanS>]U1', + 'fabricates-plumage' => 1, + 'printouts1091' => 'k7', + 'discernment862' => 'UtNg:nGzV8xa', + 'southerns1660' => '\', + 'smokiness-vibrancy\'s' => 1, + 'perish594' => 'VNJ[', + 'hatchet-puzzler' => 0, + 'tablets1257' => 'mtoT', + 'humbler1792' => 'VQwdVS 0, + 'expostulate1358' => 'K\Y6', + 'Scotch-sunblock-Rickenbacker\'s' => 1, + 'bobbles-Sicilians786' => 'xh1XHLxEaoggWt8 1, + 'pushcarts2025' => 'vba:H]0Kg>AWBSMWtA', + 'Gamay-refereeing461' => 'wUakxp2zxqXOCN\ep?', + 'curtest-cats2046' => '=', + 'sinecures-spokespersons' => 1, + 'pied-transportation' => 1, + 'stepmothers1568' => 'r979u4ettB=<4P?hz7EOs', + 'swingers-hostelry\'s1974' => 'Bx', + 'Dot\'s353' => 'n\E6pCAeSLB', + 'award-flights' => 1, + 'suppository\'s1749' => 'sy^hwHF@q9', + 'bleeping1758' => 'HA>1ZlO_hEYisiwVUCuo', + 'pixel-bushwhackers' => 1, + 'hussar-authenticity' => 0, + 'centralization-loiter' => 0, + 'detectors221' => 'MqyP', + 'vane2007' => 'BRgr^T;=_7', + 'misbehaving-stoical' => 1, + 'Wm-geology-edema-denouements' => 1, + 'affluently2113' => '^J7M2bS '4qcc\wauX_@o', + 'rockier-Steele' => 1, + 'sequel1863' => '_LWHPDGaq;I4S', + 'peaceable2032' => 'jzS0YyReYSfC:', + 'attic-stripper-buff\'s' => 0, + 'carpets-marginalia\'s' => 0, + 'deleterious-loaned' => 0, + 'particularize-militancy\'s' => 1, + 'lateral551' => 'XSFu', + 'physically1950' => '4UBe<=dkb@', + 'richness1255' => '9E[CN9dP<_ZCxKz?VsDYR', + 'shaded2191' => 'mH\I:fZFrmu:fm', + 'stupidities964' => 'x0p5Qe', + 'insubordinate-coins' => 0, + 'pleasant1866' => 'UJhGqtPi924U>Tsoj', + 'pulsated-pumices-sprayer\'s' => 0, + 'Slavic-unfortunate' => 1, + 'portion\'s467' => '0RN^kYFuYu6i 'iM]lO45t`', + 'richness848' => '9>4b1IG6X', + 'obstinacy692' => '02qy_H', + 'hatchet-Toledos' => 1, + 'planned-rent-moorland' => 1, + 'scalars-rainmaker805' => 'GzT_F\ISEk^H_>9 '^sKzXKcNVXnFC21bH9w', + 'drunkenly819' => 'BuZT^i`3zX7o?ff0H6EI', + 'Valium1938' => '=:3kf\SQhVJ`=aO', + 'Sherrie-extinguishers' => 1, + 'severity-mistiming' => 0, + 'finalists1528' => 'd3', + 'tailwind\'s2074' => 'D1yqnwFsr8`N]@', + 'trotting1854' => '=;D9PggsSH483itdyx', + 'Campbell1132' => 'Y[b3ClbB]bE', + 'Szilard-sponge-lunched' => 1, + 'hawthorn-chaperon-eloped' => 0, + 'lap-planning-agreement' => 1, + 'bullfighting-carousal\'s' => 0, + 'Calvinism642' => 'Fc?ibV9n65S', + 'fluting\'s512' => 'sJ;SBUS^l\s_kai`Y', + 'dire1520' => '68?IYw4lNKao', + 'bumblebees' => 1, + 'Menkar1693' => '=3Fl_zDUcQ7', + 'rationally-slumlord\'s' => 0, + 'dictator-hoping' => 1, + 'sympathized-singeing-deliverance\'s' => 1, + 'Gerardo-oared-beaux-gibbon\'s' => 1, + 'powwow-synthetic-respelling' => 1, + 'annuity-patienter' => 1, + 'whim-pucker-Lora-Brahe' => 1, + 'inapplicable293' => 'DS`qjpgRPJdyo', + 'vocational417' => 'a1XuM^p^y', + 'wrapping1148' => 'IE', + 'stagnating1017' => 'T', + 'clatter\'s1370' => 'TMJCaLfAKO', + 'optioned1714' => '0i:FqG6:1', + 'straightaway\'s1901' => 'cj57B]Xv@t@Aj\X@2', + 'thumping-freshwater' => 0, + 'teethes-distillations' => 1, + 'toned2177' => '6>dIk_UnUZ;A>fJ', + 'treasurers-inspection\'s' => 1, + 'doping-saddling1685' => '>zRivCY?J27VZ0]W=@S', + 'absinthe-diminish' => 0, + 'masqueraded-carefuller' => 0, + 'Hanoverian-puzzled-facade' => 0, + 'caramel-stratified' => 0, + 'shells-sappiest' => 1, + 'mestizo-undergarment614' => 'm[', + 'bacchanalians922' => 'S7;hz7g>FBUtydVSvU', + 'befit-pedestrianize374' => 8, + 'manipulation\'s' => 0, + 'dowdies2069' => 'r', + 'bumblebees1671' => 'T81YS5]V?hjUD?9', + 'Brianna-polarity' => 1, + 'detectors-lap-York' => 0, + 'tapir-earthenware\'s' => 1, + 'cassette-clearing\'s' => 0, + 'networking1737' => 'H0UWHPMc0gB:?EAzK0w', + 'physically2149' => 'e', + 'fatalistic1768' => 't0cd', + 'recession-proficients' => 1, + 'undersize1076' => 'niDohRVisL]@', + 'poplar-fended-cots' => 1, + 'sterilizers-stupidities' => 0, + 'technician-outings' => 1, + 'convalescence-seasoning\'s' => 1, + 'daydreaming1694' => 'K4[n[mitKoY 1, + 'no-rugs-megaliths448' => 's8YT8Wt4kLWtM\ 0, + 'conga335' => 'HIyf@jWsb=E5fi[Rh', + 'bacchanalians928' => 'J_:QsPpQyH '_`_X^LZmr', + 'sign-sexiest-compiled' => 1, + 'Jamar1293' => ':bf9w', + 'daftest-meritoriously1359' => 'fAA[Pv5U', + 'furring-water-outcome\'s' => 1, + 'defected-latterly' => 1, + 'bridged-horsemanship' => 1, + 'horsemanship' => 1, + 'donkeys-ostentatious' => 1, + 'fail\'s998' => '77yZ0Y>yct:IEDhBj', + 'widths1438' => 'P74b?jC=foVN', + 'shills-tonnages-sensitizes' => 1, + 'rebates-styling1425' => 'm`o;lSSuj6JCgPALX', + 'salving1936' => '7UeSV=3:vxuI<^', + 'bevels-slinks-La' => 1, + 'snubbed-sprier' => 0, + 'Tijuana\'s561' => 'S`1ri', + 'protectorate-divests' => 0, + 'Langerhans\'s1002' => ']@Ouu[z 1, + 'overweening1361' => 't7', + 'substantial1521' => 'b_LR5]t@', + 'cynosures-Kantian' => 1, + 'sobriety1556' => '>YmQ]NY\\', + 'toggle-Betelgeuse' => 0, + 'Tunguska1299' => 'X;]\7\zE4I:CJa\k', + 'economics-overbook975' => 'R', + 'silkiest241' => 'g:CZ 0, + 'Rodrigo\'s943' => '4;AavwTPKt5mEfN5yl;R', + 'lateral-earmarks215' => 'B3TF]qcQV87CM>d]nHVm', + 'flybys-prolog-palaver' => 0, + 'subscriptions449' => 'Y', + 'Ontario\'s1819' => '0PelrsY', + 'bubble-guardrooms' => 0, + 'affair-feline-Pabst\'s' => 0, + 'koala685' => '\[Oz', + 'fourteen-loiter' => 0, + 'prescriptions-zippy-phlegm\'s' => 0, + 'plotter-enormous1506' => 'C0;txLmRQ=opHEDkrRVAc', + 'remotes-stockings1114' => 'bc6L:p53>vE>hjUq', + 'hurriedly698' => 'p_td;l\UMFIc6s', + 'typhoon-holder\'s' => 1, + 'panic-painstaking-Barrera' => 0, + 'Marcus-direct-Rio-ani' => 0, + 'Rena\'s484' => 'wl8yjiel^f0X', + 'summarize-bogeymen404' => 'j', + 'rejuvenating1746' => 'hd1:hSo6uByk8', + 'lynchpins-excellently' => 0, + 'mixtures-pharynxes-narcissus' => 0, + 'gibbon\'s1967' => '?2=hejVLikGz', + 'brake-bulgiest-snail' => 0, + 'slicking-tapir' => 0, + 'appointments' => 0, + 'bilks-dire-outskirt\'s' => 1, + 'buff-suggestion-Dictaphone\'s' => 0, + 'expletives1266' => 'zu 1, + 'ruling\'s438' => 'LbStM`]', + 'Chi-humorlessness\'s532' => '@9jm1TbQFVJNZ', + 'debauching1321' => 'n', + 'busywork\'s1565' => 'a<6\x^fnpj8H2eW', + 'handwritten1659' => 'VwirCVO1f', + 'concussions1923' => 'z[Jo1k]7`sN', + 'transparency' => 1, + 'snubbed224' => 'KC@IoCx6v', + 'healers-mestizo\'s' => 0, + 'crossovers447' => 'IR]7aQXl?GSO_@', + 'divined258' => '@mnVC', + 'Pensacola\'s1071' => '4JCco4', + 'Gustavo1596' => '1@77792I', + 'creating-scarlet\'s' => 0, + 'sensitizes-insisting' => 0, + 'listener-Jocasta' => 1, + 'cluster-Quixotism' => 1, + 'dentist-duty-juncos' => 0, + 'shadow\'s976' => '39seKrp[Uo; 0, + 'lockstep-riskiness' => 1, + 'broth710' => 'uL?Hcvu2>T=z?', + 'alphabetizing967' => 'T8', + 'blockaded-misbehaving' => 1, + 'Wyeth-sobriety-thatch' => 1, + 'therapists-treason\'s' => 1, + 'wardroom-exhalation' => 1, + 'moving-cents1955' => '3KosMsZSUo', + 'pencil-arachnids' => 1, + 'Graffias\'s946' => 'p4T2hx_d`fD7D_1di', + 'sierra\'s1333' => 'jwEznHCG', + 'Wiemar2144' => '>k4wDRpi;u0vQ9lO\WlY?', + 'worrisome380' => 'F;3ZBaJ2ABYHtXX', + 'perceptiveness1267' => 'WJnvk', + 'puritan-detectors' => 0, + 'filmy-waxen-uranium' => 1, + 'disaffect-precocity\'s' => 0, + 'tobacco\'s954' => 'aL`YK', + 'swatted308' => 'hXjG0_Epm_5=t0C]wH]wf', + 'agar2173' => '7EiUV', + 'drapes-Sargasso' => 1, + 'portion\'s269' => 'A:EsSEnIPiz0GBWq', + 'udder-destinations' => 0, + 'sputum-stamens-Egyptian' => 1, + 'recession-apertures' => 0, + 'straightaway-commissioner' => 0, + 'pucker249' => 'p=fMJ\B', + 'wholesaling1029' => 'qIg[U1iw7Q7z@?1G9@g', + 'Assyria1479' => 'w=C7xVLI4LKrFA;', + 'Garland-cattle\'s1782' => 'k;E7a\wtPWxnY', + 'technically-armory-trucker\'s' => 0, + 'punished1575' => 'Ebl3vK>U7Tow98nf', + 'dowdies-gewgaw\'s' => 0, + 'precipitations788' => 'BFf', + 'mavin\'s755' => 7, + 'quelled1921' => '2rslA@XhfnzJ`j', + 'wiretap-cruising-scabbards' => 1, + 'comers-olden1486' => 'k', + 'Beverley-magnificence\'s' => 0, + 'pouch-ousted1562' => 'MJm5gV0L', + 'Australia-spawn1131' => 'k\pFMteZDd2bKb4', + 'torchlight754' => 'Y]', + 'mentoring695' => '_qXAtnh 0, + 'Anderson-jigsaw\'s1120' => 'a3x^P\gW:;zv\PiG_', + 'betrayer-snifter\'s' => 0, + 'wolfing-successor\'s' => 1, + 'marginalia-hundreds-wishful' => 1, + 'sucks459' => 'yg71x@`Wdo6', + 'substituted-Centaurus' => 0, + 'tackiness1981' => ';w8UDAGP', + 'letup-unsatisfied' => 0, + 'abstainers-affections' => 1, + 'dire686' => 'bN0zcr[50NTMlwgc0:y', + 'run-Clio-enjoyment-seeings' => 1, + 'administrator1444' => 'uWN`=pig00dOf3WWj', + 'cheekily-comers-cupful\'s' => 0, + 'concise-fencer-lily\'s' => 1, + 'oleomargarine-oared' => 1, + 'parsley567' => 'V:WLYCQq@6Z4ly8', + 'punished-freebase1640' => 'AO=EDmcN', + 'Esmeralda-bomb' => 1, + 'impregnation724' => '_xJEiJ ':Yg;e2iOok]=p?K', + 'cloverleaf-dispirit' => 0, + 'plumpest-peaceable' => 0, + 'Alcott938' => 'G[sV', + 'bluejay-Carnation\'s248' => 'n]MIdNU[N', + 'guardrooms-skaters' => 1, + 'extorting992' => 'YOLJj\W]5TYxEUQ=o63', + 'funneling-therapists' => 1, + 'Celtic-Thai\'s558' => 'a<6rsQRMmh', + 'knack-archbishopric\'s' => 1, + 'windbreak-Comintern-Bullwinkle' => 1, + 'rubier-hoagie-Heinlein\'s' => 0, + 'tallied-alights1624' => 'H[cqr4uB`m`@N2', + 'reputations' => 1, + 'sacks-Armenian-keel-hitch' => 1, + 'Hicks-puzzled-schismatics' => 0, + 'peerages669' => 'R', + 'narcissus1236' => 'JbRTY5BAL_2k9E', + 'painstaking-biasing-notoriously' => 1, + 'solidest-electrocutes1635' => 'F_ZVHN5W6j', + 'primroses1883' => 'FeZO20Tpj', + 'Holcomb603' => 'odiXk19', + 'loneliest1561' => 'Ax8', + 'hatting-cats2129' => 'XXV9w', + 'sympathized2138' => '2[M024TM]bOb3L=;Y6s=', + 'perish1330' => 'P=Za_Sci8Xq?U', + 'capering-Calder-Ca' => 1, + 'foliage-moorland-continuity\'s' => 0, + 'buggies-burg\'s1109' => 'kz`xU7', + 'Excedrin-receivership\'s' => 0, + 'tonnages-fatalistic2199' => '8sAn2DB9mdJ5Wkp7HL', + 'capitulation1145' => 'Bh^LLUvmz6taQv2', + 'Cornelia-rowboat' => 1, + 'Zachary\'s1469' => '^G=b[zR\vu', + 'sidewalls1762' => 'L7lh0', + 'cursorily-holder\'s' => 0, + 'centralization' => 0, + 'boor-Newfoundland\'s' => 0, + 'extolling-zombis' => 0, + 'demonstrated971' => 'yOCzw[9KMi', + 'granule-copyrights' => 1, + 'autocrat-blasphemer' => 1, + 'diabolically691' => 'j7SI_BTbT2aJCxRe', + 'raised-claptrap\'s' => 0, + 'economy\'s1127' => 'Tdf[]AN@s6`chHJQ_y', + 'Northeast\'s' => 0, + 'Kantian-initiating-bratty' => 1, + 'befit-stamens1581' => 'wPI0 0, + 'solvent\'s1508' => '45n]kR', + 'housemother-transgressor\'s' => 1, + 'oligarchic1812' => 'zqgstqlLV', + 'Turner-streakiest1081' => 'H^lRkhVQi', + 'landholder1580' => '0SvIophkIWFd1jGlk\6', + 'Della-vicinity\'s2127' => 'pa4pLwh', + 'puzzles-overeats-hopper\'s' => 0, + 'weight-Centaurus' => 1, + 'screw1152' => '\?N4uLAB^YK1', + 'coordinate-germinal\'s' => 0, + 'Valium-windshield\'s756' => 'p`W0K80TYH?xL[Rk', + 'portraitist1470' => 'off', + 'swats1653' => '`99DD', + 'recoveries-recall' => 0, + 'Altaic\'s1167' => 'G]B_XE1x9vS1j', + 'graced-rainbows' => 1, + 'sappiest-felicitous' => 0, + 'Tanner-Tamara1751' => 'i7', + 'cart-Florida1405' => 'XVoW1RH?4Z '?', + 'draftiest1047' => 'j2yQ]@e6]m<:2GCYRWfJk', + 'kinetic-implicitly1644' => 'bcrsu`Wq1', + 'cats2049' => 'NXDhISZn4J0', + 'silkiest-copperhead\'s1717' => 'A6eBA]VKg3', + 'stopping-emanate-electrocardiograms' => 0, + 'joist-demijohn\'s' => 1, + 'Aida762' => 'e7V', + 'gallowses1824' => 'L?', + 'Suva-inseminate' => 0, + 'worksheet-tonnages807' => 'iIuMXJS@IicG\', + 'erupt-costliness1946' => '\r', + 'unfurls-bridge' => 1, + 'graduate515' => 'uk', + 'tobacco-Nice-streakiest' => 1, + 'attribute\'s1512' => 'TKLpO\q', + 'riffing-Malaysian-abstainers' => 0, + 'frightens-rollback-refereeing' => 1, + 'Nikon-crackdown-reversals' => 0, + 'escaroles890' => '2X0]][6:', + 'Bloomfield' => 0, + 'northerly-seasonal' => 1, + 'boutique-excavating' => 0, + 'Eltanin-vast\'s' => 1, + 'donkeys-circumlocution\'s' => 1, + 'well1100' => 'b', + 'distention\'s376' => 'kIabSm][KnCKO>z', + 'Holley-bacchanalians' => 1, + 'particularize-foible\'s' => 1, + 'seen-plunder-khaki\'s' => 1, + 'drapes-gang-Holcomb' => 1, + 'afflicted-Rickenbacker\'s' => 0, + 'gewgaw-fourteen-emu\'s' => 0, + 'admitted581' => '57\:@v 'TH=vCJfw0WqNGI<_8y0', + 'Hicks-relative\'s' => 0, + 'fabricate-rarity\'s' => 0, + 'quadrilaterals-inessentials' => 0, + 'bratty1771' => '[ad2wePU', + 'permeability\'s' => 1, + 'crank-Teutonic918' => 'np\=is0EzSyyXV_[b', + 'seeming1853' => '0Y1O^=mKdj\htWnP', + 'picnicker-insisting' => 1, + 'Cuisinart931' => 'NQUsZcCzGnvcy`Zx8gq', + 'overproducing-scarlet\'s' => 1, + 'Florine\'s966' => 'O 'qupCIVl=nqD1', + 'showboated-décolleté683' => 'qEn4pwVf7VVf@`X9W1g?T', + 'Actaeon-Toledos1591' => 'CQ>yLRhN9a', + 'technology-conga-rosary' => 1, + 'Algerian\'s1021' => 'y@ZsPLD', + 'hawthorn-salvation' => 0, + 'skilled-reissue\'s' => 0, + 'outings641' => '8Eiq7ILq7LIutHy', + 'cox-disaffect-generalize' => 1, + 'Rabelais-tinder' => 0, + 'Diego772' => '^5F\XcD=a1jIOD', + 'Jocasta-pied1676' => 'X]j2>D[]7:', + 'randy-inaugurate-tips' => 0, + 'funneling-lamentation' => 1, + 'passerby\'s665' => 'UGNu', + 'spokespersons-continuity\'s' => 0, + 'Helena-Justine' => 1, + 'Meighen-flatware\'s370' => '\Us', + 'pentathlon\'s742' => 'xZSuOcnc1d3BAPAQ', + 'Macedonia\'s349' => 'i3L9K\@ 'WrcXheZwAMHWG\Gc?', + 'Barr\'s468' => 'K7R0^@bh_GEeweEsgX', + 'belts-Wiemar-townsman' => 0, + 'shills-manics716' => 'aN]1v', + 'Omayyad-Orlons-ambushes' => 0, + 'sir-orchestra-armlet\'s' => 1, + 'waves1957' => 'gzy4<_db[oUXvg', + 'Nevadan-costliness' => 0, + 'water-Randy708' => 'K@', + 'fourteen-Lysol' => 0, + 'gybed-radar366' => 'z`Z1zM', + 'Erich-fencer\'s2170' => 'sX`9ES', +); + +1; diff --git a/lib/Data/MessagePack.pm b/lib/Data/MessagePack.pm index 1837f0c..6a80eb5 100644 --- a/lib/Data/MessagePack.pm +++ b/lib/Data/MessagePack.pm @@ -3,7 +3,7 @@ use strict; use warnings; use 5.008001; -our $VERSION = '0.46'; +our $VERSION = '0.46_01'; sub true () { require Data::MessagePack::Boolean; @@ -70,11 +70,11 @@ Data::MessagePack - MessagePack serialising/deserialising $mp->canonical->utf8->prefer_integer if $needed; my $packed = $mp->pack($dat); - my $unpacked = $mp->unpack($dat); + my $newdat = $mp->unpack($packed); =head1 DESCRIPTION -This module converts Perl data structures to MessagePack and vice versa. +This module converts simple Perl data structures to MessagePack and vice versa. =head1 ABOUT MESSAGEPACK FORMAT @@ -115,19 +115,20 @@ please visit to L. =item C<< my $packed = Data::MessagePack->pack($data[, $max_depth]); >> -Pack the $data to messagepack format string. +Pack the perl $data - numeric or string scalar or arrayref or hashref +of those - to a messagepack format string. This method throws an exception when the perl structure is nested more than $max_depth levels(default: 512) in order to detect circular references. Data::MessagePack->pack() throws an exception when encountering a -blessed perl object, because MessagePack is a language-independent -format. +blessed perl object or subroutine reference or REGEXP object, because -=item C<< my $unpacked = Data::MessagePack->unpack($msgpackstr); >> +=item C<< my $unpacked = Data::MessagePack->unpack($packed); >> -unpack the $msgpackstr to a MessagePack format string. +unpack the MessagePack formatted $packed data to a new perl data scalar, +i.e. an immediate scalar or reference. =item C<< my $mp = Data::MesssagePack->new() >> @@ -164,9 +165,16 @@ See L for the meaning of B. Same as C<< Data::MessagePack->pack() >>, but properties are respected. -=item C<< $data = $mp->unpack($data) >> +=item C<< $packed = $mp->add_crc($packed) >> -=item C<< $data = $mp->decode($data) >> +Add an optional crc checksum to the packed data at the end. +unpack/decode will check this and report an error on data corruption. + +Note that the original string will be changed in place for efficiency. + +=item C<< $data = $mp->unpack($packed) >> + +=item C<< $data = $mp->decode($packed) >> Same as C<< Data::MessagePack->unpack() >>, but properties are respected. @@ -187,6 +195,10 @@ Use C<< $msgpack->prefer_integer >> property instead. =head1 SPEED +Data::MessagePack is the fastest known Perl serializer and deserializer +for small objects (<500b), but is slower than JSON::XS and Storable on medium +sized (2-3K) or bigger data (~100K). + This is a result of F and F on my SC440(Linux 2.6.32-23-server #37-Ubuntu SMP). (You should benchmark them with B data if the speed matters, of course.) @@ -242,6 +254,8 @@ will astonish those who try to unpack byte streams with an arbitrary buffer size (e.g. C<< while(read($socket, $buffer, $arbitrary_buffer_size)) { ... } >>). We should implement the internal buffer for the unpacker. +=item Improve performance for larger buffers + =back =head1 FAQ @@ -276,6 +290,8 @@ Kazuho Oku shohex +Reini Urban + =head1 LICENSE This library is free software; you can redistribute it and/or modify diff --git a/t/25_crc.t b/t/25_crc.t new file mode 100644 index 0000000..05e20ab --- /dev/null +++ b/t/25_crc.t @@ -0,0 +1,25 @@ +use Test::More tests => 6; +use Data::MessagePack; + +{ + my %hash = ("test" => 0, + "test2" => "2"); + + my $mp = Data::MessagePack->new(); + my $packed = $mp->pack( \%hash ); + is(length $packed, 15, "len 15"); + + my $crc = $mp->add_crc( $packed ); + is(unpack("C", substr($packed,0,1)), 0x82, "packed a FixMap with 2 elems"); + is(length $crc, 20, "add_crc len 20"); + $packed = substr($packed, 0, 15); # create a copy. add_crc() modifies the argument + is(substr($crc, 0, 15), $packed, "crc really at the end"); + + my $unpacked = $mp->unpack( $crc ); + is_deeply( \%hash, $unpacked, "round trip crc hash" ); + + # corrupt the data + substr($crc, 2, 2, "no"); + $unpacked = eval { $mp->unpack( $crc ) }; + ok $@, "caught crc corruption"; +} diff --git a/t/26_roundtrips.t b/t/26_roundtrips.t new file mode 100644 index 0000000..3755bf0 --- /dev/null +++ b/t/26_roundtrips.t @@ -0,0 +1,273 @@ +# -*- perl -*- +use Test::More tests => 3; +use Data::MessagePack; +use JSON; +use Storable; +use Benchmark ':all'; +# benchmark small (50b), middle (2-3k) and large hashes (~100k) +use Data::Random::WordList; +my $wl = new Data::Random::WordList( wordlist => '/usr/share/dict/words' ); +my @wl = $wl->get_words(2000); + +my $d = 123-48; +sub randstr { + my $len = shift; + my $s = " " x $len; + substr($s,$_,1,chr(int(rand($d)) + 48)) for 0 .. $len-1; + return $s; +} + +sub randword { + my $len = shift; + my $s = $wl[int(rand(2000))]; + while (length($s)<$len) { + if (substr($s,-2,2) eq "'s") { + $s = substr($s,0,-2); + } + $s .= "-".$wl[int(rand(2000))]; + } + return $s; +} + +{ + my %h1 = ("test" => 0, + "some typical long string for smaz" => 1, + "test2" => "2"); + my %h2, %h3; + my $i = 1; + $h2{ randword(int(rand(20))+4) } = $i++ for 1..200; + $h3{ randword(int(rand(12))) . $i++ } = randstr(rand(int(12)+10)) for 1..2000; + $h3{ randword(int(rand(12))+10) } = $i++ % 2 ? 0 : 1 for 1..2000; + + if (0) { + unlink "h2","h3"; + open H2, ">>h2"; + print H2 "my %h2 = (\n"; + for (keys %h2) { + my $k = $_; $k =~ s/'/\\'/g; + my $v = $h2{$_}; + print H2 " '$k' => $v,\n" ; + } + print H2 ");\n"; + close H2; + open H3, ">>h3"; + print H3 "my %h3 = (\n"; + for (keys %h3) { + my $k = $_; $k =~ s/'/\\'/g; + my $v = $h3{$_}; $v =~ s/'/\\'/g; + $v = $v =~ /^\d+$/ ? $v : "'".$v."'"; + print H3 " '$k' => $v,\n" ; + } + print H3 ");\n"; + close H3; + } + + my $mp = Data::MessagePack->new(); + + my $p1 = $mp->pack( \%h1 ); + my $j1 = JSON::encode_json( \%h1 ); + my $s1 = Storable::freeze( \%h1 ); + my $u1 = $mp->unpack( $p1 ); + is_deeply( \%h1, $u1, "round trip small hash ".length($p1)."/".length($j1) ); + + my $p2 = $mp->pack( \%h2 ); + my $j2 = JSON::encode_json( \%h2 ); + my $s2 = Storable::freeze( \%h2 ); + my $u2 = $mp->unpack( $p2 ); + is_deeply( \%h2, $u2, "round trip medium hash ".length($p2)."/".length($j2) ); + + my $p3 = $mp->pack( \%h3 ); + my $j3 = JSON::encode_json( \%h3 ); + my $s3 = Storable::freeze( \%h3 ); + my $u3 = $mp->unpack( $p3 ); + is_deeply( \%h3, $u3, "round trip large hash ".length($p3)."/".length($j3) ); + + diag "$JSON::Backend: ", $JSON::Backend->VERSION, "\n"; + diag "Data::MessagePack: $Data::MessagePack::VERSION\n"; + diag "Storable: $Storable::VERSION\n"; + diag "-- serialize small\n"; + cmpthese timethese(-1 => { + '#D::MP' => sub { Data::MessagePack->pack(\%h1) }, + '#JSON::XS' => sub { JSON::encode_json(\%h1) }, + '#Storable' => sub { Storable::freeze(\%h1) }, + }); + diag "-- serialize medium\n"; + cmpthese timethese(-1 => { + '#JSON::XS' => sub { JSON::encode_json(\%h2) }, + '#D::MP' => sub { Data::MessagePack->pack(\%h2) }, + '#Storable' => sub { Storable::freeze(\%h2) }, + }); + diag "-- serialize large\n"; + cmpthese timethese(-1 => { + '#Storable' => sub { Storable::freeze(\%h3) }, + '#D::MP' => sub { Data::MessagePack->pack(\%h3) }, + '#JSON::XS' => sub { JSON::encode_json(\%h3) }, + }); + diag "-- deserialize small\n"; + cmpthese timethese(-1 => { + '#Storable' => sub { Storable::thaw($s1) }, + '#D::MP' => sub { Data::MessagePack->unpack($p1) }, + '#JSON::XS' => sub { JSON::decode_json($j1) }, + }); + diag "-- deserialize medium\n"; + cmpthese timethese(-1 => { + '#Storable' => sub { Storable::thaw($s2) }, + '#D::MP' => sub { Data::MessagePack->unpack($p2) }, + '#JSON::XS' => sub { JSON::decode_json($j2) }, + }); + + diag "-- deserialize large\n"; + cmpthese timethese(-1 => { + '#Storable' => sub { Storable::thaw($s3) }, + '#D::MP' => sub { Data::MessagePack->unpack($p3) }, + '#JSON::XS' => sub { JSON::decode_json($j3) }, + }); + + cmpthese timethese( + -1 => { + '#json_small' => sub { JSON::decode_json($j1) }, + '#json_medium' => sub { JSON::decode_json($j2) }, + '#json_large' => sub { JSON::decode_json($j3) }, + '#mp_small' => sub { Data::MessagePack->unpack($p1) }, + '#mp_medium' => sub { Data::MessagePack->unpack($p2) }, + '#mp_large' => sub { Data::MessagePack->unpack($p3) }, + }); +} + +__END__ + +2012-08-02 17:56:48 rurban +ok 1 - round trip small hash 52/60 +ok 2 - round trip medium hash 3887/4690 +ok 3 - round trip large hash 97879/112088 +# JSON::XS: 2.32 +# Data::MessagePack: 0.46 +# Storable: 2.35 +# -- serialize small +Benchmark: running #D::MP, #JSON::XS, #Storable for at least 1 CPU seconds... + #D::MP: 1 wallclock secs ( 1.01 usr + 0.00 sys = 1.01 CPU) @ 567762.38/s (n=573440) + #JSON::XS: 0 wallclock secs ( 1.08 usr + 0.00 sys = 1.08 CPU) @ 1279826.85/s (n=1382213) + #Storable: 2 wallclock secs ( 1.05 usr + 0.00 sys = 1.05 CPU) @ 156038.10/s (n=163840) + Rate #Storable #D::MP #JSON::XS +#Storable 156038/s -- -73% -88% +#D::MP 567762/s 264% -- -56% +#JSON::XS 1279827/s 720% 125% -- +# -- serialize medium +Benchmark: running #D::MP, #JSON::XS, #Storable for at least 1 CPU seconds... + #D::MP: 1 wallclock secs ( 1.06 usr + 0.00 sys = 1.06 CPU) @ 9660.38/s (n=10240) + #JSON::XS: 1 wallclock secs ( 1.06 usr + 0.00 sys = 1.06 CPU) @ 38641.51/s (n=40960) + #Storable: 1 wallclock secs ( 1.05 usr + 0.00 sys = 1.05 CPU) @ 37236.19/s (n=39098) + Rate #D::MP #Storable #JSON::XS +#D::MP 9660/s -- -74% -75% +#Storable 37236/s 285% -- -4% +#JSON::XS 38642/s 300% 4% -- +# -- serialize large +Benchmark: running #D::MP, #JSON::XS, #Storable for at least 1 CPU seconds... + #D::MP: 1 wallclock secs ( 1.04 usr + 0.00 sys = 1.04 CPU) @ 293.27/s (n=305) + #JSON::XS: 1 wallclock secs ( 1.04 usr + 0.01 sys = 1.05 CPU) @ 1599.05/s (n=1679) + #Storable: 1 wallclock secs ( 1.06 usr + 0.00 sys = 1.06 CPU) @ 1583.96/s (n=1679) + Rate #D::MP #Storable #JSON::XS +#D::MP 293/s -- -81% -82% +#Storable 1584/s 440% -- -1% +#JSON::XS 1599/s 445% 1% -- +# -- deserialize +Benchmark: running #json_large, #json_medium, #json_small, #mp_large, #mp_medium, #mp_small for at least 1 CPU seconds... +#json_large: 1 wallclock secs ( 1.10 usr + 0.00 sys = 1.10 CPU) @ 718.18/s (n=790) +#json_medium: 1 wallclock secs ( 1.14 usr + 0.00 sys = 1.14 CPU) @ 18862.28/s (n=21503) +#json_small: 1 wallclock secs ( 1.06 usr + 0.00 sys = 1.06 CPU) @ 811470.75/s (n=860159) + #mp_large: 1 wallclock secs ( 1.11 usr + 0.00 sys = 1.11 CPU) @ 636.94/s (n=707) +#mp_medium: 1 wallclock secs ( 1.09 usr + 0.00 sys = 1.09 CPU) @ 16439.45/s (n=17919) + #mp_small: 2 wallclock secs ( 1.11 usr + 0.00 sys = 1.11 CPU) @ 688816.22/s (n=764586) + Rate #mp_large #json_large #mp_medium #json_medium #mp_small #json_small +#mp_large 637/s -- -11% -96% -97% -100% -100% +#json_large 718/s 13% -- -96% -96% -100% -100% +#mp_medium 16439/s 2481% 2189% -- -13% -98% -98% +#json_medium 18862/s 2861% 2526% 15% -- -97% -98% +#mp_small 688816/s 108045% 95811% 4090% 3552% -- -15% +#json_small 811471/s 127302% 112890% 4836% 4202% 18% -- + + +ok 1 - round trip small hash 52/60 +ok 2 - round trip medium hash 2790/3560 +ok 3 - round trip large hash 118086/136416 +# -- serialize +Benchmark: running json_large, json_medium, json_small, mp_large, mp_medium, mp_small for at least 1 CPU seconds... +json_large: 1 wallclock secs ( 1.12 usr + 0.01 sys = 1.13 CPU) @ 1321.24/s (n=1493) +json_medium: 1 wallclock secs ( 1.03 usr + 0.00 sys = 1.03 CPU) @ 43952.43/s (n=45271) +json_small: 0 wallclock secs ( 1.08 usr + 0.00 sys = 1.08 CPU) @ 1279826.85/s (n=1382213) + mp_large: 1 wallclock secs ( 1.08 usr + 0.00 sys = 1.08 CPU) @ 259.26/s (n=280) + mp_medium: 1 wallclock secs ( 1.09 usr + 0.00 sys = 1.09 CPU) @ 10382.57/s (n=11317) + mp_small: 1 wallclock secs ( 1.13 usr + 0.00 sys = 1.13 CPU) @ 553601.77/s (n=625570) + Rate mp_large json_large mp_medium json_medium mp_small json_small +mp_large 259/s -- -80% -98% -99% -100% -100% +json_large 1321/s 410% -- -87% -97% -100% -100% +mp_medium 10383/s 3905% 686% -- -76% -98% -99% +json_medium 43952/s 16853% 3227% 323% -- -92% -97% +mp_small 553602/s 213432% 41800% 5232% 1160% -- -57% +json_small 1279827/s 493548% 96766% 12227% 2812% 131% -- +# -- deserialize +Benchmark: running json_large, json_medium, json_small, mp_large, mp_medium, mp_small for at least 1 CPU seconds... +json_large: 1 wallclock secs ( 1.04 usr + 0.00 sys = 1.04 CPU) @ 537.50/s (n=559) +json_medium: 1 wallclock secs ( 1.09 usr + 0.00 sys = 1.09 CPU) @ 24659.63/s (n=26879) +json_small: 2 wallclock secs ( 1.09 usr + 0.00 sys = 1.09 CPU) @ 789136.70/s (n=860159) + mp_large: 1 wallclock secs ( 1.10 usr + 0.00 sys = 1.10 CPU) @ 508.18/s (n=559) + mp_medium: 1 wallclock secs ( 1.10 usr + 0.00 sys = 1.10 CPU) @ 17771.82/s (n=19549) + mp_small: 1 wallclock secs ( 1.01 usr + 0.00 sys = 1.01 CPU) @ 717173.27/s (n=724345) + Rate mp_large json_large mp_medium json_medium mp_small json_small +mp_large 508/s -- -5% -97% -98% -100% -100% +json_large 537/s 6% -- -97% -98% -100% -100% +mp_medium 17772/s 3397% 3206% -- -28% -98% -98% +json_medium 24660/s 4753% 4488% 39% -- -97% -97% +mp_small 717173/s 141025% 133328% 3935% 2808% -- -9% +json_small 789137/s 155186% 146716% 4340% 3100% 10% -- + +SMAZ: +ok 1 - round trip small hash 38/60 +ok 2 - round trip medium hash 3370/4635 +ok 3 - round trip large hash 96913/111681 +# JSON::XS: 2.32 +# Data::MessagePack: 0.46_02 +# Storable: 2.35 +# -- serialize small +Benchmark: running #D::MP, #JSON::XS, #Storable for at least 1 CPU seconds... + #D::MP: 1 wallclock secs ( 1.06 usr + 0.00 sys = 1.06 CPU) @ 405734.91/s (n=430079) + #JSON::XS: 1 wallclock secs ( 1.01 usr + 0.00 sys = 1.01 CPU) @ 1238753.47/s (n=1251141) + #Storable: 1 wallclock secs ( 1.07 usr + 0.00 sys = 1.07 CPU) @ 160776.64/s (n=172031) + Rate #Storable #D::MP #JSON::XS +#Storable 160777/s -- -60% -87% +#D::MP 405735/s 152% -- -67% +#JSON::XS 1238753/s 670% 205% -- +# -- serialize medium +Benchmark: running #D::MP, #JSON::XS, #Storable for at least 1 CPU seconds... + #D::MP: 1 wallclock secs ( 1.10 usr + 0.00 sys = 1.10 CPU) @ 4071.82/s (n=4479) + #JSON::XS: 1 wallclock secs ( 1.12 usr + 0.00 sys = 1.12 CPU) @ 38399.11/s (n=43007) + #Storable: 1 wallclock secs ( 1.08 usr + 0.00 sys = 1.08 CPU) @ 37925.00/s (n=40959) + Rate #D::MP #Storable #JSON::XS +#D::MP 4072/s -- -89% -89% +#Storable 37925/s 831% -- -1% +#JSON::XS 38399/s 843% 1% -- +# -- serialize large +Benchmark: running #D::MP, #JSON::XS, #Storable for at least 1 CPU seconds... + #D::MP: 1 wallclock secs ( 1.07 usr + 0.00 sys = 1.07 CPU) @ 142.06/s (n=152) + #JSON::XS: 1 wallclock secs ( 1.10 usr + 0.00 sys = 1.10 CPU) @ 1628.18/s (n=1791) + #Storable: 1 wallclock secs ( 1.04 usr + 0.03 sys = 1.07 CPU) @ 1569.16/s (n=1679) + Rate #D::MP #Storable #JSON::XS +#D::MP 142/s -- -91% -91% +#Storable 1569/s 1005% -- -4% +#JSON::XS 1628/s 1046% 4% -- +# -- deserialize +Benchmark: running #json_large, #json_medium, #json_small, #mp_large, #mp_medium, #mp_small for at least 1 CPU seconds... +#json_large: 1 wallclock secs ( 1.09 usr + 0.00 sys = 1.09 CPU) @ 724.77/s (n=790) +#json_medium: 1 wallclock secs ( 1.09 usr + 0.00 sys = 1.09 CPU) @ 18788.07/s (n=20479) +#json_small: 0 wallclock secs ( 1.08 usr + 0.00 sys = 1.08 CPU) @ 796443.52/s (n=860159) + #mp_large: 1 wallclock secs ( 1.06 usr + 0.00 sys = 1.06 CPU) @ 395.28/s (n=419) +#mp_medium: 1 wallclock secs ( 1.12 usr + 0.00 sys = 1.12 CPU) @ 9599.11/s (n=10751) + #mp_small: 1 wallclock secs ( 1.09 usr + 0.00 sys = 1.09 CPU) @ 526090.83/s (n=573439) + Rate #mp_large #json_large #mp_medium #json_medium #mp_small #json_small +#mp_large 395/s -- -45% -96% -98% -100% -100% +#json_large 725/s 83% -- -92% -96% -100% -100% +#mp_medium 9599/s 2328% 1224% -- -49% -98% -99% +#json_medium 18788/s 4653% 2492% 96% -- -96% -98% +#mp_small 526091/s 132992% 72487% 5381% 2700% -- -34% +#json_small 796444/s 201387% 109789% 8197% 4139% 51% -- + diff --git a/xs-src/MessagePack.xs b/xs-src/MessagePack.xs index bd092dc..ff84414 100644 --- a/xs-src/MessagePack.xs +++ b/xs-src/MessagePack.xs @@ -5,6 +5,7 @@ #endif XS(xs_pack); +XS(xs_add_crc); XS(xs_unpack); XS(xs_unpacker_new); XS(xs_unpacker_utf8); @@ -27,6 +28,7 @@ BOOT: init_Data__MessagePack_unpack(aTHX_ false); newXS("Data::MessagePack::pack", xs_pack, __FILE__); + newXS("Data::MessagePack::add_crc",xs_add_crc, __FILE__); newXS("Data::MessagePack::unpack", xs_unpack, __FILE__); newXS("Data::MessagePack::Unpacker::new", xs_unpacker_new, __FILE__); diff --git a/xs-src/pack.c b/xs-src/pack.c index cec6989..203b2d1 100644 --- a/xs-src/pack.c +++ b/xs-src/pack.c @@ -1,6 +1,7 @@ /* * code is written by tokuhirom. - * buffer alocation technique is taken from JSON::XS. thanks to mlehmann. + * buffer allocation technique is taken from JSON::XS. thanks to mlehmann. + * crc by Reini Urban */ #include "xshelper.h" @@ -25,8 +26,8 @@ typedef struct { STATIC_INLINE void dmp_append_buf(enc_t* const enc, const void* const buf, STRLEN const len) { + dTHX; if (enc->cur + len >= enc->end) { - dTHX; STRLEN const cur = enc->cur - SvPVX_const(enc->sv); sv_grow (enc->sv, cur + (len < (cur >> 2) ? cur >> 2 : len) + 1); enc->cur = SvPVX_mutable(enc->sv) + cur; @@ -42,6 +43,9 @@ dmp_append_buf(enc_t* const enc, const void* const buf, STRLEN const len) #define msgpack_pack_append_buffer(enc, buf, len) \ dmp_append_buf(enc, buf, len) +#define _msgpack_crc_user(crc, x) \ + _msgpack_data_crc(crc, SvPVX_const(x->sv), (unsigned char *)x->cur) + #include "msgpack/pack_template.h" #define INIT_SIZE 32 /* initial scalar size to be allocated */ @@ -340,3 +344,36 @@ XS(xs_pack) { ST(0) = enc.sv; XSRETURN(1); } + +XS(xs_add_crc) { + dXSARGS; + if (items < 2) { + Perl_croak(aTHX_ "Usage: Data::MessagePack->add_crc($packed)"); + } + + SV* self = ST(0); + SV* val = ST(1); + + enc_t enc; +#if 0 + /* This copies the sv with its pv anew, even if we share the pv */ + enc.sv = sv_2mortal(newSV_type(SVt_PV)); + SvPV_set(enc.sv, SvPVX_const(val)); + SvCUR_set(enc.sv, SvCUR(val)); + SvLEN_set(enc.sv, SvLEN(val)); +#else + /* Modify in place. The pv is not copied. */ + enc.sv = val; +#endif + enc.cur = SvEND(val); /* at the end */ + enc.end = SvPVX_const(val) + SvLEN(val); /* do not realloc buffer */ + + msgpack_pack_crc(&enc); + + SvCUR_set(enc.sv, enc.cur - SvPVX_const(enc.sv)); + *SvEND (enc.sv) = 0; + + ST(0) = enc.sv; + XSRETURN(1); +} + diff --git a/xs-src/unpack.c b/xs-src/unpack.c index a554b9f..819b187 100644 --- a/xs-src/unpack.c +++ b/xs-src/unpack.c @@ -325,7 +325,9 @@ XS(xs_unpack) { sv_2mortal(obj); if(ret < 0) { - Perl_croak(aTHX_ "Data::MessagePack->unpack: parse error"); + Perl_croak(aTHX_ ret == -2 + ? "Data::MessagePack->unpack: crc check error" + : "Data::MessagePack->unpack: parse error"); } else if(ret == 0) { Perl_croak(aTHX_ "Data::MessagePack->unpack: insufficient bytes"); } else { @@ -413,8 +415,9 @@ _execute_impl(SV* const self, SV* const data, UV const offset, UV const limit) { // ret > 0 : success if(ret < 0) { - Perl_croak(aTHX_ - "Data::MessagePack::Unpacker: parse error while executing"); + Perl_croak(aTHX_ ret == -2 + ? "Data::MessagePack::Unpacker: crc check failure" + : "Data::MessagePack::Unpacker: parse error while executing"); } mp->user.finished = (ret > 0) ? true : false;