var checkerID = 0;
var tsPasswordChecker = Class.create({
	
	initialize: function( init ) {
		this.id = checkerID++;
		this.input = init.input;
		this.minLength = init.minLength;
		this.minLevel = init.minLevel;
		this.levelMinScores = [0, 20, 36, 50, 60, 75];
		this.levelNames = ['Very weak', 'Weak', 'OK', 'Good', 'Strong', 'Very strong'];
		this.levelColors = ['red', 'red', 'orange', 'green', 'green', 'blue'];
		this.commonWords = new Array();
		
		this.parseCommonWords();
		this.input.observe( "keyup", this.scoreAndOutput.bindAsEventListener( this ) );
		this.input.observe( "focus", this.showPasswordInfo.bindAsEventListener( this ) );
		this.input.observe( "blur", this.hidePasswordInfo.bindAsEventListener( this ) );
	},
	
	parseCommonWord: function() {
		var i, c, word;
   
		i = 1;
		c = commonData.substr(i, 1);
		while (c == c.toLowerCase() && i < commonData.length) {
			i++;
			c = commonData.substr(i, 1);
		}
		
		word = commonData.substr(0, i);
		commonData = commonData.substr(i, commonData.length);
		
		if (word.substr(0, 1) == 'A') {
			word = word.substr(1, word.length);
		} else {
			i = word.charCodeAt(0) - 'A'.charCodeAt(0);
			word = this.commonWords[this.commonWords.length - 1].substr(0, i) +
			word.substr(1, word.length);
		}
		this.commonWords[ this.commonWords.length ] = word;
	},
	
	parseCommonWords: function() {
		for (var i = 0; commonData.length > 0; i ++) {
		   this.parseCommonWord();
		}
	},
	
	getCharSetSize: function( pass ) {
		var a = 0, u = 0, n = 0, ns = 0, r = 0, sp = 0, s = 0, chars = 0;

		for (var i = 0 ; i < pass.length; i ++) {
			var c = pass.charAt(i);
			
			if (a == 0 && 'abcdefghijklmnopqrstuvwxyz'.indexOf(c) >= 0) {
				chars += 26;
				a = 1;
			}
			if (u == 0 && 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'.indexOf(c) >= 0) {
				chars += 26;
				u = 1;
			}
			if (n == 0 && '0123456789'.indexOf(c) >= 0) {
				chars += 10;
				n = 1;
   			}
			if (ns == 0 && '!@#$%^&*()'.indexOf(c) >= 0) {
				chars += 10;
				ns = 1;
			}
			if (r == 0 && "`~-_=+[{]}\\|;:'\",<.>/?".indexOf(c) >= 0) {
				chars += 20;
				r = 1;
   			}
			if (sp == 0 && c == ' ') {
				chars += 1;
				sp = 1;
			}
			if (s == 0 && (c < ' ' || c > '~')) {
				chars += 32 + 128;
				s = 1;
			}
		}
		return chars;
	},
	
	getPasswordLevel:function(){
		var score = this.scorePass( this.input.value );
		
		if (score < this.levelMinScores[ 1 ]) {
			return 0;
		} else if (score < this.levelMinScores[ 2 ]) {
			return 1;
		} else if (score < this.levelMinScores[ 3 ]) {
			return 2;
		} else if (score < this.levelMinScores[ 4 ]) {
			return 3;
		} else if (score < this.levelMinScores[ 5 ]) {
			return 4;
		} else {
			return 5;
		}
	},
	
	scoreAndOutput: function() {
		var pass = this.input.value;
		if (pass.length == 0) {
			this.output( '' );
			return;
		} else if ( !this.lengthOK( pass ) ) {
			this.output( '<font style="font-weight:bold;color:red">Too short</font>' );
			return;
		}
		
		this.outputRating( this.scorePass( pass ) );
		
		/* TODO
		if ( !this.levelOK( pass ) ) {
			this.output( '<font style="color:red">Too weak</font>' );
		} else {
			this.output( '<font style="color:green">Good</font>' );
		}
		*/
	},
	
	outputRating: function( score ) {
		if (score < this.levelMinScores[ 1 ]) {
			this.output( '<font style="font-weight:bold;color:' + this.levelColors[ 0 ] + '">' + this.levelNames[ 0 ] + '</font>' );
		} else if (score < this.levelMinScores[ 2 ]) {
			this.output( '<font style="font-weight:bold;color:' + this.levelColors[ 1 ] + '">' + this.levelNames[ 1 ] + '</font>' );
		} else if (score < this.levelMinScores[ 3 ]) {
			this.output( '<font style="font-weight:bold;color:' + this.levelColors[ 2 ] + '">' + this.levelNames[ 2 ] + '</font>' );
		} else if (score < this.levelMinScores[ 4 ]) {
			this.output( '<font style="font-weight:bold;color:' + this.levelColors[ 3 ] + '">' + this.levelNames[ 3 ] + '</font>' );
		} else if (score < this.levelMinScores[ 5 ]) {
			this.output( '<font style="font-weight:bold;color:' + this.levelColors[ 4 ] + '">' + this.levelNames[ 4 ] + '</font>' );
		} else {
			this.output( '<font style="font-weight:bold;color:' + this.levelColors[ 5 ] + '">' + this.levelNames[ 5 ] + '</font>' );
		}
	},
	
	lengthOK: function( pass ) {
		if ( this.minLength == -1 ) return true;
		return pass.length >= this.minLength;
	},
	
	levelOK: function( pass ) {
		var score = this.scorePass( pass );
		return score >= this.levelMinScores[ this.minLevel ];
	},
	
	scorePass: function( pass ) {
		var plower = pass.toLowerCase();
		var isCommon = false;
		for ( var i = 0; i < this.commonWords.length; i++ ) {
			if ( this.commonWords[i] == plower ) {
				isCommon = true;
				break;
			}
		}
		var score = this.getCharSetSize( pass ) + pass.length - this.minLength;
		if (isCommon) {
			score = Math.floor( score / 2 );  
		}
		return score;
	},
	
	output: function( s ) {
		if ( s == "" ) {
			this.ratingDiv.update("");
		} else {
			this.ratingDiv.update( 'Rating: ' + s );
		}
	},
	
	ensureOutputDivBuilt: function() {
		if (this.outputDiv) return;
		var dims = this.input.getDimensions();
		var offset = this.input.cumulativeOffset();
		var top = offset.top + dims.height + 2 + 'px';
		var left = offset.left + 'px';
		var width = dims.width + 'px';
		
		var zindex = "";
		try{
			if( tsZindexManager ){
				zindex = "z-index:" + tsZindexManager.stack() + ";";
			}
		} catch( e ){}
		this.outputDiv = new Element('table', {style:'position:absolute;font-size:12px;background-color:#e5e5e5;height:20px;' + zindex +
			'font-family:Arial;width:' + width + ';top:' + top + ';left:' + left + ';'});
		this.outputDiv.update('<tr><td id="passRating_' + this.id + '" align="left"></td><td id="passMinimum_' + this.id + '" align="right"></td></tr>');
		$( 'body' ).insert( this.outputDiv );
		this.ratingDiv = $( 'passRating_' + this.id );
		if ( this.minLevel != -1 ) {
			$( 'passMinimum_' + this.id ).update( 'Minimum Strength: <span style="font-weight:bold;color:' + this.levelColors[ this.minLevel ] + ';">' + this.levelNames[ this.minLevel ] + '</span>' );
		}
	},
	
	showPasswordInfo: function() {
		this.ensureOutputDivBuilt();
		//if (Effect) {
		//	new Effect.SlideDown( this.outputDiv );
		//} else {
			this.outputDiv.show();
		//}
	},
	
	hidePasswordInfo: function() {
		//if (Effect) {
		//	new Effect.SlideUp( this.outputDiv );
		//} else {
		if (this.outputDiv) {
			this.outputDiv.hide();
		}
		//}
	}
	
});

var commonData = "A A!@#$%F^G&H*A*A.,mDnEbA/.,DmEnFbBdev/nullBetc/passwdBusr/groupA000D0E0F0G0H0D7C7D007B213C46D9A1B022D9E3F8C6Csne1B11D1E1F1G1H1B209C12E12D3D4D7C25C3D098D123D321D4E5F6G7H8EqwerDabcDgoB313E13D6C32C579B412C30C430B701dC1717B812overtureD8E18B900D1D2D3D4D5D6D7D8D9C10D1D2D3D4D5D6D7D8D9C20D1D2D3D4D5D6D7D8D9C30D1D2D3D4D5D6D7D8D9C40D1D2D3D4D5D6D7D8D9C50D1D2D3D4D5D6D7D8D9C60D1D2D3D4D5D6D7D8D9C70D1D2D3D4D5D6D7D8D9C80D1D2D3D4D5D6D7D8D9C90D1D2D3D4D5D6D7D8D9Ba2b3cBchrisBkittyBp2o3iBq2w3eCw23eBsanjoseA20C00D1D2D3D4D5D6D7D8D9C10D2D3D4D5D6D7D8D9C20D1D2D3D4D5D6D7D8D9C30D1D2D3D4D5D6D7D8B112E2112B2C00C2D2E2F2G2H2C52BkidsBwelcomeA3B010B112C41B33D3E3F3G3H3B533B69BbearsA4B.2bsdC3bsdB055C77mashB2bsdB3bsdB44D4E4F44H4B788B854BrunnerA5B050B121B252B4321B55D5E5F5G5H5B683B7chevyBand5A6262B301B54321B66D6E6F6G6H6B969E69Czulu4zA777D7E7F7G7H7B89456BdwarfsA80486B675309B7654321B88D8E8F8G8H8A90210B11DscFturboDturboB2072B99D9E9F9G9H9A;lkD;lkDasdA@#$%^&AaB12345Cb2c3Gd4BaCaDaEaFaGaHaCrdvarkDonDtiBbacabDdabdooCbotFtDyCcD123DdE123H4EeFfGgCdenaceDolDulFkafFlahErChijitEramCigailCoutCracadabraIverEhamErCsolutBcaciaDdemiaHcCceptEssDordEuntHsCeCknakCropolisCtionEveDorCuraBdaDmEsCelCgCiDbDdasDneCmDinF1FistIratorCrianGnaHeEenGneDockCultCventurDilBehCneasCrobicsBfreshDicaEdCterBgainCentCgieFsCnesBhideeCmedEtBikmanCleenCmeeCrborneDcraftDheadDplaneDwolfBjaiDyBkhilCi123DkoBlainDmgirDnDsEkaEtairDyneCbanyEtrosIsDertGoCcaponeCejandrDnaDrtDssandDxE1EandeIrHrEendrEiaFsCfDaroDredCgebraCiDasFesDcaEeF1EiaDenFsDnaEeDsaEonClDahEnDegroEnDisonDoDstateCohaDkCphaF1FbetDineCtafEmiraDheaDimaG1CvaDinCwaysCysonEsaBmaDdeusDndaG1DrEjitEpreeDzingCberCelieDricaH7CiDgaCorphousDsDurCrilCyBnC-jenCacondaDlEogDntFhDstasiCchanaEorCdDersGonDiDreF1FaG1GsFwG!G1EoidFmacheGedEzejDyCelieseDwpassCgelF1FaG1FikaFsErineDieF1DusCiDlDmalG houseGhouseGsDsDtaCjanaDenCnDaElenaFiseEmariDeEliEtteDiEeConEymousCswerCtaresDhonyEropogenicDoineEnFioFyCuDmber1HoneDpaFmDragCvilsCyDthingBpacheClColloG13CpleF1F2FiiFpieFsCrilCtivaBquaEriousGusBragornDmDshCbenzCchieFtectDticCdentCeDleneCiDaEdneEneDelFlaDfDjitDndamDstotleDzonaCjunFasaCleneCmandGoDondCnoldConDundCrowCsenalDhadCtDemisDhurDieEstDyCunEaCvindBsCadDpCdDfE1234E;lkjEasdfEgFhGjHkEjklH;DlkjChimaEshDleyG1DokDrafDtonDutoshCianCjeetCkCmCpenCsDholeDmunchCterixBtC&tCandtCeChDanassDenaClantaCmosphereCseCtilaCulBudieDraEeyCgustGinCreliusCstinCthorDumnBvalonDtarCengerEirCiCniCrahamBwayE!CesomeByeletClmerBzamCizEiCtecsCureAbabakDeEsDiesDyEdollElon5CcchusDhDkdoorErubEupCdassDboyDgerDtimesCgladyDwomanChramCileyCkedpotatoeErDshiClakrisEsFubrDdoDkrishDlardEsCmbiEooCnDanaGsFeDcroftDditDgDksDzaiCrakaDbEaraEerEieDfEerEingDitoneDnEesFyG1EieEyardDonF harkonnenFharkonnenDretGtEyDtEmanEonCsebalHlDfEulDicElDkarEetGbHaIllDsEoonDtardDukiCtcaveEhEomputerDmanG1EobileCystateBballCbDbEbFbGbHbBeCachFesDgleDmmeupDnerEieEsDrEsDstFyDterEitElesEriceDutifuIlFyDverEisG1CbeCcauseDcaDkyCefDnDrDthovenCforeChnamClgiumDizeDlEaEeEowDmontDovedCnDgtDjaminEiDnetGtEyDoitDsonDtDyDzCowulfCppeCresforDhanuDkeleyDlinGerGwallDnardHoEhardEieDryDtEhaDylCstCtaEcamDhEanyDsieEyDterEieEyCverlyBfdCiBharatDvaniCoothapBiayCcameralDhngaEonCenveniCgDalDbenEirdEossFyErotherEucksDcockHsDdealEogEudeDfootDglesEuyDhipsEouseDjokeDmacFnEouthDredEoomDsecretDtitsEoeCkerClboDiameeDlEcEieEsEyF1CmDboFeDmerCnDdDgEoDkyDodCoboyDchemDlogyCrdE33EieEyDgetGtaEitDthdayCscuitDhopDmillahCtchFinH'HgDemeDterCzDhanBjornBlackFbootFieFjackDderunnerDhDineErDkeDncheDsterDzerCeepFingFsCindsDssDtzDzzardCondeFieFsG1DodEmcountyDwEfishEjobEmeEoffCssCueEbirdFlazerEeyesEfishEjeanElineEsFkyEvelvetBmwBoCatCbDbiFjoEyDcatCdyshopCeingCgartDeyDusCleslawCmbayCndE007DerDgDitaDjourDkersDnEieDsaiDzaiEoCobieGsEooEysDgerEieDkEemGdannoEitDmerDnDsterDtsFieDzieCrDisDnagaiCscoDsDtonCthCulderDrbonEneG-againGagainCwlingCxerFsCydDwonderCzoBradE&janetEfordEjanetEleyEnjanetDinFdeadDnchEd-n-janetFiFonFyEislaDsilDtDvenewworldFsDzilCeakoutEstGfeedGsDndaGnFenEtDtEonEtDwsterCianDcklesFoutDdgeGsGtHtDefcaseDghtDngEkleyDtainCoadwayDkenheartFrDmbergDncoGsEteDokeFsDthelGrHsDwnFsCuceDnoDtusCyanFtDceDnBsdD4DunixBubbaF1FhGlahFlahEleGsCckEarooEsCddEahEhaFistEyDgieDliteCffaloEettEyCgsEbunnyEyCllEdogEetEsFhitCmblingCngDnyFrabbitCrgessDkeDnsDtonCsalaccDinessDterCtDchDlerDtEerGflyEfuckIerEheadEonGsCyCzzByCoungGinCronCtemeCungAc++B00perB3poBabernetDinboyCctusCdDatDcamDweldCesarCipEcadDtlinClDebEndarDgaryDibanEfornIiaDlDvinG1CmaroEyDelEraFonDillaGeDlinDpanileEbellEingCnDadaDcedFrDdaceEiEyDelaDnonGdaIleDonDtorDucksEteCpfastDtainEianCrDbonDdEinalDebearEnEyDlEaEenaEoFsEyleFnDmenDnageDolF1FeGenFieGnaHeFynDrieEolFtEyDsonDterEmanDverDyElEnCscadeHsDeyDhEboxDioDparEerDsieDtleCtDalinaFogDch22DfishDherinIeEiEleenEyDnipDsDwomanCyugaBccDcEcFcGcHcBecilFeFiaFyCdicClesteDiaEcaEneDticsCmentCnterCrebusDuleanCsarFeDsnaBfiCjBgjBhadDiEnFsawDkkalaDllengIeDmeleonEpionFsDnEceEdFlerFraHmHsEelFquaEgFeGdGitGmeGthisFhoFkyuEnelFiEshinEtalDoE-yanEfengEsDpmanDrdonnayEgerEityElesFieH1FottIeEmingEonDsDtDuCeckinFovDdsadaDeseGcakeDifDlseaH1DmEistryDnEgDowF-toDralaEryEylDssEterH1DungDvyF1CiD-pangEshunEtaiEwangEyaoDaE-huaFlinFyinGuEraDcagoEkenEoDefsEnDhsingDldsplayEinDnE-wEaFcatEgF-enGliGmeEookEpanDpEperDquitaDshengCldrnDoeCoDcolatIeDlDongG-hDpEsticksDuEetteCrisF1G23FpenFsGyFtG1GiaInHeHnIaIeGmasGopIhJerGyDonosCuDckFyDen-chGtsDnE-linFsheFyuEgF-naGpiGyaFenFyenDongDrchEn-huBicDeroCgarCmarronCndelynFrEiEyF1DemaCrcuitDqueDrusCvicElBlaireDmbakeDncyDptonDrenceEisaGsaEkFsonDssFicFrooImDudeGlFiaCeanerFfightFroomEtEvageDoCiffFordEtonDntFonDpperDtEorisCockEloDsefriendDudDverCuelessDsterHsBoatamundiEimundiCbainDraCcacolaEkolaDkDoCdeEnameDyCeCffeeChenCkacolaDeEisitClbyDdEcutsEshoulderEwarDemanEtteDinDleenFgeFtteEinsDorFadoFsEurDt45EraneDumbiaCmandurDbinationDeEdienneEonEtDmanderEradesEunicationDpaqEtonEuserveFteHrDradeHsCnceptEordeDdoFmGsDfidenEusedDnectFrEieDradDsoleEpirituEultaHiDtentErolDvexCokEieGsFngDlEbeanEmanDperDterCpperCraElynDdeliaDeyDinnaGeDkyDleneDneliaHusEflakeDonaDradoDvetteDwinCsmicEoFsCugarGsDldDntryDplesDrierEtneyDscousCventryCwboyGsDsCxCyoteBrack1FerDigDppEsDshcourseDwfordCeateFionGveDditDosoteDscentDtinDwCicketDminalDstinaConusDssDwEleyCugDiseDsaderCystalBs-eeCc298D412Die-ciCeeChrcBthreepoDulhuBudaDdlesCervoCmCnninghamDtCongCpcakeCrmudgeonDrentDtEisCstomerEsupCtDdownDieFpieDlassByberFpunkCcloneCnthiaCranoDilAdaddyCebumDdalusDhyunDmonGicGsCggerG1CilyDnDsieEyCkotaCleDiborEtDlasDtryDuCmeDienDmitDogranEnDrongsCnDaDceFrDeDgermouseDhDielG1GleDnaEiEyDteCphneDperCqingCrinDk1EmanEstarDrellFnEinEowEylDthFvaderDweiEinDylEouchCshaCtDaE1EbaseEtrainDooCveDidF1FoviFsEsCwitDnCyDtekBdanielrodDyCdDdEdFdGdHdBe'anCadE-headEaheadEheadGdDnEnaDthFstarCbDasishDbieDorahDraCcemberDkerCdheadFdDiCeDdeeDpakEfreezeEseaFixFpaceEthroatDznutsCfDaultDenseDoeCkaiClanoDeteDiverDnazDoisDtaDugeCmeterDoEnFicFsCnaliDisFeDnisEyDverCpecheDtCquinCrekDluenDrekCsareeDertDignEreeDkjetEtopDmondDperateDtinyCtleffDroitCutschCvDadminDelopEnDiceElFinsideEneDonCwDayneDeyDydecimalCxterBgjBhanDrmaGraCirajBiabloDgEsDlE-inFupEinEupDmondHsDnEaEeEnFeDzCckEensEheadEtracyCdCegoDselDtEerCggerDitalH1ClbertDipDlweedCmDitrisDwitCnaDeshDnerCpakDlomacIyDperDstickDtaCrect1GorDkCscEbrakesEjockeyEoFveryDkDneyCxieDonBoCanCcDtorDumentCdgerGsCesCgDbertDcatcherDfightDgieEyCitEnowCllarGsEyDphinHsCmainDenicoDinicHkGqueFoCnD'tDaldDeDgEmingDkeyDnEaDtknowCobieDfusDgieDkieDmE2DnDrsCpeyCrabEiDcasDiEsEtDkDothyCsCubleDdouDgEieElasCwnEtownBr.dementoCaftDgonG1GflIyGsDwDxoDzenCeamFerFsGcapeDwCillpressDnkDppingDverDzztCnoCopE deadEdeadDughtCugnigDmEsCydenBuaneCckEieEsbreathFoupCdeDleyCkeE letoEletoClceCmbassCnbarDcanDdeeDeDgeonsDnCplicateCstinEyCtchFessBvlinsideBwainDneDyneCightBylanAeB-mailBachCgerDleF1FsCrlDthCsierDterGnEonDyEcomeEgoElayCtDmeDshitHandBckartClipseBdCdieCenCgarDesCinburghDthCmundCouardCuardGoCwardGsDinFaBe-csCcsCeDeEeFeGeHeCyoreBffieBggheadBiderdownCeioCghtCleenCnsteinCrikBkaDterinBladioDineDnorCectricDmentDnaEiDphantCiDasDna1DotDsabetEsaDzabetIhClaDenDieEotGtEsCmiraDoEotazDstreeCoiseCsieCvinEraEsCwoodDynBmailCeraldCilEeEioEyCmanuelDiEttCoryCpireDtyhandedGeadedBndaEhCemyDrgyCgageDineGerDlandCigmaCriqueCterFpriseDropyCzoDymeBrateaCenityChDardCicE1EaEhDkEaDnClingCnestGoDieF1DstCoticCsatzCtyuiopCvanBscortG1CfandiaCmondCpanolCtablishEteDelleDherBtCaoinG shrdluGshrdluCeeDrnityChanCoileBuccDlidCgeneCngDjiCropeBvaDnEsCeDlynDrafterEyCieBxavierCcaliberHuIrDelEptCploreHrDonentErtDressCtensionCxxtremeByalAfaceDultyCilDrviewEwayEyringDthClconDsestartCmilyG1CncyDgCrDahDetheewellDflungDgoneDhadDmerEingDoutDrellDsideDukCsihuddDtEbreakElaneCtanehDboyDcatCustCyeEzBearlessCbruaryCedbackEmeCliciaEksEpeExCnderDrisCreydooDgusGonDmatDrariEetEisBffDfEfFfGfHfBghBictionCdelFityCeldCgaroDleafCleEsystCnanceDdDiteDnConaCreEballFirdEmanEnzeEwalkDstCshE1EerGsFsEheadEieFngDtCtnessCveBlakesDmingoDndersDshCdCeaDmingDtchGerDursCightDpEperCoatDphouseDresEidaH1DwEerGpotGsDydCuffyDteCyDawayDboyDerFsDingGfuckGleapBoghornCnDgCoDbarFzDlEproofDtEbalHlCrDamDbiddenDdDearmEsightFtDkedtoungeDmatDrestDsytheDtuneDwardCsterCulplayDndEtainDrEierEwheelEyearsCxDtrotDyladyCzzieBramemakerDnceGsHcIoFineGsHcFoisEkFaFenfurterFieFlinFnfurterDtCeak1FbrothersDdEdieFyEericHkEricDeEbirdEdomEmanDnchG1GfriesDshbreadFmeatCidayDedricEndGsDghtenDscoDtzCodoDgE1EgieHsFyEsDmDnt242FierDshmeatEtyBtpBubarCckE-offFyouEaduckEedFmFrEfaceEingFtElegEmeEoffEuEyouCgaziCllCnDctionDgibleEuyDkyDnyDtimeCrballCtureCzbatDzEballGtAgabbyDrielHlDyCdDiCelicCgeCilClaEgaExianFyDenDileoCmalDbitElerDesDmaphiCnapathDdalfDjaCoyuanCrciaDdenEnerDfieldEunkelDgoyleDlicDnetDpDrEettEyDthDyCshDmanDtonCtewayH2DorF1DtCussDtamCveEnDrielBedankenCminiCneEralEsisDiusCofEfFreyDrgFeG1FiaGnaCraldErdGoDdDgoryDmanGyH1DonimoDryDtErudeCtD fuckedElaidFostEstuffedDfuckedDlaidEostH!EuckyDoutDstuffedBgeorgeCgDgEgFgGgHgBhandiColamalDstBiancarlEtsCbbonsDsonCffyCgiClDbertDgameshDlesDmanCnaDgerGsDoCovanneCridharDlEsCselleCuseppeCveCzmoBlacierDdysCenEdaEeaglesEnCider1CobalDriaBmoneyBnuDemacsDsBoC awayH!Dfuck yourselfDjump in a lakeDto hellCaheadDlieDtDwayG!CblinEueCcougsCdDfleshDivaDzillaCesDtheCfishDoritDuckyourselfChomeCingCjumpinalakeCldEenEfingerGshEieDfEerEingDlumCneDorrheaDzalesHzEoCoberDdE-luckEafternoonEeveningEfightEgriefEjobEluckEmorningEtimesEwifeDfusEyDnightDseCpalonDherDinathCrdanEonDgeousFsDogCslingDonDtraightCtDoE hellEhellCugeDldCwestBraceDemeDhamEmDilDmpsDndmaEtDphicHsDtefulIdeadDvisDyEmailCeasyspoonEtDedEnFdayFlineEtingDgE1EgEoryDmlinHsDtaFlEchenEeFlEzkyCiffeyFinDpeDssomDzzlyCoovyDupDverDwCumpyCyphonBsiteBucciCenterDssEtCidoDllermDnnessDtarG1ClukotaCmbyDptionCnnerDtisCozhongCpiCrjotDuCsDtavoCyBwenBymnastAh2opoloBaCckEedFrCdCfidhDtanCggisChaCiDboDleyDrbagGllEilCkanClD9000DlEelujahEoFweenHllDtCmidEltonDletEinDmerGedEondDptonDsterCn-gyooDdilyEwaveHingDkDnaFhDsEelEoloFnEpeteCoCppeningEyF1G23FdayFendingCrdE2seeEcoreEdiskEiFsonEwareDkaraEonnenDlanEeyG1EotsDmonyDoEldDrietFsGonEoldEyDueEoDvardEeyCsDokDsanCttonCuhuaCveDivahCwaiiDkEeyeH1CyesCzelBeC'sdeadIjimCalthG1DnDrtFbreakFsDtEherH1H2DvenCbridesCctorCdgehogCeDralalDsungCidiDkeEkiDnleinErichEzClenFaFeDgeDlEoF1G23F8FhelloDpE123EerEmeCmantCndersonErixDningDryCrDbEertDeDmanEesDnandezDpesDsheyDveDzogCsdeadHjimCungCwlettCydudeDthereBhhDhEhFhGhHhBiawathaCberniaCddenCghlandFifeClarieDbertDdaDlEaryEelCmCroguchEkiEoEshiEyukiCsDtoireFryCtchcockDhereDlerBoaDngCbbesEitCckeyG1DusF pocusF-pocusFpocusCkClaDdDeDidayDlyDyE grailEgrailEshitCmayoumDeEbrewErFjEworkCnDdaF1DeyDgEkongEphucEtaoDkeyCodlumDkerGsDpsDsierDtersH2011EieCpeDscotchCrizonDnetGsEyDrorDseFsDusCsannaHhDeheadDtCtDdogDlipsDrodDtipCucineDseFwifeEtonCwDardG93DellDieBplabBsinDuwenCpiceBuangDshengCbbaFhubbaDertCdsonCeyCghEesDoDuesCiyingCmmerCndtDgEmokDterEingCongCrtCsbandDkersEiesDtlerCtchinsCuCyenCzurBwansooBydrogenFxylCeCmanCoDnDungCukAiB'mokFayBabgCnBb6ub9CanezCeleiveEieveCmDpcFatFxtDsuxCrahimBcapCecreamDmanConBdenticalCiotContknowBfC6was9CorgetFotBgnacioEtiusCuanaBhackedDoDteyouCtfpBiiDiEiFiGiHiBkonasCuoBlanCmariCoveuFyouCyaBmageEineCbroglioCinCokEayCpactElaDerialCslBnCcludeCderpalDianGaEgoEraDonesiaDraCfoErmixCgemarDmarDoDresGsEidDvarCheritthewindCigoCnaDocentFuousCsaneDertionDideEghtDtEallEructCtegraHlElErcourseFleafFnGetFracialDoDrepidCvinoveritasEsibleEteCxsBoanaCmegaCngBraCelandDneFeCfanCinaDsEhFmanClandeCmaDeliConmanCulianCvingBsCaDacDbelGleDjokeCelChmaelCiDdoreDlDsClandCmailCraelDealCsamCtoBtC'sajokeEokGayCaliaEyCsDajokeDokFayDy-bitsyEbitsyCty-bittyEbittyBuytrewqBvanCyBzzyAj0kerB1l2t3BackEieG1EolanternEsonDobDquelineGsCdeCeDgerDjinCggerDuarChanshiCiDkEneEumarDmeDnCkeEyDovCmaicaDesF1FbondDieElahEsonDjamCnDaEkiDeEkElEtDiceEeDnEaEyDuaryDvierDyCpanFeseDonCredCshoEvantDminGeDonF1DpalEerCtinCvedDierCwsCyDantaGhDneDsonCzzBeanE-baptisteFclaudeFfrancoisFmichelFpierreFyvesEandaEclaudeEetteEfrancoisEineEmichelEneFieEpierreEyvesCdDiCepcjG7EsterCfDfEeryEreyH1ChanClloEystoneCnDiferDkinsDnEiFeFferEyF1DsEenCrDaldDemyDomeDricFmyEyDseyCsseF1EicaFeDterDusF1FchristCthroGhGtullDta1CudiCwelsBiCachenDnEliEnEpingEwenCeChongCkunCllCmDboFbDiDminEyCnDgDshengCongCseongCtendraCxianBjjDjEjFjGjHjBkl123D;CmBnyeBoanEieEnFaFeDquimCcelynCdyCeDlEleDnaDrgDyChanFnGaH1DnE316ElennonEnyEsonCinE for freeEforfreeCjiDoCkerF1CleCnDathanDellEsDgE-iEguDiDnyCrdanG23EieDeanDgeCseEeEphDhEuaDiahEeCurEneyCyDceBsbachBuanCbileeCdasDiEantoEcaelEthDyCggleChaniCiD-fenDcyDlletDnClayneDesDiEaF2FnGaGnEeF1FnGneFtGteDyCmanjiDboDeauxDpE in a lakeEinalakeCnDeEbugDgleDiEorEperCpingEterCssiDtEdoitEeEfortheEiceH4FnG1GeCttaBvncByhAkacyCdoshCiCkaDogawaCl007DamazoEppaDiDyanEnCmCnDgEarooCosCraEleeDenF1DieEnFaFeDlDmaDyEnCseyDhtanCtDeErinaDherinIeEiEleenEreenFineFynEyDiEeF1EnaDrinaDsufumDydidCvehCyDlaEenBcinBeciaCeDpEerEoutDsChCithF1CllerFyEyF1DseyCnDdallDjiDnedyFthEyDobiDtEonDzoCralaDberosDiDmitDnelDriFeEyFaCshavDterCtanDchupCvinF1CwlCyDboardDpadBhanEhDyrollCoanhDiDngDsrowCuehF-hoDrsheeBianEgEuschDtCdderDsCeuCllerEmeDroyCmDberlyDmoDonCndEerDgEandiEdomEfishElearEsDsonCpCranDkElandDstenCssEa2EmeCtkatDtenG12GsEyFcatCwiBjhgfdsaBkkDkEkFkGkHkBlausCeenexCingonHsBnickersFsDghtGsCowCuteBoalaCichiCjiCkakolaDoCmbatCngjooDradCokCrdaBraigDmerCisEhnaHmEtaFenFiGeGnHaHeFyCystalFynaBunCoCrtBwanEgCokDngByahnCeongsoCleCraAlab1DtecCcrosseCddieDiesDleDyEbugCgerCidCkeErsDotaDshmanClitFhGaCmDbdaEertDerDinationCnDaDceFrDdryCpinCraDissaDkinDryF1DsonCserFjetDsie1DtEangoEtangoCtenightCughDraFeFmaeEelFnGceGtGzEieFndaEyCwDrenceDsonDyerCzareFusBeaDderDfDhDnnFeCbesgueDlancCd-zeppelinDdzeppelinDzepGpHelinCeCgalDendErChi3b15CisonEureClandCmonCnDaDnonDoreCoDnEardEceEidCroyCsDbianDlieDpaulDtatEerCtDiciaDliveDmeinDoDsgoDterGsCvCwisCxus1CzBiCbDertyDraFryCckEerDorneCenDwCfeCghtFsCkeCllianEyDyCmaDitedCnDcEolnDdaEsayFeyEyDgDhConEelEkingEsCsaDeDpDsabonDtCtterboxEleGhouseGshitIopGtoeCveEandletliveEnletliveErpooIlEsDiaEngCwanaCzDaErdDzyBjfCiljanaBkjDasdDhEgFfGdsDlkjBlewellyClDlElFlGlHlCoydBmnopBochDkEoutCgDanDgerDicalEnDosEutCisElaneCkeDiClaDitaDopcCndonDelyEstarDgEcockEerEhairFornErestEtoungeCokDneyDseEingCpezCrenFzoEttaDiEeEnDnaDraineEieDyCserDtCtfiDusF123CuDieEsFaFeDnetteDrdesCveElyEmeErFboyFsEyouCwgradeDlifeBpCadminBsdBtteBuanaCcDasDiaEeFnEferElleDkyF1G4FbreakFladyDyCigiDsDzCkeCluCmiereCnarlanderDdiDeDgCongCtherBydiaEeCleCndonDetteDnEeAmB1911a1BaartenCcDhaEineDintosIhDkDrossDse30EymaCdDboyDdieEockFgDeEleineGneFineDhuFsudDisonDmanFxDokaEnnaDyCgdalenDgieEotDicF1EqueDnumChbubaDeshDlonDmoudCiDaDdenDlEerEinglistEmanDneEsailEtCjorFdomIoCkeEbreadEdrugsEitGsoEloveEmeFydayEpeaceEwarDingitGloveDotoClcolmFmDibuDlardCnDagemeGrEhilDbatDchesterDdyDfredDgeshEueDiEshDoharEjEnDsetmanisEonDtraDuelDyCplesyrupCraEthonDcEelGlaHeHinEhEiFaFoEoEusEyDdiDekDgalitFretGidHtFuxEeFauxEieEoEueriteDiaF1FhG1FnGneEeF-madeleineFlleFttaHeElynEnaFeGrFoEoFnEposaEtialEusDjoryDkE1EetEoEusDlboroEenaGeFyDniDriageEucciDsEhalHlDtEhaFeEiFalFnG1GeHzGienHqEyDvinDyEamFnnEjaneDzecCsahiroDeDh4077DoudDsEcompDterG1GsDuhiroCthE-csEildeDildaDrixDtEherGwFiasGeuEi1FnglyCudeDiDreenEiceGioEoCvericHkCxDimeEneDmaxDwellHsmartCyDdayCzda1DinBeCaganDtEcleaverEloafEwagonCchEanicCdardDiaEcalCekieCgaEdethEnDgieCisterClDaineEnieDinaFdaEsaFsaDlaEonDodyDtinCmberGshipDoryDphisCnDdelDsuckCowCrcedesFrErediEureGyDdeDesDlinEotDmaidDrellEillEychristmasCtalFlicDroDsCxicoBgrBiamiCchaelH.H1FlEelG1GeGlHeEiganEouEyDkelFyG1EyDroFsoftCdnightDoriDvaleDwayCghtDuelChailDranCkaelDeE1EyDiDkoClanoDdredDesDindDkDlardEeniumFrEicenFeFonDoDtonCmiCndyDeEdErvaDgEheDhDimumDnieDotEuDskyDyeCracleEgeEndaDiamDrorCsanthropeDhaEkaDogynistDsionFrliEyDtyCtDchFellDtensBmmDmEmFmGmHmCouseBnbDvEcFxGzBobileDydickCdelsEmEsteDulaCgensDulFsChamedFmadGedEnCisesEheCjaDoCllyF1DsonGgoldenCmCndayDetEyF1DiEcaEkaEqueEtorDkeyG1DopolyDroeDsterDtEanaH3EhErealFoseEyCocowDkieDmooDnEbeamEpieDreEhtyDseFheaIdCparCraDeEcatsDganDleyDoniDpheusDrisDtEimerEsCseDheCtherDorFolaEwnCuDntainDseF1FmatEumiCviesCwgliCzartBr.DrogerCcharlieCgoodbarCwonderfulBt.xinuCichellCxinuBuad-dibEdibDmadinCchCffinChDammadCkeshDundClderG1CnaishDchkinDdeepCrphyDrayCscleDicFboxEmDtangH1CtantByCcroftxxxHyyyCpasswdHordCraDonDtleCselfDmutCungF-yuAnabilCdegeErDiaEneCftalyCgelCissanceCkamichiCliniCnDcyDetteComiDtoCpoleonCrcisoGseDendraCsaDcarDtyCtDachaEliaGeErajaEshaDhalieFnGaeGieDionGalIeEviteCuticaCveenEtteBcarCc1701HdHeCrBe1410sE69Ea69CalDrmissCbraskaCckrubCdCenieCilCkoCllieDsonCmesisCnaCpentheIsDtuneCrmalCsbitGtDsDtleEorCtDlinksDmgrDscapeDwareEorkHsCutrinoCvadaDerDilleCwDaccountDbloodDcourtDkidGsDlifeDpassDsDtonDuserHsDworldDyorkH1CxtDus6BghiCocCuyenBicaraoDholasGeDkElausDolasFeCelCgelDgerDhtmareFshadowFwalGindChaomaCkeDhilDiEtaDkiDolaosClsonCmhDrodCnaDersDoEnDtendoCrvanaH1CssanEeCtaDeBnnDnEnFnGnHnBoCamCbodyDuhikoEkoCelCfunCkiaClanCmoreCndetDeE1CpassCraDbertDeenEneDikoDmaFlFnDthwestEonCsecretDhirCtDebookEsDgayDhingDreFspassDta1DusedCuveauCvacancyDellEmberGreCwDayCxiousBroffBssBuclearCggetCkeEmCllCmberG1G9GoneGsCrseEieCtDmegDritionCucpByquistAoaCtmealCxacaBbiD kenobiEwan kenobiD-wanDwanCsessionBceanFographyDlotCtaviaDoberFreBdetteCileEonBfCfDiceBhshitCwellBicu812ClCvindBjrindBldDladyDpussyCinDveFrFttiEiaFerClieCsenBmeadDgaBnCceCeCionringsClineDyCstadBooDoEoFoGoHoCpsBpenEbarEdesktopFoorEsaysmeFesameEupDrEaFtorCusBrCacleDngeGlineGsCcaDhidCegonDoCgasmCionClandoCvilleCwellBscarCirisCullivaCwaldBtharDerCterDoBu812CrCssamaCtDlawDtolunchBverEkillEthrowFimeBwenCnDsBxfordBzzieDyApaagalCcersDificGqueDkardEerGsEratCdDaaaDdyDmaDoueCgeCigeDnlessEtFerCkistanCladinDlabDmerDomaCmDelaDpersCncakeDdaEoraDicDteraEherEiesCpaDerFsDiersDpasCquesCradigmEllelEnoiaEskevDfaitDisDkEerEinsDolaDrotDtEnerEonDvizCscalDsEionEwdForHdIlookhereCtDchesDelErneDriceGiaGkFotsDsyDtersonEiEonEyCulEaEeEinGeCvelCwanCymanEentDtonBcatCxtBeaceEhFesDnutGbutterGsDrlFjamCbblesCcheFurHsCdroF1CeblesDweeCgasusDgyChCkkaClagieCncilDelopeDguinDisDnyDtecoteEiumEtiCopleDriaCpperDsiCrakaDcolateEyDesEzDfectEormaDryDsimmonEonGaDvertCteErF1FkFpanFsonEyDuniaCugeotDrBgonderinBhamDntomCialphaDlEipGpeGsElipHsDshFyCoenixH1DneDtoCrackDeakDickCyllisBianoF1FmanFsCcardEssoDkEleDtureCerceEreDterCgeonDletCmpCnDgDkEfloyIdConeerDtrCpelineEorganEr1CrateDieCscesCtCzzaBlaintruthDneFtDtoDyEboyEerGsEgroundCeaseCierCoverCughDmbrandyDsDtoFnCymouthBmcBocusCeticEryChCirEeDssonHsDuEyFtGreClarFbearFisDeDiceEticsDlyDoDynomialCmmeCnderingDtiacCohEbearDkeyEieG1CpcornDeEyeDpyCrcDkEyDnEbayEmanEoFgraphyDscheH9I11J4DterElandEnoyCstelFrCwellErFtoolBppDpEpFpGpHpBrabhakaFuEirDdeepDiseDnabDsadEhantDtapEtDvinDyerCeciousDdatorDludeDmierDsenceGtEidentEtoGnDttyGfaceDvisionCiceDmusDnceGssGtonEtFempsGrFingDscaDvEateEsCoducersDfE.EessorEileDgramDmetheIusDnghornDpertyDsperDtectFlEozoaDviderCudenceBsalmsCychoBubDlicDusCckettCddinCllDsarCmkinpieDpkinCneetDkinCpDpetEiesEyF123CrnenduDpleCssyF1CtByramidDoCthonAq1w2e3BedBianCnsongBqqD111DqEqFqGqHqBualityCebecDenFieDntinDstCocBwaszxCerEtFyG12GuHiAr0gerB2d2BabbitG1CcerFxDhelGleEmaninoffDingDoonCdarDhaDioCfaelDfiDikiCghavGanEuDunathCidEerGsHofthelostarkDmundDnEbowEdropDssaEtlinCjDaEdasaDeebFvEndraDivCkeshCleighDphCmDachanEnaFiEraoDboF1DeauxEshDirezDonCnDcidDdalGlEolphFmEyF1DgerGsDjanCoulCpDtorCquelCscalDtaF1FfarianFmanCtDioCvenFsDiCyDmonaGdBeadEerEingDganDlEfriendEityElyEthingFimeCbeccaElsDootCdDbaronErickDcloudDdogDfishDlineDmanDrumDskinHsDwingEoodCebokDdDferCgDgaeEieDinaGldEonalEsCineCliantCmemberDiDoteDyCnaudFltDeEeEgadeDgarajCplicantDomanEnseDtileDublicCquestEinCscueDearchFuCtardCvolutionCxCynoldsCzaDnorBfsBhettCinoCjrjlbkConaEdaBiacsCbsCcardoH1DcardoDhEardH1HsIonEmondDkEiEyCddleDeCff-raffErafHfDrafGfCghtCleyCngoCpperEleCscCtDaCverFaDiBjeBoadE warriorErunnerEwarriorCbDbieEyDertG1GaGoGsDinFhooIdFsonDleyDocopEtFechFicsDynCcheFlleFsterDkEetG1EieEnrollEonEyF horrorF1FhorrorCdDentEoDgerDmanDneyDolpheDrigueIzCgerF1FsChitCiCknyClandGeDexDidexDlinCmDainEnFoEricDeoDmelDualdElanHsDyCnDakEldDenDiEnEttCokieDsterDtEbeerCpingCsaElieDeEbudElineEmaryEsDieEneDsEignoCthCugeEhDletteDndDte66CxanaDyCyDalFsBrrDrErFrGrHrBsmBtiCwoEdtwoBubenDyCdolfDyCeyCfusCgbyDgerEieriCknetClesCnDnerEingCoxinCshDsEelGlDtyCthEieElessCxCyDeByanCoheiDtaAsaabE900H0EturboCbbathDinaFeDrinaCcreCdeDieCfaaDetyG1DwatCgittaireCiDdDfallaDgonDkumarDlingEorDntFeCktiDuraClD9000DahEsanaDesDleEyDmonDomeEneDutCmDadamsEnthaDediDiamErDmieEyDpathEleGrEsonDsamEonDtaneyDuelEraiCnchezDdersHonEgorgEiEraFineEsmmxEyDfranHciscoDgEbangEoDhDiDjayEeevEoseH1DtaEiagoFsukEoCphireDphireCraEhF1DojCshaEiDkiaDsyCtoriDurdayFnG5GeGinCulDvignonCvageDeCwedoffCxonCyBbdcBcamperDrecrowEletHtChemeDnappsDoolDroedeCienceDubbaCoobyGdooEterH1DrpioHnDtEchEtF1FieFyDutFsCreamDofulaEogeDuffyCubaF1DmbagBdfghjklBeaDbreezeDnDrchDttleCbastienCchangDretG3DurityCeDkerDmeChoCiDgneurDveCkharClftimeCmperfiCnditDiorDsorConghooDulCptembeIrHreCquentCrenaFityDgeFiFyDverEiceHsCsameGstreetCthDupCungFhyuFkuCvakDenF7ErinCxDfiendDxxmeDyEteenCymourBhadowG1GsEysideDeDggyDhrokhDkespeareDllEomDmitaDnEaEghaiEnanFonFyEtanuFiDolinDradEcEiFynEkFsEleneEonEraDshankFiEtaDunDvedFnDwEnDyneDzamEzamCeDbaDelaEnaDffieldDilaDlEbyEdonEiaElFeyFyEterDnEgFluDpherdDrifEriGeFyEylCiDahnDdanDgenarFoDhEmingDmonDnEobuDpDrinElFeyDtE-headEfacedForbrainsEheadDueDvaFpraEersDzoomCleeDomoCoesDgunDlomDmitaDoterDrtyDtgunDutDwEerEoffCrdluDeeramCuDangDhuiDnDtdownEtleCyngBidDartaDekickDhartaDneyDoineCemensDrraCgmachiDnalFtureCllywalkDverGeEiaCmbaF1DmonsDonDpleFyEsonHsDsimCnaEtraDgEerEleCobahnCriEusCsterCtDeCupingCvakumaCxDtynineCzenineBkateFrCeeterCibumDdooDingDnnyDpEperH1FyCullDnkCydiveDlerDwalkerBlackerDyerCeazyDepFyCickDderDmeballDnkyDpCusDtBmallFcockFhipsFtalkGipsDshedFingCegmaCileF1FsFyDthFsEtyCokeFdhamFyDochDtherCurfyDtBnafooEuDkeFsDppelGrFleDtchCeezyDllCickerHsDperCoopFdogFyDrkydorkyDwEbalHlEflakeEingEmanEskiCuffyBoCapCber1CccerG1EorDrateHsCdD offDoffCftEballClangeDeilDomanFonCmanEsamaDbreroDeEbodyCnDdraDgmiaoEnianDiaEcFsDjaDnyDyEaConEmanDwonCphiaFeEomoreCrelDoorCssinaCtirisCuaDmitraDndDrceEireFsEmilkDvenirBpaceFmanDinDmDnishEkyDrksFyErowHsEtanDzzCecialEterFreDechEdFoFyDnceGrChDynxCiceDderGmanDffFyDkeF1DritGuHsanctuEoFsDtEfireClifFfCockDngeDokyElerEnDrtsDtCrangDingGerEteDocketCudDnkyDrsCyrogyraFsBquashDiresFtBridharDmatDnivasBssDsEsFsGsHsCuBtaceyEiFeEyDinlessDlkerDmosDnEislasEleyFyEtonDrE warsE69EbuckEgateElightEsFhipEtFerFrekEwarsDtEesEionEusCealthDelFeGrsDfanGoDllaDmpleDphF1FaneHiIeHyFenFiFonDrlingEn93DveF1FnG1GsFrDwartCickshiftDffdrinkFprickDmpyEulateDngF1FrayEkyDversCocksDneDpDrageEemEmFyCrangeHrGleEtFfordFoGcasterEwberIryDetchDiderDongCtngCuDartDdEentH2EfuckEioElyDffedHturkeyDmpyDpidDttgartBuCbgeniusDhasEdailEednuDodhDscriberDwayCccesGsDkEerEmeErocksEsCdeshnaDhakarEirDirCeDsecCgarFbearDihCkumarCltanDuCmmerEitDuinenCnD-spotDbirdDdanceFyDfireEloweIrDgDilDnyF1FvaleDriseDsetEhinHeDtoolsDweiCperFflyFmanFstageIrFuserFvisorDportHedDraCranetDeshDfEerEingCsanF1FnaGeDhaEilaDieCttonCvenduDroCzannaGeDieDukiDyBvenDrigeBwampratDneEsonCearerEtshopDdenDetieFnesFpeaFsFyCimEmerFingDngsetDtzerCooshDrdfishByamCbaseDilCdneyClvainEereFsteHreEiaFeCmbolDmetryDultCphilisGlisCsD5DadmGinDdiagHsDlibDmaintFnEgrDopDtemG5GfiveGvFstDvAt-boneBabDathaCcobellCdahiroDlockCffyCiDwanCjenCkDaEjiEshiDeE5EfiveEiteasyDujiClonCmDalEraEsDiEeDmieEyDtamCndyDgerineEoEuyDiaDjuDkerDnerDyaCoCpaniEsDeCrDaDdisDgasEetDheelDragonDzanCshaCtaDianaDsuoDtooDumCureauEusCyfurDlorCzdevilDmanGiaBbirdBchenCp-ipD/ipDipBeacherHsDkettleDpartyCchEnicalFoCdDdiEyF1FbearCeDnEagerEeyEfanEyCflonClecastFomEphoneDlDnetCmpEoralEtationFressCnDnisDtationCquilaCresaDiDminalDreEiFllEyF1CstE1F23E2E3EcaseEerEguyEiFngEtestEuserCtrisDsuoCxDasBgifBhaddeusDilandIeDnEasisEhEkFgodFyouDtEcherDvyCeDatreDbeefEirdsEossEutlerDcleDendDgreatescapeDirDjudgeDkingHandiDloraxDmEanEonkeyDnDodoraHeEphileDpenguinEroducersDreFalthingFsaGeEiddlerEonDseDyCiamDbaultGtDckcockFheadFskinDerryDlakaDnkEthighsDsEisitCoiDmasEpsonEsonDrneEstenDseCrasherDeeCuDmperDnderHbIallIirdHdomeDrsdayDyCx1138BianCffanyCgerF2FsDgerDhtassFcuntFendFfitDreCjunCkaCllCmDberDeEzoneDothyCnaDgDkerGbellDmanDtinCreswingCtanicDsCwCzianoBjahjadiBntBoCbiasDyCdDayDdCgetherDgleChruCkyoClkeinEienCmDateFoDcatDmyCneDiDyCoDlDsillyDtsieCpcatDgunDherDographyCrDcDnadoDontoDresDstenDtoiseEueCshiakiFbaFterDnowCtalDhedarkDo1EtoCucanDficDrDssaintCveCxicCyDotaDsrusBraciFeEtorEyDilblazerFerFsEningDnEsexualFferGigurationFitFmitFportDpdoorEperDshFcanDvailEelEisCeDasureDborDeEsDkDntDvorCiDalDbbleHsDciaEkyDdentDeuDnaDshFaEtanDtonDvialDxieCoffDjanDmboneDnDphyDubleEtDyCucEkFerFsDefriendEloveDmanEpetDstno1CyDaBseCingF taoF-taoFtaoCungDtomuBttDtEtFtGtHtCyBuanCbaEsCckerDsonCesdayClaDlCnasaladGndwichComasCrboF2DnerEleftErightDtleCttleCyenBwat123CeetheartFyDnexCilaDnsCoBylerF1BziDlaCuwangAudayCoBhnD-soonDsoonBliCricFhCtimateBmeshBndeadErgradJuateCguessableChappyCicornFsDformEyDgrafixDqueDtedEyDxE-to-unixHunixEmanEsuckGxCknownDownCtungBpCchuckConCperclassCsilonDtillCtohereCyoursBranusCbainCchinCsulaBsCaCeDnetEixDrE1EmaneEnameEsBtilEityCopiaCpalBucpCuDuEuFuGuHuAvacationCderCheClDentinIeErieGoDhallaDleyCmpireCnDceDessaDillaCrkeyCsantGhDonDsilioCughanBectrexFixCdayDderCeCljkoDoDvetCnceslasDdrediDetoDiceDkatGadHrGesDtureDusCrDilogDmontDnonDonicaGqueDseauDtigeGoDyCteransDteBianneyCbekeDhuDratorCcesquadDkiFeEyDtoireFrG1GiaHenGyCdeoCergeCgyanCjayFaCkingGsDramCllaFgeDmaCnayDceFntH1DitFhaDodFhColetEinCperF1CragoDgilFnGbirthGiaHeHoDusCsaEvisDhvjitDionEtFationForDpiDualDvanatCttorioCvekDianGeEenBjdayBladEimirCsiBmCsDsucksDucksBojinClcanoDleyGbDvoCodooCrtexCyagerBt100C52BvvDvEvFvGvHvAwadeCiDtingCldenEoDeedDidDkEerDleyeEyDterCnDdaEojoDgDkEerDtEmenowCrcraftDdDezDgamesDlockDmEweatherDnerDrenEiorHsDsDthogCsDhEingtonCterF1FlooDsonCvesCyDneF1BeCaselCbDetoysDheadDmasteIrDsterCdgeCenieEyDzerCiDdongDhengDnrichDpingClchEomeH1DlDsherCnDdelGlEiEyF1DgyikDtCreCsDleyDternCtBhale1FsDtEchamacallitEeveHrEnotEsupHdocCeelingFsDnDreFisthebeefFsthebeefDyCichDskyDtEeEingEneyCoDcaresDlesaleDopieFyDreDvilleCyBibbleCckedClburDdcatFhildDfriedDlEenEiamH1HsIburgFeEowEyDmaDsonCnD95DdEowGsEsurfDfredDgDnerEieGthepoohDonaDstonDterCredCsconsinDdomDhCthDnessfortheprosecutionCzardGsBojtekClfE1EgangEmanDverinIeFsCmanDbatG1DenCnDderGboyHreadDgDyunCobieFnEyDdElandErowEstocEwindEyDfwoofDiyiCpperkennyCrdDkDldDmwoodCuldBqsbBranglerCestleCightDteBunDtsinBwwDwEwFwGwHwBxyzByldchydCnneComingAx-filesCmenBanaduDthCvierGeBcountryBferCilesBgenerationBiCaoEboEgangEliEminCnghaoDuBmodemBrayBueDqingBwindowsBxfreessxxCpassxxCsnowxxCxD123DxExFxGxHxByzD123DzyAyBabbaF-dabba-dooFdabbadooCcoCelCmahaCnDgDjunDkeeGsCominCserBeeClloFwGstoneCngConEgCziBiannisCgalChuaCnDgEshaEyangCshunBodaDudeCgeshDibearCichiClandaCmamaCnDahDgEdongEhoFwanEsamCsemiteDhiakiFoCuD'reokDareokDcefDhanseDngDrEeokEselfBuanCehwernCgangChCjiEkoCkaDkeiDonCmiEkoCngCqianCvalBvesDtteConneByyDyEyFyGyHyAzacharyDkCpDataDhodCryBebraFsCna69DerFdiodeDithCphyrDpelinElinCusExBhaoqianEzhuaCengkunEyanCiDgangDshunDweiDxinCongguoFminBiggyDzagCmmermanCnfandelCtaCvCyouBmodemBoltanCmbieCndaComerCranDkEmidDoDroBuluBxcD123DvEbFnGmBz-topCtopCzDzEzFzGzHz";
