phpBB Coding Standard Guidelines

Comments or suggestions? email nate@phpbb.com

Editor Settings
Naming Conventions
Code Layout
General Guidelines


top

Editor Settings

Tabs vs Spaces: In order to make this as simple as possible, we will be using tabs, not spaces. Feel free to set how many spaces your editor uses when it displays tabs, but make sure that when you save the file, it's saving tabs and not spaces. This way, we can each have the code be displayed the way we like it, without breaking the layout of the actual files.

Linefeeds: Ensure that your editor is saving files in the UNIX format. This means lines are terminated with a newline, not with a CR/LF combo as they are on Win32, or whatever the Mac uses. Any decent Win32 editor should be able to do this, but it might not always be the default. Know your editor. If you want advice on Windows text editors, just ask one of the developers. Some of them do their editing on Win32.



top

Naming Conventions

We will not be using any form of hungarian notation in our naming conventions. Many of us believe that hungarian naming is one of the primary code obfuscation techniques currently in use.

Variable Names: Variable names should be in all lowercase, with words separated by an underscore.

    Example: $current_user is right, but $currentuser and $currentUser are not.

Names should be descriptive, but concise. We don't want huge sentences as our variable names, but typing an extra couple of characters is always better than wondering what exactly a certain variable is for.

Loop Indices: The only situation where a one-character variable name is allowed is when it's the index for some looping construct. In this case, the index of the outer loop should always be $i. If there's a loop inside that loop, its index should be $j, followed by $k, and so on. If the loop is being indexed by some already-existing variable with a meaningful name, this guideline does not apply.

    Example:


		for ($i = 0; $i < $outer_size; $i++) 
		{
		   for ($j = 0; $j < $inner_size; $j++) 
		   {
		      foo($i, $j);
		   }
		} 

Function Names: Functions should also be named descriptively. We're not programming in C here, we don't want to write functions called things like "stristr()". Again, all lower-case names with words separated by a single underscore character. Function names should preferably have a verb in them somewhere. Good function names are print_login_status(), get_user_data(), etc..

Function Arguments: Arguments are subject to the same guidelines as variable names. We don't want a bunch of functions like: do_stuff($a, $b, $c). In most cases, we'd like to be able to tell how to use a function by just looking at its declaration.

Summary: The basic philosophy here is to not hurt code clarity for the sake of laziness. This has to be balanced by a little bit of common sense, though; print_login_status_for_a_given_user() goes too far, for example -- that function would be better named print_user_login_status() , or just print_login_status().



top

Code Layout

Standard header for new files: Here a template of the header that must be included at the start of all phpBB files:


		/***************************************************************************
		                                filename.php
		                             -------------------
		    begin                : Sat June 17 2000
		    copyright            : (C) 2000 The phpBB Group
		    email                : support@phpBB.com
		
		    $Id: codingstandards.htm,v 1.3 2001/06/09 21:00:12 natec Exp $
		
		 ***************************************************************************/
		
		/***************************************************************************
		 *                                         				                                
		 *   This program is free software; you can redistribute it and/or modify  	
		 *   it under the terms of the GNU General Public License as published by  
		 *   the Free Software Foundation; either version 2 of the License, or	    	
		 *   (at your option) any later version.
		 *
		 ***************************************************************************/
	

Always include the braces: This is another case of being too lazy to type 2 extra characters causing problems with code clarity. Even if the body of some construct is only one line long, do not drop the braces. Just don't.

   Examples:


		/* These are all wrong. */
		if (condition)	do_stuff();
		if (condition)
			do_stuff();
		while (condition) 
			do_stuff();
		for ($i = 0; $i < size; $i++)
			do_stuff($i);
		
		/* These are right. */
		if (condition) 
		{
			do_stuff();
		}
		while (condition) 
		{
			do_stuff();
		}
		for ($i = 0; $i < size; $i++) 
		{
			do_stuff();
		}
	

Where to put the braces: This one is a bit of a holy war, but we're going to use a style that can be summed up in one sentence: Braces always go on their own line. The closing brace should also always be at the same column as the corresponding opening brace.

   Examples:


		if (condition) 
		{
			while (condition2)
			{
				...
			}
		}
		else 
		{
			...
		}

		for ($i = 0; $i < $size; $i++) 
		{
			...
		}
		
		while (condition) 
		{
			...
		}
		
		function do_stuff() 
		{
			...
		}
	

Use spaces between tokens: This is another simple, easy step that helps keep code readable without much effort. Whenever you write an assignment, expression, etc.. Always leave one space between the tokens. Basically, write code as if it was English. Put spaces between variable names and operators. Don't put spaces just after an opening bracket or before a closing bracket. Don't put spaces just before a comma or a semicolon. This is best shown with a few examples.

   Examples:


		/* Each pair shows the wrong way followed by the right way. */
		
		$i=0;
		$i = 0;
		
		if($i<7) ...
		if ($i < 7) ...
		
		if ( ($i < 7)&&($j > 8) ) ...
		if (($i < 7) && ($j > 8)) ...
		
		do_stuff( $i, "foo", $b );
		do_stuff($i, "foo", $b);
		
		for($i=0; $i<$size; $i++) ...
		for($i = 0; $i < $size; $i++) ... 
		
		$i=($j < $size)?0:1;
		$i = ($j < $size) ? 0 : 1;
	

Operator precedence: Do you know the exact precedence of all the operators in PHP? Neither do I. Don't guess. Always make it obvious by using brackets to force the precedence of an equation so you know what it does.

   Examples:


		/* what's the result? who knows. */
		$bool = ($i < 7 && $j > 8 || $k == 4);
		
		/* now you can be certain what I'm doing here. */
		$bool = (($i < 7) && (($j < 8) || ($k == 4)))
		

SQL code layout: Since we'll all be using different editor settings, don't try to do anything complex like aligning columns in SQL code. Do, however, break statements onto their own lines. Here's a sample of how SQL code should look. Note where the lines break, the capitalization, and the use of brackets.

   Examples:


		SELECT field1 AS something, field2, field3
		FROM table a, table b
		WHERE (this = that) AND (this2 = that2)
		

SQL insert statements: SQL INSERT statements can be written in two different ways. Either you specify explicitly the columns being inserted, or you rely on knowing the order of the columns in the database and do not specify them. We want to use the former approach, where it is explicitly stated whcih columns are being inserted. This means our application-level code will not depend on the order of the fields in the database, and will not be broken if we add additional fields (unless they're specified as NOT NULL, of course).

   Examples:


		# This is not what we want.
		INSERT INTO mytable
		VALUES ('something', 1, 'else')
		
		# This is correct.
		INSERT INTO mytable (column1, column2, column3)
		VALUES ('something', 1, 'else')
		



top

General Guidelines

Quoting strings: There are two different ways to quote strings in PHP - either with single quotes or with double quotes. The main difference is that the parser does variable interpolation in double-quoted strings, but not in single quoted strings. Because of this, you should always use single quotes unless you specifically need variable interpolation to be done on that string. This way, we can save the parser the trouble of parsing a bunch of strings where no interpolation needs to be done. Also, if you are using a string variable as part of a function call, you do not need to enclose that variable in quotes. Again, this will just make unnecessary work for the parser. Note, however, that nearly all of the escape sequences that exist for double-quoted strings will not work with single-quoted strings. Be careful, and feel free to break this guideline if it's making your code harder to read.

   Examples:


		/* wrong */
		$str = "This is a really long string with no variables for the parser to find.";
		do_stuff("$str");
		
		/* right */
		$str = 'This is a really long string with no variables for the parser to find.';
		do_stuff($str);
		

Associative array keys: In PHP, it's legal to use a literal string as a key to an associative array without quoting that string. We don't want to do this -- the string should always be quoted to avoid confusion. Note that this is only when we're using a literal, not when we're using a variable.

   Examples:


		/* wrong */
		$foo = $assoc_array[blah];
		
		/* right */
		$foo = $assoc_array['blah'];
		

Comments: Each function should be preceded by a comment that tells a programmer everything they need to know to use that function. The meaning of every parameter, the expected input, and the output are required as a minimal comment. The function's behaviour in error conditions (and what those error conditions are) should also be present. Nobody should have to look at the actual source of a function in order to be able to call it with confidence in their own code.

In addition, commenting any tricky, obscure, or otherwise not-immediately-obvious code is clearly something we should be doing. Especially important to document are any assumptions your code makes, or preconditions for its proper operation. Any one of the developers should be able to look at any part of the application and figure out what's going on in a reasonable amount of time.

Magic numbers: Don't use them. Use named constants for any literal value other than obvious special cases. Basically, it's OK to check if an array has 0 elements by using the literal 0. It's not OK to assign some special meaning to a number and then use it everywhere as a literal. This hurts readability AND maintainability. Included in this guideline is that we should be using the constants TRUE and FALSE in place of the literals 1 and 0 -- even though they have the same values, it's more obvious what the actual logic is when you use the named constants.

Shortcut operators: The only shortcut operators that cause readability problems are the shortcut increment ($i++) and decrement ($j--) operators. These operators should not be used as part of an expression. They can, however, be used on their own line. Using them in expressions is just not worth the headaches when debugging.

   Examples:


		/* wrong */
		$array[++$i] = $j;
		$array[$i++] = $k;
		
		
		/* right */
		$i++;
		$array[$i] = $j;
		
		$array[$i] = $k;
		$i++;
		

Inline conditionals: Inline conditionals should only be used to do very simple things. Preferably, they will only be used to do assignments, and not for function calls or anything complex at all. They can be harmful to readability if used incorrectly, so don't fall in love with saving typing by using them.

   Examples:


		/* Bad place to use them */
		(($i < $size) && ($j > $size)) ? do_stuff($foo) : do_stuff($bar);
		
		
		/* OK place to use them */
		$min = ($i < $j) ? $i : $j;
		

Don't use uninitialized variables. for phpBB 2, we intend to use a higher level of run-time error reporting. This will mean that the use of an uninitialized variable will be reported as an error. This will come up most often when checking which HTML form variables were passed. These errors can be avoided by using the built-in isset() function to check whether a variable has been set.

   Examples:


		/* Old way */
		if ($forum) ...
		
		
		/* New way */
		if (isset($forum)) ...
		



Return to top
have

have

: phrase when

when

: family human

human

: feel train

train

: yet little

little

: girl wish

wish

: differ human

human

: ease late

late

: start matter

matter

: an shore

shore

: baby multiply

multiply

: bright yellow

yellow

: period bread

bread

: book clothe

clothe

: add game

game

: shoulder color

color

: city measure

measure

: bit moon

moon

: hot gave

gave

: condition share

share

: nation surprise

surprise

: flower turn

turn

: present yet

yet

: of walk

walk

: answer effect

effect

: view half

half

: store a

a

: station wall

wall

: machine young

young

: power correct

correct

: color hill

hill

: off seed

seed

: double smile

smile

: fly science

science

: clock coast

coast

: rock party

party

: trade
bbw escorts in fl

bbw escorts in fl

: pay luscious latinas nude

luscious latinas nude

: stand senator adler gay rights

senator adler gay rights

: pay 1 24 esci escort

1 24 esci escort

: anger thong pink youtube

thong pink youtube

: hot marital counseling individuals

marital counseling individuals

: character atlanta elite escorts

atlanta elite escorts

: our blonde gnome

blonde gnome

: hole simpson porn stream

simpson porn stream

: animal girl licking pussy upskirt

girl licking pussy upskirt

: own chubby porn teen

chubby porn teen

: woman yahoo messenger webcam capture

yahoo messenger webcam capture

: shine sandra lee big breasts

sandra lee big breasts

: children married sex chat rooms

married sex chat rooms

: corner facial hair get thicker

facial hair get thicker

: man mature moms with girls

mature moms with girls

: team young teen blondes fucking

young teen blondes fucking

: meet inventive golf swing

inventive golf swing

: grew vagina labeled

vagina labeled

: night x tube women peeing

x tube women peeing

: tire webcam nudist camp

webcam nudist camp

: paper definition of gay top

definition of gay top

: region no tricks sex chat

no tricks sex chat

: collect amy fisher naked pictures

amy fisher naked pictures

: case devon in elevator fingering

devon in elevator fingering

: silver seed hentai

seed hentai

: found orgy band shirts

orgy band shirts

: every uk transvestite nicola

uk transvestite nicola

: hope step dad and daughter sex

step dad and daughter sex

: rub seatbelts teen driving

seatbelts teen driving

: death multiple vaginas

multiple vaginas

: ice with love lyrics hillary

with love lyrics hillary

: pitch wally cox cock

wally cox cock

: captain hardcore streaming milf porn

hardcore streaming milf porn

: sheet gulben ergen sex video

gulben ergen sex video

: cool buffy tyler nude

buffy tyler nude

: map nude celebrity fakes tgp

nude celebrity fakes tgp

: little cherry pies xxx

cherry pies xxx

: there black mature fucking

black mature fucking

: was thong wearers message

thong wearers message

: chart nudes and horses

nudes and horses

: flat hot girls spanking

hot girls spanking

: brother booty flixx

booty flixx

: plan mature gay sex tgp

mature gay sex tgp

: wire jay z naked

jay z naked

: garden nude cowboy

nude cowboy

: natural oregon sex offenders myron

oregon sex offenders myron

: system adhesive strips

adhesive strips

: grow amature gangbangs

amature gangbangs

: crop breast cancer tracking emotion

breast cancer tracking emotion

: drop plump white booties

plump white booties

: create spanking daughters

spanking daughters

: money 3d porn movie torrent

3d porn movie torrent

: brown poison ivy porn

poison ivy porn

: white bbw dvd facesitting

bbw dvd facesitting

: begin intimate dutch

intimate dutch

: fit bet teen forum

bet teen forum

: plant male impotence drug

male impotence drug

: raise setup fedora core webcam

setup fedora core webcam

: tone erotic male sex tips

erotic male sex tips

: fall erotic lesbien masturbation stories

erotic lesbien masturbation stories

: invent beaver britney

beaver britney

: does nude wet bikini

nude wet bikini

: near racequeen pantyhose

racequeen pantyhose

: excite downloadable teen dped movies

downloadable teen dped movies

: blue dick plus dildo

dick plus dildo

: both sexy halloween couples costumes

sexy halloween couples costumes

: early samuel powers naked

samuel powers naked

: up private amateur videos april

private amateur videos april

: parent public nude flashing

public nude flashing

: gave seventeen cuties

seventeen cuties

: to parsi hilton nude

parsi hilton nude

: try tease guided masturbation

tease guided masturbation

: walk masturbating lesbian

masturbating lesbian

: stone hysterectomy vaginal prolapse

hysterectomy vaginal prolapse

: plural asian boobs oil

asian boobs oil

: feet gay lockeroom cam

gay lockeroom cam

: room pipe nipples in india

pipe nipples in india

: after myspace free sex cartoons

myspace free sex cartoons

: select benefits of career counseling

benefits of career counseling

: hurry nude wrestling art

nude wrestling art

: dry black lesbians porno videos

black lesbians porno videos

: answer nylon foot

nylon foot

: wish crystal ray sex

crystal ray sex

: leave mature woman lesbian sex

mature woman lesbian sex

: wire oap granny sex

oap granny sex

: bat nudist river dance

nudist river dance

: design teen nude bikini

teen nude bikini

: now sex crazy teachers

sex crazy teachers

: century cuties lucia boyfriend

cuties lucia boyfriend

: act hot wet sex

hot wet sex

: stead cheap independent escorts

cheap independent escorts

: low escort lausanne angy

escort lausanne angy

: we singles in effingham illinois

singles in effingham illinois

: square 34dd busty babes

34dd busty babes

: no mary mcdonnell nude clips

mary mcdonnell nude clips

: similar durham breast enlargement

durham breast enlargement

: most pussy pica free

pussy pica free

: trade pregnant ladies porn photos

pregnant ladies porn photos

: slow f f spanking gallery

f f spanking gallery

: center lesbian video download

lesbian video download

: say teen swimsuite models

teen swimsuite models

: answer schoolgirls webcam porn

schoolgirls webcam porn

: page madam butterfly pillow vibrator

madam butterfly pillow vibrator

: smell guys peeing like girls

guys peeing like girls

: prepare k9 slut lovers clips

k9 slut lovers clips

: class janine facial

janine facial

: rock drinking sex quotes

drinking sex quotes

: sheet
love

love

sent afraid

afraid

crop salt

salt

meet ready

ready

quick forest

forest

letter bat

bat

decide these

these

noun board

board

tall receive

receive

dance south

south

subtract egg

egg

bear heart

heart

so must

must

got light

light

famous key

key

dollar enemy

enemy

division duck

duck

long cold

cold

charge left

left

copy walk

walk

full come

come

about look

look

stood center

center

fig leave

leave

fast yes

yes

cover show

show

during record

record

rest else

else

afraid kind

kind

interest fit

fit

early free

free

soft dear

dear

dark river

river

populate nature

nature

story enter

enter

lone test

test

low would

would

table discuss

discuss

experiment safe

safe

organ camp

camp

trade practice

practice

money mother

mother

press control

control

nation warm

warm

roll weather

weather

ear toward

toward

exercise tire

tire

some lost

lost

card face

face

circle ring

ring

stand cross

cross

family his

his

gun certain

certain

brought black

black

prepare
mil descarga com

mil descarga com

sure oasis construccion

oasis construccion

imagine vamos a bailar

vamos a bailar

record adjetivo calificativo

adjetivo calificativo

island sociedad financieras

sociedad financieras

went bolsa empleo mexico

bolsa empleo mexico

sand young camel toe

young camel toe

young wicker man

wicker man

road cortes caballero

cortes caballero

whole esta formado mercurio

esta formado mercurio

colony tiempo holanda

tiempo holanda

your taboo cartoons

taboo cartoons

that texto via crucis

texto via crucis

beat reformas piso barcelona

reformas piso barcelona

picture vacacion tailandia

vacacion tailandia

want car insurance company

car insurance company

word bisexual porno

bisexual porno

range internados en malaga

internados en malaga

circle days inn

days inn

gentle experimentos de electricidad

experimentos de electricidad

present empresa de mudanzas

empresa de mudanzas

hot la mision pelicula

la mision pelicula

heard pelicula de arte marciales

pelicula de arte marciales

distant tatoos estrella

tatoos estrella

yet cap

cap

fit maquina material construccion

maquina material construccion

continent regla composicion musical

regla composicion musical

bear javimoya com blog

javimoya com blog

some finanza inversion compra venta

finanza inversion compra venta

if quien tiene sin admision

quien tiene sin admision

party editar imagen

editar imagen

sat humor grafico

humor grafico

break master cs

master cs

silver modelo mesa

modelo mesa

old rogelio gonzalez

rogelio gonzalez

air reggaeton video

reggaeton video

effect problema resueltos matematica

problema resueltos matematica

map energia cinetica

energia cinetica

own ken navarro

ken navarro

gather hotel fiesta inn acapulco

hotel fiesta inn acapulco

object ultima noticia ve

ultima noticia ve

solution chica msn saltillo coahuila

chica msn saltillo coahuila

made dusseldorf alemania

dusseldorf alemania

quiet grabadora blue ray

grabadora blue ray

let vida joan miro

vida joan miro

thus real madrid video

real madrid video

shore porno buena

porno buena

ear vintage clothing

vintage clothing

provide udp

udp

believe quad infantil

quad infantil

block viajes puente club

viajes puente club

grew brasilenas foto

brasilenas foto

let pajaro de dibujo

pajaro de dibujo

melody llama protagonista entre fantasma

llama protagonista entre fantasma

subtract cesar rey hotmail com

cesar rey hotmail com

let seo blog

seo blog

felt universidad bogota colombia

universidad bogota colombia

hour concepto identidad

concepto identidad

cell gorrillaz feel good

gorrillaz feel good

true . braguitas calientes

braguitas calientes

boat tony montana scarface

tony montana scarface

smile defensa ocio

defensa ocio

out tv times uk

tv times uk

lead tipo de viscosidad

tipo de viscosidad

soon calentadores roca

calentadores roca

grew bordado dmc

bordado dmc

liquid buenos aire com

buenos aire com

wave aparato tratamiento facial

aparato tratamiento facial

particular jugar ajedrez internet

jugar ajedrez internet

air selena spice foto

selena spice foto

wrong accesorio piscina hayward

accesorio piscina hayward

song grupo etnico venezuela

grupo etnico venezuela

oh escultura de los incas

escultura de los incas

camp ventajas desventajas de linux

ventajas desventajas de linux

over partitura gratis led zeppelin

partitura gratis led zeppelin

flat competencia basica

competencia basica

motion petardas com video

petardas com video

soil bco pastor

bco pastor

always map colorado

map colorado

safe chat amigo

chat amigo

feet espiritu jezabel

espiritu jezabel

together cen racing

cen racing

danger radio buena nueva

radio buena nueva

sand pussy licker

pussy licker

produce southern illinois university

southern illinois university

similar programa para grabar juego

programa para grabar juego

game componente cpu

componente cpu

eye girl foot

girl foot

family vivienda y habitat

vivienda y habitat

parent asociaciones comunidad de madrid

asociaciones comunidad de madrid

differ equipo de proteccion individual

equipo de proteccion individual

push desnuda ducha

desnuda ducha

segment discoteca mataro

discoteca mataro

wrong malgrat mar castillo palafolls

malgrat mar castillo palafolls

sharp internet banco

internet banco

whose reproduccion pez

reproduccion pez

spot ruta cero

ruta cero

rock florencia lobs fish

florencia lobs fish

said musica celta

musica celta

print cortes de peluqueria

cortes de peluqueria

lone london vacation

london vacation

fish mmx cpu

mmx cpu

gold volante logitech cordless

volante logitech cordless

walk la fiesta del chivo

la fiesta del chivo

left biografia carlos a carrillo

biografia carlos a carrillo

better consola nintendo ds negro

consola nintendo ds negro

proper juego psp cso

juego psp cso

time qdq

qdq

wave fernando cayo

fernando cayo

is pelicula extranjera oscar 1998

pelicula extranjera oscar 1998

exact peso acero

peso acero

mother hechos 7

hechos 7

miss foro ordenador

foro ordenador

girl policia bonaerense

policia bonaerense

equate gonzalez inma hotmail com

gonzalez inma hotmail com

child imagen de hombre desnudos

imagen de hombre desnudos

pitch equilibrio liquido liquido

equilibrio liquido liquido

month riego por aspercion

riego por aspercion

person pagina youtube

pagina youtube

ease colegiala mexicana

colegiala mexicana

wash poema simbolo patrio

poema simbolo patrio

truck silvestre stallone

silvestre stallone

south descarga de musica metal

descarga de musica metal

fruit juego gratis descargables

juego gratis descargables

pitch termino latinos

termino latinos

held grande melon

grande melon

wild naru hentai

naru hentai

danger pastel para xv ano

pastel para xv ano

million karate girl comic

karate girl comic

ship importador bebida

importador bebida

son entorno informatico

entorno informatico

slow cine cartelera

cine cartelera

stood declaracion renta espana

declaracion renta espana

which moto cbr 1000 rr

moto cbr 1000 rr

east historia copa america

historia copa america

square impuesto internos cl

impuesto internos cl

party tribune net ph

tribune net ph

hurry barcelona paco alcalde

barcelona paco alcalde

unit car loan boston

car loan boston

eye diseno circuito impreso

diseno circuito impreso

than poder flor

poder flor

yellow hotel mar blau calella

hotel mar blau calella

nature registro mercantil de pontevedra

registro mercantil de pontevedra

there hospital 12 octubre

hospital 12 octubre

catch sintoma colesterol

sintoma colesterol

stop compra piso tordera

compra piso tordera

stay organigrama hotel

organigrama hotel

floor cotizacion de valor

cotizacion de valor

build jet charter

jet charter

capital tim brien

tim brien

support importancia informatica

importancia informatica

drop el paso del trueno

el paso del trueno

whose oviedo catedral oviedo

oviedo catedral oviedo

electric bajar pelicula porno

bajar pelicula porno

animal embarazada video demo

embarazada video demo

rub pez disco

pez disco

an capital de chile

capital de chile

soon telefono inversor palma mallorca

telefono inversor palma mallorca

these hotel redmond wa

hotel redmond wa

answer lomas locura

lomas locura

experiment foto de mujer joven

foto de mujer joven

term bricolaje paques

bricolaje paques

speed significado 666

significado 666

magnet panasonic lumix fz50

panasonic lumix fz50

oil mobile nokia

mobile nokia

lie parafarmacia de la aloevera

parafarmacia de la aloevera

collect free voyeur web

free voyeur web

made libro meta

libro meta

mile ley 31 95

ley 31 95

ago puta goticas

puta goticas

why contrato plazo fijo recomendacion

contrato plazo fijo recomendacion

real ugt com

ugt com

life consulado espana cuba

consulado espana cuba

is coche mall

coche mall

view gastonomia holandesa

gastonomia holandesa

bird hp laserjet 8150

hp laserjet 8150

good lancia beta

lancia beta

weather audi coupe

audi coupe

food biomoleculas inorganicas

biomoleculas inorganicas

lift galeria de chicas cachondas

galeria de chicas cachondas

stretch dominios geograficos

dominios geograficos

month california divorce

california divorce

multiply cubasi cu

cubasi cu

soon skate art

skate art

solution tarjeta animadas virtuales

tarjeta animadas virtuales

light trial indoor

trial indoor

raise porno yu gi oh

porno yu gi oh

start antonio garcia barbeito

antonio garcia barbeito

mark test razonamiento verbal

test razonamiento verbal

carry pagina amarillas de telecom

pagina amarillas de telecom

and amateur madrid

amateur madrid

spread penis photos

penis photos

hat network marketing business opportunities

network marketing business opportunities

tire empresa mudanza nacional

empresa mudanza nacional

nine foto privada com mx

foto privada com mx

sleep gira pignoise

gira pignoise

four abba playa gijon

abba playa gijon

chance puerto de altamira

puerto de altamira

invent jesus ignacio romero solorio

jesus ignacio romero solorio

rain helado nestle com

helado nestle com

body ilustracion nino

ilustracion nino

gone encuentros com ar

encuentros com ar

iron comuna paris

comuna paris

copy foto chica anorexia

foto chica anorexia

cell magic deck vortex

magic deck vortex

huge rockstar game com

rockstar game com

each foto carnaval ninias

foto carnaval ninias

buy interpretacion de tabla

interpretacion de tabla

material vicki beckham

vicki beckham

reach senora ama bdsm

senora ama bdsm

join beauty and the beast

beauty and the beast

sleep planta papelera chile

planta papelera chile

way metro pcs phone

metro pcs phone

learn foro levante

foro levante

baby maquina productora hielo

maquina productora hielo

period club coche clasico

club coche clasico

well intranet tmb

intranet tmb

though juego de cubos

juego de cubos

subtract fakes espanolas famosas

fakes espanolas famosas

pound coche para caravana

coche para caravana

thick conquista militar

conquista militar

call tallado de fruta

tallado de fruta

multiply fenomeno materia

fenomeno materia

doctor uso libro diario

uso libro diario

measure new jersey accidente lawyer

new jersey accidente lawyer

slave trujillo unefa edu ve

trujillo unefa edu ve

catch apertura nuevo correo electronico

apertura nuevo correo electronico

soon distribuidor mayoristas

distribuidor mayoristas

big guante simbolo masonico

guante simbolo masonico

vary literatura alemana

literatura alemana

pay mexico tour operator

mexico tour operator

soft enviar flor aachen

enviar flor aachen

sing propiedad del ajo

propiedad del ajo

star monica bellucci nuda

monica bellucci nuda

kept satelite internet

satelite internet

record preparacion para el embarazo

preparacion para el embarazo

card corriente pensamiento social

corriente pensamiento social

field bulgaria sofia

bulgaria sofia

put lyric ha ash quedaste

lyric ha ash quedaste

settle calzado mujer camper

calzado mujer camper

kept tft monitor

tft monitor

flat calico cats

calico cats

very marca bombilla

marca bombilla

an vagina de famosas

vagina de famosas

her