HomePage » Tomcat

*SubTopics*


*Useful links*

Monitoring

http://www.lambdaprobe.org/d/download.htm

Connecting tomcat and apache using mod_jk or mod_proxy

One can connect tomcat to apache via mod_proxy or mod_jk.

Via mod_proxy_ajp on apache 2.2
Connecting tomcat and apache2.2 couldn't be easier. Apache2.2 has build-in support for AJP protocol. It's considerably easier than mod_jk. Here's a quick example on mounting the tomcat example webapps.

LoadModule proxy_module modules/mod_proxy.so
LoadModule proxy_ajp_module modules/mod_proxy_ajp.so

<IfModule proxy_module>
ProxyRequests Off
<Proxy *>
    Order allow,deny
    Allow from all
</Proxy>
ProxyPass /assets !
ProxyPass /css !
ProxyPass /scripts !
ProxyPass /js !
ProxyPass  /  http://localhost:8080/
ProxyPassReverse /  http://localhost:8080/

ProxyPass /examples ajp://localhost:8009/examples
ProxyPassReverse /examples ajp://localhost:8009/examples

# Or do it with rewrite
        RewriteEngine On
        RewriteCond %{REQUEST_URI} /.*\.jsp
        RewriteRule ^/(.*) ajp://localhost:8009/$1 [P]
        RewriteCond %{REQUEST_URI} /(servlet|examples).*
        RewriteRule ^/(.*) ajp://localhost:8009/$1 [P]

# Negate rewrite
    <Proxy balancer://internalBalancer stickysession=JSESSIONID>
                BalancerMember ajp://10.10.10.3:8509
                BalancerMember ajp://10.10.10.8:8509
        </Proxy>
    RewriteCond %{REQUEST_URI} !\.htm$
    RewriteRule /(.*) ajp://someBalancer/$1 [P]
   

# Enables maintenance page
RewriteEngine On
# Check for maintenance page
RewriteCond %{REQUEST_URI} !(maintenance.html$)
RewriteCond %{DOCUMENT_ROOT}/maintenance.html -f
RewriteRule .* /maintenance.html [R,L]

# Forward everything to jboss
RewriteCond %{REQUEST_URI} !(maintenance.html$)
RewriteRule ^/(.*) ajp://localhost:8009/$1 [P]
</IfModule>


Load balancing example
<IfModule proxy_module>
ProxyRequests Off

# Defining a balancer
<Proxy balancer://tomcatfarm>
    Order allow,deny
    Allow from all
    BalancerMember ajp://localhost:8009/examples loadfactor=50
    BalancerMember ajp://192.168.13.10:8009/examples loadfactor=10
    # Member to use only when no other members are available
    BalancerMember ajp://10.0.0.1:8009/examples status=+H
    # Available methods byrequests, bytraffic
    ProxySet lbmethod=byrequests
</Proxy>

# Mapping /examples to your balancer
<Location /examples>
    SetEnv BALANCER_SESSION_STICKY jsessionid
    ProxyPass balancer://tomcatfarm/
    ProxyPassReverse balancer://tomcatfarm/
</Location>

# Enable balancer manager to show load statistics
<Location /balancer-manager>
    SetHandler balancer-manager
    Order allow,deny
    Allow from all
</Location>
</IfModule>


Balancer manager for the example above
image

Via tomcat-connector (mod_jk)
mod_jk has been around for some time. Installation is straight-forward on modern linux distribution.

Note: On Solaris, make, m4, libtool, automake and autoconf should be installed. Do a buildconf.sh before configure. Also export LD_LIBRARY_PATH="/usr/local/lib"

./configure --with-apxs=/usr/sbin/apxs
# Other options:
# --with-java-home=${JAVA_HOME} --with-java-platform=2 -enable-jni
make && make install


mod_jk setup
workers.properties
# Generic template - v1.0 - Ken Fong
# take out loadbalancer if talking to 1 tomcat.
workers.apache_log=/var/log/httpd/
workers.tomcat_home=/opt/tomcat
workers.java_home=/opt/java
ps=/

# Define list of workers that will be used
# for mapping requests
# When load-balancing is used, real workers should not be listed here.
worker.list=loadbalancer,status

# Definte default worker settings
worker.default.port=8009
worker.default.type=ajp13
worker.default.lbfactor=1
# no need to set socket_timeout in most case. default is 0
worker.default.socket_timeout=120
# for firewalled backend
worker.default.socket_keepalive=True
# ping listener before connect, timeout 5s
worker.default.ping_mode=P
worker.default.ping_timeout=5000
worker.default.connect_timeout=5000
# timeout between request and first response packet. set to longer in case of long running servlets
worker.default.reply_timeout=60000
# ping/ping before forwarding a request
# worker.prepost_timeout=5000
# worker.default.connection_pool_timeout=180

# Define Node1
worker.node1.reference=worker.default
worker.node1.host=192.168.17.101

# Define Node 2
worker.node2.reference=worker.default
worker.node2.host=192.168.17.102

# define load balancer
worker.loadbalancer.type=lb
worker.loadbalancer.balance_workers=node1,node2
worker.loadbalancer.sticky_session=true
# Load balancing method can be [R]equest, [S]ession, [T]raffic, or [B]usyness
worker.loadbalancer.method=R
# How runtime data are sync-ed. [O]ptimistic or [P]essimistic
worker.loadbalancer.lock=O

# Status worker for managing load balancer
worker.status.type=status


httpd.conf
# Load mod_jk
#
LoadModule    jk_module  libexec/mod_jk.so
#AddModule     mod_jk.c

# Configure mod_jk
#
JkWorkersFile /usr/local/jakarta-tomcat/conf/workers.properties
JkLogFile     /usr/local/apache/logs/mod_jk.log
JkLogLevel    warn
# Set the following if you want all vhosts to inherhit JkMounts from global
JkMountCopy All

# Interesting option to try out. possibly eliminate the need to jkmount the same url twice
JkOptions +ForwardDirectories

# Sample mount point
JkMount /jmx-console ajp13
JkMount /jmx-console/* ajp13

# First Virtual Host.
#
<VirtualHost 10.0.0.1:80>
  DocumentRoot /web/host1
  ServerName host1.apache.org
  JkMount /*.jsp ajp13
  JkMount /servlet/* ajp13
</VirtualHost>

# Second Virtual Host. Also accessible via HTTPS
#
<VirtualHost 10.0.0.2:80>
  DocumentRoot /web/host2
  ServerName host2.apache.org
  JkMountCopy On
</VirtualHost>

<VirtualHost 10.0.0.2:443>
  DocumentRoot /web/host2
  ServerName host2.apache.org
  SSLEngine On
  JkMountCopy On
</VirtualHost>


JkMount exclusion
Sometimes, you need to forward all requests to tomcat/jboss, except for maybe the images directory, which will be served out of apache. Here's how you can do it

JkMount /* worker1
SetEnvIf Request_URI "/images/*" no-jk


Then a fairly simply tomcat startup script
tomcat
#!/bin/sh                            
# tomcat Startup script for          
#                                    
# chkconfig: 2345 90 10              
# description: custom tomcat script to restart tomcat as the tomcat user
# @author                : Ken Fong                                    
# @origdate             : Wed Feb 27 11:22:32 EST 2008      
# @revision              : 0.2            

# Linux init functions
. /etc/rc.d/init.d/functions

export TOMCAT_HOME=/opt/tomcat        
export CATALINA_PID=$TOMCAT_HOME/logs/tomcat.pid
export JAVA_HOME=/usr                  
#export JAVA_OPTS="-Xmx512m"          
TOMCAT_USER=tomcat                  

RETVAL=0
LOCKFILE=/var/lock/subsys/tomcat

start() {
                echo -n "Starting tomcat..."
                chown -R $TOMCAT_USER:$TOMCAT_USER $TOMCAT_HOME
                ulimit -n 4096                                
                su $TOMCAT_USER -c $TOMCAT_HOME/bin/startup.sh
                # On BSD # su -m $TOMCAT_USER -c $TOMCAT_HOME/bin/startup.sh
                echo "Tomcat started with PID `cat $CATALINA_PID`"          
                RETVAL=$?                                                  
                echo                                                        
                [ $RETVAL = 0 ] && touch ${LOCKFILE}                        
                return $RETVAL
}

stop() {
                echo -n "Stopping tomcat..."
                su $TOMCAT_USER -c $TOMCAT_HOME/bin/shutdown.sh
                # on BSD # su -m $TOMCAT_USER -c $TOMCAT_HOME/bin/shutdown.sh
                #ps auxww | grep "$TOMCAT_HOME " | grep -v grep | awk '{print $2}' | xargs kill -9
                echo "Killing tomcat process in case normal shutdown was ineffective"
                if [ -n "`pidfileofproc $CATALINA_PID`" ] ; then
                    killproc $CATALINA_PID
                    # BSD # kill -9 `cat $CATALINA_PID`
                fi
                RETVAL=$?
                echo
                [ $RETVAL = 0 ] && rm -f ${LOCKFILE}
                return $RETVAL
}

case "$1" in
start)
                start
;;

stop)
                stop
;;

restart)
                stop
                sleep 10
                start
;;
esac
exit 0


Tomcat virtual host
If in some case you need to create virtual hosts with a dedicated webapps repository, add these to server.xml:
server.xml
<Host name="www.newdomain.com" appBase="/home/sites/newdomain.com"
        unpackWARs="true" autoDeploy="true"
        xmlValidation="false" xmlNamespaceAware="false">

       
        <Alias>newdomain.com</Alias>
        <Valve className="org.apache.catalina.valves.AccessLogValve" directory="logs"
               prefix="newdomain-" suffix=".log" pattern="common" resolveHosts="false"/>

</Host>
Comments [Hide comments/form]
What a joy to find someone else who tihnks this wa
-- host-3_static.suppor (2011-10-18 04:57:00)
67I5SY <a href="http://uyhqnnnqtpcm.com/&
-- ip-209-172-62-86.sta (2011-10-18 09:47:27)
KbeiJR , [url=http://pejdjlrpwpdb.com/]pejdjlrpwpd
-- 62.4.73.228.cdg2.fr. (2011-10-19 05:11:02)
sdHW5P <a href="http://wzagujcmwsny.com/&
-- 196.46.241.127 (2011-10-23 12:53:11)
WyS98g http://www.2KFk8UxzgR3t2CjpiGYlWRZr9NzJwIs8
-- lotus.floppy.com.pl (2011-12-29 11:26:40)
I quite like cooking <a href=" http://www.
-- h60.241.159.dialup.i (2011-12-29 23:43:44)
What do you like doing in your spare time? <a h
-- 82.148.109.68 (2011-12-29 23:47:18)
Enter your PIN <a href=" http://CheapLeaga
-- 149.250.245.156 (2011-12-29 23:50:20)
I'm in a band <a href=" http://ClonazepamC
-- aicw6kuq.emirates.ne (2011-12-30 00:26:53)
I'm a housewife <a href=" http://www.haten
-- 86.96.226.23 (2011-12-30 00:32:48)
I'd like to open an account <a href=" http
-- 200-109-108-137.gene (2011-12-30 00:43:45)
History <a href=" http://GenericLorazepam.
-- 82.148.109.68 (2011-12-30 01:09:16)
Could you tell me my balance, please? <a href=&
-- mx-ll-110.164.3-165. (2011-12-30 01:18:08)
Could you send me an application form? <a href=
-- ip177-46-8-105.anid. (2011-12-30 01:37:46)
What's the current interest rate for personal loan
-- 118.107.173.79.pntl. (2011-12-30 01:52:04)
I'm sorry, she's <a href=" http://Clonaze
-- 118.107.173.79.pntl. (2011-12-30 02:04:07)
I'm sorry, I didn't catch your name <a href=&qu
-- ec2-107-20-161-197.c (2011-12-30 02:31:02)
I sing in a choir <a href=" http://www.hat
-- dynamicip-94-180-164 (2011-12-30 02:35:18)
Which year are you in? <a href=" http://5M
-- 118.107.173.79.pntl. (2011-12-30 02:50:16)
Cool site goodluck :) <a href=" http://5Mg
-- 184-22-116-236.stati (2011-12-30 03:18:10)
My battery's about to run out <a href=" ht
-- 14.139.60.213 (2011-12-30 03:25:39)
Would you like a receipt? <a href=" http:/
-- aicw6kuq.emirates.ne (2011-12-30 03:36:39)
this post is fantastic <a href=" http://Ov
-- 207.219.7.136 (2011-12-30 04:00:49)
Can you put it on the scales, please? <a href=&
-- uu-041-209-022-092.u (2011-12-30 04:19:25)
I'm on business <a href=" http://BuyDiazep
-- 82.148.109.69 (2011-12-30 04:22:54)
Do you like it here? <a href=" http://Chea
-- 82.148.109.68 (2011-12-30 04:45:25)
I quite like cooking <a href=" http://Diaz
-- static-72-64-146-73. (2011-12-30 05:10:10)
Directory enquiries <a href=" http://2MgOf
-- sr3-73.hostkey.ru (2011-12-30 05:15:48)
What do you study? <a href=" http://www.ha
-- 57.90.36.29 (2011-12-30 05:31:32)
Looking for a job <a href=" http://www.hat
-- 77.47.196.107 (2011-12-30 05:59:25)
Could you tell me the number for ? <a href=&quo
-- 82.148.109.69 (2011-12-30 06:12:52)
I'm training to be an engineer <a href=" h
-- 65.38.122.80 (2011-12-30 06:18:28)
I'd like to change some money <a href=" ht
-- 62.67.234.66 (2011-12-30 06:48:26)
Go travelling <a href=" http://DiazepamWit
-- mx-ll-110.164.3-167. (2011-12-30 07:04:39)
How do you spell that? <a href=" http://Kl
-- mx-ll-110.164.3-179. (2011-12-30 07:12:05)
I'll text you later <a href=" http://www.h
-- 217.96.70.146 (2011-12-30 07:36:50)
Could I have a statement, please? <a href="
-- 222.238.156.247 (2011-12-30 07:51:03)
Your account's overdrawn <a href=" http://
-- mx-ll-110.164.3-167. (2011-12-30 08:09:15)
I quite like cooking <a href=" http://Diaz
-- 222.238.156.247 (2011-12-30 08:24:49)
I've got a full-time job <a href=" http://
-- 57.90.36.29 (2011-12-30 08:35:21)
A pension scheme <a href=" http://Klonopin
-- 57.90.36.29 (2011-12-30 09:07:11)
I'd like to cancel a cheque <a href=" http
-- 212.129.66.139 (2011-12-30 09:12:30)
I'll put her on <a href=" http://PharmacyD
-- 94.26.79.74 (2011-12-30 09:19:45)
I've been cut off <a href=" http://BuyDiaz
-- 194.126.21.7 (2011-12-30 10:02:00)
I'd like to open an account <a href=" http
-- s1-lh.evotek.ro (2011-12-30 10:04:49)
I love the theatre <a href=" http://CostOf
-- 212.129.66.139 (2011-12-30 10:05:47)
Do you like it here? <a href=" http://Phar
-- aicw6kuq.emirates.ne (2011-12-30 10:50:35)
How many weeks' holiday a year are there? <a hr
-- igorek73.static.corb (2011-12-30 10:50:52)
History <a href=" http://www.hatena.ne.jp/
-- c-66-176-79-95.hsd1. (2011-12-30 11:00:02)
I like watching football <a href=" http://
-- 92.99.185.81 (2011-12-30 11:36:45)
Where do you live? <a href=" http://BuyDia
-- 92.99.223.107 (2011-12-30 11:39:56)
Another service? <a href=" http://www.hate
-- 210.101.131.231 (2011-12-30 11:54:58)
I'd like to apply for this job <a href=" h
-- mx-ll-110.164.3-179. (2011-12-30 12:24:36)
Have you got a telephone directory? <a href=&qu
-- 85.9.60.86 (2011-12-30 12:27:15)
I've got a full-time job <a href=" http://
-- mx-ll-110.164.3-167. (2011-12-30 12:51:42)
I can't get a signal <a href=" http://NoPr
-- 85.9.60.86 (2011-12-30 13:10:28)
We need someone with experience <a href="
-- 82.148.109.69 (2011-12-30 13:15:00)
I'm on holiday <a href=" http://BuyLorazep
-- spring.net.kmitl.ac. (2011-12-30 13:48:30)
We've got a joint account <a href=" http:/
-- 95.211.45.66 (2011-12-30 13:56:36)
Best Site Good Work <a href=" http://Loraz
-- 213.27.232.210 (2011-12-30 14:02:52)
real beauty page <a href=" http://BestGene
-- 190.152.215.83 (2011-12-30 14:41:45)
How much notice do you have to give? <a href=&q
-- IP80-90-171-100.zain (2011-12-30 14:42:36)
What do you like doing in your spare time? <a h
-- 217.96.70.146 (2011-12-30 14:51:02)
A staff restaurant <a href=" http://www.ha
-- 82.148.109.68 (2011-12-30 15:25:36)
Nice to meet you <a href=" http://Lorazepa
-- mx-ll-110.164.3-181. (2011-12-30 15:36:46)
magic story very thanks <a href=" http://C
-- mx-ll-110.164.3-165. (2011-12-30 15:40:26)
What's the exchange rate for euros? <a href=&qu
-- 95-31-20-162.broadba (2011-12-30 16:11:04)
Will I be paid weekly or monthly? <a href="
-- mx-ll-110.164.3-168. (2011-12-30 16:28:22)
I'm a member of a gym <a href=" http://Che
-- mx-ll-110.164.3-166. (2011-12-30 16:31:06)
Remove card <a href=" http://ClonazepamGen
-- 82.148.109.69 (2011-12-30 16:55:09)
Can I call you back? <a href=" http://www.
-- mx-ll-110.164.3-184. (2011-12-30 17:17:00)
I was made redundant two months ago <a href=&qu
-- 112.197.8.7 (2011-12-30 17:25:30)
I'm sorry, she's <a href=" http://Diazepa
-- 79.170.50.74 (2011-12-30 17:39:43)
I'm self-employed <a href=" http://CheapDi
-- 84.237.33.3 (2011-12-30 18:05:29)
Languages <a href=" http://StreetValue1MgK
-- 71-19-160-66.dedicat (2011-12-30 18:21:05)
We'd like to invite you for an interview <a hre
-- 85.9.60.86 (2011-12-30 18:26:31)
Why did you come to ? <a href=" http://Buy
-- aicw6kuq.emirates.ne (2011-12-30 18:56:00)
Please call back later <a href=" http://Lo
-- 86.96.226.23 (2011-12-30 19:12:39)
I'm doing a masters in law <a href=" http:
-- 112.197.8.7 (2011-12-30 19:21:14)
How many days will it take for the cheque to clear
-- cable190-248-67-138. (2011-12-30 19:45:30)
What sort of music do you listen to? <a href=&q
-- 93.186.104.37 (2011-12-30 19:58:40)
I'd like to change some money <a href=" ht
-- 014198199009.ctinets (2011-12-30 20:19:42)
Accountant supermarket manager <a href=" h
-- ip248.40.52.176.kzn. (2011-12-30 20:34:02)
Thanks for calling <a href=" http://BuyDia
-- aicw6kuq.emirates.ne (2011-12-30 20:43:24)
I'm training to be an engineer <a href=" h
-- static-72-64-146-73. (2011-12-30 21:17:53)
I'm sorry, he's <a href=" http://OnlinePh
-- aicw6kuq.emirates.ne (2011-12-30 21:23:19)
I'm sorry, she's <a href=" http://Clonaze
-- 88.81.213.46 (2011-12-30 21:28:52)
I'll put her on <a href=" http://CheapestD
-- 84-52-86-10.westcall (2011-12-30 22:11:54)
Until August <a href=" http://NoPrescripti
-- 186.46.6.45 (2011-12-30 22:14:51)
this is be cool 8) <a href=" http://www.ha
-- 82.148.109.69 (2011-12-30 22:16:14)
Very interesting tale <a href=" http://Klo
-- 177.19.134.66.static (2011-12-30 22:58:56)
I'm at Liverpool University <a href=" http
-- 41.223.116.54 (2011-12-30 22:59:45)
How many days will it take for the cheque to clear
-- neoclique.hosted-at. (2011-12-30 23:14:57)
I can't get through at the moment <a href="
-- aicw6kuq.emirates.ne (2011-12-30 23:45:08)
I can't get a dialling tone <a href=" http
-- mx-ll-110.164.3-178. (2011-12-30 23:45:53)
Sorry, I ran out of credit <a href=" http:
-- c-68-50-104-170.hsd1 (2011-12-31 00:10:29)
Could I order a new chequebook, please? <a href
-- 85.9.60.86 (2011-12-31 00:30:32)
I'm from England <a href=" http://BuyClona
-- user-78-139-228-198. (2011-12-31 00:35:24)
I've lost my bank card <a href=" http://St
-- dynamicip-94-180-164 (2011-12-31 01:05:02)
I work with computers <a href=" http://Buy
-- 57.90.36.29 (2011-12-31 01:16:43)
Go travelling <a href=" http://Clonazepam1
-- 82.148.109.68 (2011-12-31 01:25:46)
I'd like to open a personal account <a href=&qu
-- server204-157.live-s (2011-12-31 02:01:04)
Your cash is being counted <a href=" http:
-- email2.comunicacaodi (2011-12-31 02:03:03)
this post is fantastic <a href=" http://Sa
-- 82.148.109.68 (2011-12-31 02:16:29)
Could you give me some smaller notes? <a href=&
-- ip177-46-8-105.anid. (2011-12-31 02:49:54)
Is it convenient to talk at the moment? <a href
-- ks3094629.kimsufi.co (2011-12-31 02:56:51)
Not in at the moment <a href=" http://www.
-- 82.148.109.69 (2011-12-31 03:07:54)
Photography <a href=" http://ClonazepamBuy
-- host22-153-static.41 (2011-12-31 03:36:36)
Did you go to university? <a href=" http:/
-- 194.126.21.7 (2011-12-31 03:53:12)
Why did you come to ? <a href=" http://www
-- fernandonetvalparais (2011-12-31 03:58:44)
Where's the postbox? <a href=" http://www.
-- 95-31-20-162.broadba (2011-12-31 04:24:19)
How do I get an outside line? <a href=" ht
-- mail.seads.com.br (2011-12-31 04:49:49)
Photography <a href=" http://OrderingKlono
-- 94.26.79.74 (2011-12-31 04:49:55)
perfect design thanks <a href=" http://Lor
-- 82.148.109.69 (2011-12-31 05:11:28)
I quite like cooking <a href=" http://Onli
-- mountain41.wifflenew (2011-12-31 05:41:07)
Insufficient funds <a href=" http://www.ha
-- 190.66.17.53 (2011-12-31 05:46:08)
What do you do for a living? <a href=" htt
-- 82.148.109.69 (2011-12-31 05:59:45)
I want to make a withdrawal <a href=" http
-- 82.148.109.68 (2011-12-31 06:32:48)
Cool site goodluck :) <a href=" http://www
-- 95.211.45.66 (2011-12-31 06:43:45)
Have you got any qualifications? <a href="
-- igorek73.static.corb (2011-12-31 06:47:35)
Looking for a job <a href=" http://BuyDiaz
-- cable190-248-67-138. (2011-12-31 07:24:34)
Which university are you at? <a href=" htt
-- mx-ll-110.164.3-167. (2011-12-31 07:35:46)
Do you like it here? <a href=" http://Name
-- host-184-116-98-165. (2011-12-31 07:42:26)
An envelope <a href=" http://DiazepamFromM
-- 67.158.63.124 (2011-12-31 08:16:53)
Withdraw cash <a href=" http://BuyKlonopin
-- aicw6kuq.emirates.ne (2011-12-31 08:24:09)
Would you like a receipt? <a href=" http:/
-- 210.101.131.231 (2011-12-31 08:42:21)
How much notice do you have to give? <a href=&q
-- 82.148.109.69 (2011-12-31 09:08:58)
Do you know each other? <a href=" http://
-- 62.67.234.66 (2011-12-31 09:12:25)
I can't stand football <a href=" http://Cl
-- 94.26.146.70 (2011-12-31 09:41:36)
We need someone with experience <a href="
-- 82.148.109.68 (2011-12-31 10:00:59)
Lost credit card <a href=" http://BuyLoraz
-- host-91-93-132-210.t (2011-12-31 10:01:07)
Can you put it on the scales, please? <a href=&
-- vps.buysometimetoday (2011-12-31 10:38:55)
I work for myself <a href=" http://Diazepa
-- 82.148.109.69 (2011-12-31 10:49:21)
I'd like to withdraw $100, please <a href="
-- 82.148.109.68 (2011-12-31 10:53:14)
Sorry, you must have the wrong number <a href=&
-- pool-94.24.200-48.is (2011-12-31 11:35:04)
I can't get through at the moment <a href="
-- 132.248.13.8 (2011-12-31 11:37:19)
I stay at home and look after the children <a h
-- 71-94-41-81.static.t (2011-12-31 11:45:17)
I'd like to take the job <a href=" http://
-- igorek73.static.corb (2011-12-31 12:23:07)
This site is crazy :) <a href=" http://Dia
-- 82.148.109.69 (2011-12-31 12:24:28)
Could I have , please? <a href=" http://Bu
-- 173-203-81-196.stati (2011-12-31 12:35:27)
Do you know the address? <a href=" http://
-- mail8.getameet.net (2011-12-31 13:09:35)
I'll put her on <a href=" http://DiazepamP
-- ec2-107-20-161-197.c (2011-12-31 13:16:07)
I'm not working at the moment <a href=" ht
-- www.nullmodem.ch (2011-12-31 13:25:56)
We'll need to take up references <a href="
-- mx-ll-110.164.3-166. (2011-12-31 13:56:18)
Have you got any ? <a href=" http://Pakist
-- c-76-118-67-130.hsd1 (2011-12-31 14:06:25)
It's OK <a href=" http://LorazepamTab05Mg.
-- 82.148.109.69 (2011-12-31 14:17:07)
What university do you go to? <a href=" ht
-- 177.19.134.66.static (2011-12-31 14:42:54)
My battery's about to run out <a href=" ht
-- 210.177.210.61 (2011-12-31 14:56:36)
Special Delivery <a href=" http://Clonazep
-- 78.93.66.178 (2011-12-31 15:07:40)
Gloomy tales <a href=" http://DiazepamBuyS
-- mx-ll-110.164.3-167. (2011-12-31 15:29:53)
I'm not interested in football <a href=" h
-- demodns.cw-anpidemo- (2011-12-31 15:47:04)
I'm afraid that number's ex-directory <a href=&
-- aicw6kuq.emirates.ne (2011-12-31 15:58:52)
What sort of music do you like? <a href="
-- ip-86-110-191-54.spa (2011-12-31 16:16:23)
About a year <a href=" http://Clonazepam5M
-- 197.6.103.97.cfl.res (2011-12-31 16:37:52)
I'm retired <a href=" http://DiazepamWitho
-- igorek73.static.corb (2011-12-31 16:49:49)
Could you send me an application form? <a href=
-- mail8.getameet.net (2011-12-31 17:03:25)
What sort of music do you like? <a href="
-- c-68-50-104-170.hsd1 (2011-12-31 17:28:18)
I like watching football <a href=" http://
-- ec2-107-20-161-197.c (2011-12-31 17:41:27)
A pension scheme <a href=" http://www.hate
-- 217.96.70.146 (2011-12-31 17:50:58)
I'd like to cancel this standing order <a href=
-- ws-87-74.burnet.ru (2011-12-31 18:19:12)
Pleased to meet you <a href=" http://Gener
-- mx-ll-110.164.3-184. (2011-12-31 18:32:52)
I'm afraid that number's ex-directory <a href=&
-- newsmtp.intraxinc.co (2011-12-31 18:38:21)
I'm interested in <a href=" http://Pictur
-- 41.190.16.17 (2011-12-31 19:09:31)
I'd like to send this to <a href=" http:/
-- mail.tujvaros.hu (2011-12-31 19:24:22)
Stolen credit card <a href=" http://Diazep
-- 196.254.224.159.trio (2011-12-31 19:25:21)
I've got a full-time job <a href=" http://
-- c-98-215-146-155.hsd (2011-12-31 20:00:49)
Lost credit card <a href=" http://www.hate
-- zeus.querido.org (2011-12-31 20:13:15)
My battery's about to run out <a href=" ht
-- rrcs-173-196-180-201 (2011-12-31 20:16:11)
Pleased to meet you <a href=" http://www.h
-- c-76-24-215-233.hsd1 (2011-12-31 20:51:40)
I need to charge up my phone <a href=" htt
-- 128.227.70.247 (2011-12-31 21:00:49)
real beauty page <a href=" http://Diazepam
-- static.72.1.9.176.cl (2011-12-31 21:07:58)
We've got a joint account <a href=" http:/
-- dsl-201-152-148-250- (2011-12-31 21:43:16)
I never went to university <a href=" http:
-- 66.79.125.127 (2011-12-31 21:48:22)
I'd like to order some foreign currency <a href
-- 208.91.59.65 (2011-12-31 22:34:41)
We went to university together <a href=" h
-- mail-out.markham.edu (2011-12-31 22:36:20)
How much does the job pay? <a href=" http:
-- eumetcal-ext1.enm.me (2011-12-31 22:50:07)
I never went to university <a href=" http:
-- 77.240.147.214 (2011-12-31 23:24:26)
Where's the postbox? <a href=" http://BuyL
-- 91.194.80.29 (2011-12-31 23:26:08)
Where's the postbox? <a href=" http://Half
-- v7gw-1.comdivision-c (2011-12-31 23:38:57)
I've got a full-time job <a href=" http://
-- 64.214.207.133 (2012-01-01 00:12:18)
Jonny was here <a href=" http://www.hatena
-- c-75-64-221-252.hsd1 (2012-01-01 00:18:13)
Sorry, you must have the wrong number <a href=&
-- 57.90.36.29 (2012-01-01 00:31:04)
We've got a joint account <a href=" http:/
-- 93.186.104.37 (2012-01-01 01:00:27)
I enjoy travelling <a href=" http://CheapG
-- c-68-63-243-251.hsd1 (2012-01-01 01:10:24)
This is the job description <a href=" http
-- c-24-16-141-215.hsd1 (2012-01-01 01:23:39)
Yes, I love it! <a href=" http://IsGeneric
-- www.as-flughafen.de (2012-01-01 01:48:48)
Nice to meet you <a href=" http://Lorazepa
-- 115.146.135.40 (2012-01-01 02:02:39)
I'm a partner in <a href=" http://Klonopi
-- host-91-93-132-210.t (2012-01-01 02:16:16)
There's a three month trial period <a href=&quo
-- ip72-223-35-229.ph.p (2012-01-01 02:38:20)
I'm doing an internship <a href=" http://w
-- 82.148.109.69 (2012-01-01 02:55:35)
A pension scheme <a href=" http://Informat
-- cable190-248-67-138. (2012-01-01 03:06:04)
How many weeks' holiday a year are there? <a hr
-- c-68-41-195-201.hsd1 (2012-01-01 03:27:01)
What's your number? <a href=" http://Cheap
-- 187.58.200.162.stati (2012-01-01 03:48:30)
Could you please repeat that? <a href=" ht
-- 128.227.70.247 (2012-01-01 03:56:52)
I've just graduated <a href=" http://Clona
-- 109-74-5-26-static.s (2012-01-01 04:15:45)
Do you like it here? <a href=" http://Clon
-- 64-49-82-11.ny.ny.ev (2012-01-01 04:42:07)
How do you spell that? <a href=" http://ww
-- server60-chl.it.net (2012-01-01 04:49:40)
How much is a First Class stamp? <a href="
-- 67-221-226-126.conte (2012-01-01 05:04:25)
I'm self-employed <a href=" http://www.hat
-- 200.11.76.166 (2012-01-01 05:35:35)
Very funny pictures <a href=" http://Clona
-- 217.150.147.197 (2012-01-01 05:42:51)
Wonderfull great site <a href=" http://www
-- 89-162-67-22.fiber.s (2012-01-01 05:53:57)
How do I get an outside line? <a href=" ht
-- mx-ll-110.164.3-182. (2012-01-01 06:29:43)
Free medical insurance <a href=" http://Pi
-- 190.116.18.198 (2012-01-01 06:36:18)
What's the current interest rate for personal loan
-- U246207.ppp.dion.ne. (2012-01-01 06:43:22)
Whereabouts are you from? <a href=" http:/
-- c-66-41-99-209.hsd1. (2012-01-01 07:24:52)
I'm a trainee <a href=" http://CheapClona
-- 156.109-183-91.adsl- (2012-01-01 07:29:11)
Through friends <a href=" http://DiazepamW
-- client148-246.unisne (2012-01-01 07:32:21)
I quite like cooking <a href=" http://Lora
-- 41.190.16.17 (2012-01-01 08:21:18)
Did you go to university? <a href=" http:/
-- 71-19-160-66.dedicat (2012-01-01 08:21:42)
The line's engaged <a href=" http://Prescr
-- 67.158.63.124 (2012-01-01 08:22:28)
I'm training to be an engineer <a href=" h
-- U246207.ppp.dion.ne. (2012-01-01 09:09:55)
I'd like to transfer some money to this account &l
-- 67-221-226-126.conte (2012-01-01 09:13:57)
Where do you come from? <a href=" http://C
-- 76.10.210.155.custom (2012-01-01 09:19:07)
What's your number? <a href=" http://Where
-- 188.190.41.21 (2012-01-01 09:59:14)
We'd like to invite you for an interview <a hre
-- zeus.querido.org (2012-01-01 10:06:45)
What sort of work do you do? <a href=" htt
-- xvm-22-79.ghst.net (2012-01-01 10:15:47)
I'd like to order some foreign currency <a href
-- 64-49-82-11.ny.ny.ev (2012-01-01 10:48:52)
I came here to work <a href=" http://www.h
-- 86.96.226.23 (2012-01-01 10:59:57)
I'm sorry, I'm not interested <a href=" ht
-- c-24-3-207-27.hsd1.p (2012-01-01 11:12:17)
Which university are you at? <a href=" htt
-- franklin.sympatel.de (2012-01-01 11:37:19)
When do you want me to start? <a href=" ht
-- ds52567.dedicated.in (2012-01-01 11:51:52)
I'd like to withdraw $100, please <a href="
-- c-98-215-146-155.hsd (2012-01-01 12:06:49)
Sorry, you must have the wrong number <a href=&
-- ool-4573802d.dyn.opt (2012-01-01 12:25:35)
Yes, I love it! <a href=" http://OnlineLor
-- 92.96.173.101 (2012-01-01 12:44:05)
Whereabouts are you from? <a href=" http:/
-- 86.99.213.117 (2012-01-01 13:00:34)
Insufficient funds <a href=" http://Vintag
-- 87.229.36.196 (2012-01-01 13:15:20)
Did you go to university? <a href=" http:/
-- helios.meiyou.org (2012-01-01 13:37:20)
How do I get an outside line? <a href=" ht
-- c-71-235-247-189.hsd (2012-01-01 13:53:16)
Sorry, I ran out of credit <a href=" http:
-- 94.26.79.74 (2012-01-01 14:04:42)
What sort of music do you like? <a href="
-- ec2-107-20-103-94.co (2012-01-01 14:31:01)
Whereabouts in are you from? <a href=" ht
-- port-217-146-133-115 (2012-01-01 14:46:15)
Hello good day <a href=" http://WhereCanIB
-- helios.meiyou.org (2012-01-01 14:54:24)
How many more years do you have to go? <a href=
-- 94.185.84.19 (2012-01-01 15:24:28)
Hold the line, please <a href=" http://Ord
-- 87.229.36.243 (2012-01-01 15:38:58)
I work for myself <a href=" http://Klonopi
-- 71-93-61-46.static.s (2012-01-01 15:44:10)
Why did you come to ? <a href=" http://Buy
-- ip70-178-81-160.ks.k (2012-01-01 16:18:04)
I've got a full-time job <a href=" http://
-- 96-36-25-144.dhcp.al (2012-01-01 16:31:54)
I'll put him on <a href=" http://DiazepamN
-- 83.219.229.17 (2012-01-01 16:33:35)
Do you need a work permit? <a href=" http:
-- 100-013-066-080.egge (2012-01-01 17:11:20)
What line of work are you in? <a href=" ht
-- static.customer-201- (2012-01-01 17:23:33)
A financial advisor <a href=" http://www.h
-- c-66-31-27-27.hsd1.n (2012-01-01 17:24:44)
I'd like to tell you about a change of address <
-- 203-144-144-162.stat (2012-01-01 18:05:05)
Through friends <a href=" http://CheapDiaz
-- 82.148.109.68 (2012-01-01 18:13:03)
How do I get an outside line? <a href=" ht
-- 76.164.222.119 (2012-01-01 18:17:27)
How long are you planning to stay here? <a href
-- 146.219.19.160 (2012-01-01 18:58:35)
Is it convenient to talk at the moment? <a href
-- 195.229.181.253 (2012-01-01 19:02:51)
Withdraw cash <a href=" http://www.hatena.
-- rrcs-173-198-57-253. (2012-01-01 19:11:04)
I'm self-employed <a href=" http://BestKlo
-- aga-studio3.netbox.c (2012-01-01 19:52:46)
Do you play any instruments? <a href=" htt
-- 87.229.37.55 (2012-01-01 19:53:32)
Where did you go to university? <a href="
-- 88-147-159-63.pppoe. (2012-01-01 20:04:38)
We work together <a href=" http://Clonazep
-- franklin.sympatel.de (2012-01-01 20:42:44)
I'm on holiday <a href=" http://DiazepamBu
-- 82.148.109.68 (2012-01-01 20:45:52)
Which year are you in? <a href=" http://ww
-- c-68-34-43-163.hsd1. (2012-01-01 20:58:03)
Could you ask her to call me? <a href=" ht
-- a-02-sma1.nz.FH-Koel (2012-01-01 21:32:26)
What sort of music do you like? <a href="
-- c-24-125-117-113.hsd (2012-01-01 21:39:52)
What's the interest rate on this account? <a hr
-- ns25671.ovh.net (2012-01-01 21:51:53)
Do you have any exams coming up? <a href="
-- 173.212.39.130 (2012-01-01 22:22:37)
A financial advisor <a href=" http://Klono
-- 87.229.36.248 (2012-01-01 22:33:23)
Please call back later <a href=" http://On
-- 194.126.21.7 (2012-01-01 22:45:34)
I like watching football <a href=" http://
-- ec2-204-236-252-165. (2012-01-01 23:12:51)
I'd like to pay this in, please <a href="
-- 87.229.37.144 (2012-01-01 23:25:12)
I'm not working at the moment <a href=" ht
-- NSG-Static-050.185.7 (2012-01-01 23:38:59)
International directory enquiries <a href="
-- 119.114.87.109.triol (2012-01-02 00:02:26)
real beauty page <a href=" http://ByLoraze
-- 57.90.36.29 (2012-01-02 00:17:11)
I have my own business <a href=" http://Bu
-- 184.171.175.9 (2012-01-02 00:33:12)
I'd like to send this letter by <a href="
-- neoclique.hosted-at. (2012-01-02 00:52:58)
I'd like to pay this in, please <a href="
-- c-76-98-208-61.hsd1. (2012-01-02 01:12:14)
What do you like doing in your spare time? <a h
-- ool-457f6bd3.dyn.opt (2012-01-02 01:27:02)
I study here <a href=" http://OnlineLoraze
-- 212.129.66.139 (2012-01-02 01:43:30)
Can I call you back? <a href=" http://Lora
-- static.72.1.9.176.cl (2012-01-02 02:05:47)
I'm in my first year at university <a href=&quo
-- static-86-51-152-6.m (2012-01-02 02:22:02)
this is be cool 8) <a href=" http://www.ha
-- 71.197.125.189.stati (2012-01-02 02:33:59)
Can I call you back? <a href=" http://BuyD
-- c-24-16-141-215.hsd1 (2012-01-02 02:59:56)
I support Manchester United <a href=" http
-- 184-82-188-13.static (2012-01-02 03:17:52)
I'm sorry, she's <a href=" http://BuyKlon
-- ip98-167-147-178.ph. (2012-01-02 03:24:47)
Who would I report to? <a href=" http://Kl
-- 189-112-189-028.stat (2012-01-02 04:31:52)
I'm training to be an engineer <a href=" h
-- 87.229.37.29 (2012-01-02 04:42:42)
A law firm <a href=" http://www.hatena.ne.
-- 203-144-144-162.stat (2012-01-02 04:46:55)
Could you ask her to call me? <a href=" ht
-- 210.107.100.251 (2012-01-02 05:28:28)
Could you tell me the number for ? <a href=&quo
-- c-67-160-50-253.hsd1 (2012-01-02 05:36:45)
I'm doing a phd in chemistry <a href=" htt
-- 212.129.66.142 (2012-01-02 05:37:51)
Thanks funny site <a href=" http://NoPresc
-- 201-251-156-101.spee (2012-01-02 06:24:48)
i'm fine good work <a href=" http://Clonaz
-- 75-144-234-246-Atlan (2012-01-02 06:28:54)
Just over two years <a href=" http://CvsPh
-- c-174-59-145-3.hsd1. (2012-01-02 06:31:53)
How many days will it take for the cheque to clear
-- 82.148.109.68 (2012-01-02 07:20:04)
I'm in my first year at university <a href=&quo
-- ip98-181-9-37.br.br. (2012-01-02 07:21:06)
How do I get an outside line? <a href=" ht
-- rrcs-173-196-180-201 (2012-01-02 07:27:08)
This site is crazy :) <a href=" http://Whe
-- ganymed.uxix.de (2012-01-02 08:11:19)
Can I use your phone? <a href=" http://NoP
-- 96.19.167.198 (2012-01-02 08:17:51)
We went to university together <a href=" h
-- 195.68.152.60 (2012-01-02 08:22:40)
Do you like it here? <a href=" http://www.
-- securebox.bomlo.komm (2012-01-02 09:02:34)
We went to university together <a href=" h
-- c-98-198-152-60.hsd1 (2012-01-02 09:14:41)
I'd like to send this parcel to <a href="
-- host-201-218-63-174. (2012-01-02 09:18:00)
I live here <a href=" http://025mgOfKlonop
-- 95-26-229-179.broadb (2012-01-02 09:53:19)
Is this a temporary or permanent position? <a h
-- 31-222-168-117.stati (2012-01-02 10:11:20)
I'm sorry, I'm not interested <a href=" ht
-- 86.96.226.23 (2012-01-02 10:13:36)
I'd like to withdraw $100, please <a href="
-- cable190-248-67-138. (2012-01-02 10:44:43)
A company car <a href=" http://www.hatena.
-- mail.ustamail.net (2012-01-02 11:07:30)
Best Site good looking <a href=" http://Ch
-- 83.219.229.17 (2012-01-02 11:09:13)
I work here <a href=" http://NoPrescriptio
-- 193.145.50.174 (2012-01-02 11:36:04)
An estate agents <a href=" http://Clonazep
-- c-76-16-122-110.hsd1 (2012-01-02 12:04:08)
I'm retired <a href=" http://Klonopin05mgP
-- herrinunit.org (2012-01-02 12:04:58)
Accountant supermarket manager <a href=" h
-- cacheng.unige.ch (2012-01-02 12:28:00)
What do you like doing in your spare time? <a h
-- 84.45.46.2 (2012-01-02 13:00:10)
I really like swimming <a href=" http://ww
-- c-24-20-61-147.hsd1. (2012-01-02 13:00:59)
What line of work are you in? <a href=" ht
-- 94.198.60.30 (2012-01-02 13:19:16)
very best job <a href=" http://www.hatena.
-- mail.phpinfo.hu (2012-01-02 13:56:03)
I'd like to pay this cheque in, please <a href=
-- client148-246.unisne (2012-01-02 13:57:20)
Do you need a work permit? <a href=" http:
-- 186.46.6.45 (2012-01-02 14:10:39)
Could you transfer $1000 from my current account t
-- 113-53-232-91.totisp (2012-01-02 14:51:31)
I'd like to open an account <a href=" http
-- rrcs-173-198-57-253. (2012-01-02 14:52:37)
What company are you calling from? <a href=&quo
-- c-67-162-161-70.hsd1 (2012-01-02 15:02:09)
In a meeting <a href=" http://BuyGenericDi
-- 150.254.171.134 (2012-01-02 15:48:30)
I can't get through at the moment <a href="
-- ec2-107-22-199-240.c (2012-01-02 15:53:29)
We'd like to invite you for an interview <a hre
-- c-24-8-54-146.hsd1.c (2012-01-02 15:54:16)
Who's calling? <a href=" http://www.hatena
-- 91.194.80.29 (2012-01-02 16:44:21)
I'd like to cancel this standing order <a href=
-- ec2-184-72-180-36.co (2012-01-02 16:44:25)
I've got a part-time job <a href=" http://
-- 36.79-160-210.custom (2012-01-02 16:49:11)
Just over two years <a href=" http://www.h
-- 212.28.240.99 (2012-01-02 17:35:34)
http://www.l4kQDD30zNsyoG7pFkTOj6m6mXdUqdwF.com
-- c-24-11-2-42.hsd1.mi (2012-01-02 17:39:53)
I want to report a <a href=" http://BuyDi
-- hst-140-240.telelana (2012-01-02 17:40:11)
Are you a student? <a href=" http://CheapD
-- 12.177.35.98 (2012-01-02 17:44:13)
I'm not sure <a href=" http://WhereCanIBuy
-- 217.111.149.195 (2012-01-02 18:26:52)
Can I take your number? <a href=" http://C
-- 95.131.65.131 (2012-01-02 18:40:09)
Some First Class stamps <a href=" http://B
-- 86.96.226.23 (2012-01-02 19:17:33)
I'll put her on <a href=" http://Clorazepa
-- 222.238.156.247 (2012-01-02 19:31:59)
What company are you calling from? <a href=&quo
-- 4.79.231.188 (2012-01-02 20:08:50)
I live in London <a href=" http://Diazepam
-- 94.26.79.74 (2012-01-02 20:27:48)
What sort of music do you like? <a href="
-- 18983128020.user.vel (2012-01-02 20:53:21)
Could you ask her to call me? <a href=" ht
-- 195.77.36.231 (2012-01-02 20:59:43)
Could you tell me the dialing code for ? <a hre
-- ec2-50-16-220-94.com (2012-01-02 21:23:32)
I'm only getting an answering machine <a href=&
-- skynet.ukoln.ac.uk (2012-01-02 21:50:34)
Which year are you in? <a href=" http://Ca
-- 38.48.214.91.pptp.cu (2012-01-02 22:18:12)
Can I call you back? <a href=" http://Diaz
-- 62.67.234.66 (2012-01-02 22:41:04)
This is your employment contract <a href="
-- zeus.querido.org (2012-01-02 23:10:26)
Have you seen any good films recently? <a href=
-- s15350554.onlinehome (2012-01-02 23:32:05)
I went to <a href=" http://www.hatena.ne.
-- ip68-98-142-209.dc.d (2012-01-03 00:05:02)
A Second Class stamp <a href=" http://baja
-- 203.146.168.65 (2012-01-03 00:23:14)
Could I have , please? <a href=" http://ww
-- 50-57-226-148.static (2012-01-03 00:23:21)
History <a href=" http://LorazepamPrescrip
-- 212.129.66.139 (2012-01-03 00:59:58)
In tens, please (ten pound notes) <a href="
-- skyhqapx02.t.is (2012-01-03 01:15:14)
Recorded Delivery <a href=" http://Lorazep
-- 216-185-4-2.i95.net (2012-01-03 01:56:20)
What's the interest rate on this account? <a hr
-- 193.231.196.41 (2012-01-03 02:07:28)
real beauty page <a href=" http://OrderLor
-- ec2-107-20-161-197.c (2012-01-03 02:52:07)
I'd like to tell you about a change of address <
-- static.235.169.4.46. (2012-01-03 02:59:46)
It's serious <a href=" http://www.gameinfo
-- 1900241244.ip3.stati (2012-01-03 03:48:39)
Will I be paid weekly or monthly? <a href="
-- 82.148.109.68 (2012-01-03 03:52:05)
Is there ? <a href=" http://www.gameinform
-- 212.234.55.160 (2012-01-03 04:44:39)
Another service? <a href=" http://www.game
-- ool-6039b302.static. (2012-01-03 05:37:41)
Could I order a new chequebook, please? <a href
-- 84-16-238-64.interne (2012-01-03 05:42:38)
I'm a trainee <a href=" http://www.gamein
-- 82.148.109.68 (2012-01-03 06:30:27)
Other amount <a href=" http://www.gameinfo
-- cpe-174-097-148-141. (2012-01-03 06:39:42)
I'd like to transfer some money to this account &l
-- 195.209.233.7 (2012-01-03 07:23:22)
Accountant supermarket manager <a href=" h
-- ec2-107-21-100-25.co (2012-01-03 07:36:37)
Free medical insurance <a href=" http://ww
-- ganymed.uxix.de (2012-01-03 08:16:31)
What qualifications have you got? <a href="
-- 82.148.109.68 (2012-01-03 08:34:33)
Lost credit card <a href=" http://www.game
-- smtp.ttml.co.in (2012-01-03 09:10:13)
Have you seen any good films recently? <a href=
-- 79.170.50.116 (2012-01-03 09:31:35)
What's the current interest rate for personal loan
-- ool-ad03157d.dyn.opt (2012-01-03 10:03:43)
Looking for work <a href=" http://www.game
-- host-80-194-71-76.st (2012-01-03 10:29:20)
Is this a temporary or permanent position? <a h
-- cz000121.icewarpclou (2012-01-03 10:56:47)
Excellent work, Nice Design <a href=" http
-- 199.180.128.77 (2012-01-03 11:25:27)
I've just started at <a href=" http://www
-- 64-49-82-11.ny.ny.ev (2012-01-03 11:50:19)
I'm not sure <a href=" http://www.gameinfo
-- ec2-50-16-220-94.com (2012-01-03 12:22:55)
Is there ? <a href=" http://www.gameinform
-- c-98-235-16-96.hsd1. (2012-01-03 12:43:22)
Can I take your number? <a href=" http://w
-- 50.57.28.248 (2012-01-03 13:20:20)
The manager <a href=" http://www.gameinfor
-- 4.79.231.188 (2012-01-03 13:36:22)
What do you do? <a href=" http://www.gamei
-- 187.33.201.231 (2012-01-03 14:17:37)
I've only just arrived <a href=" http://ww
-- 199.180.128.77 (2012-01-03 14:30:04)
What do you want to do when you've finished? <a
-- 202.143.137.29 (2012-01-03 15:14:29)
I'd like to pay this cheque in, please <a href=
-- 91.215.54.17 (2012-01-03 15:22:38)
I've got a full-time job <a href=" http://
-- 212.129.66.139 (2012-01-03 16:11:47)
I can't get a dialling tone <a href=" http
-- 41.223.116.54 (2012-01-03 16:15:01)
Your cash is being counted <a href=" http:
-- 41.223.116.54 (2012-01-03 17:07:35)
Nice to meet you <a href=" http://www.game
-- static.customer-201- (2012-01-03 17:08:06)
I'm not interested in football <a href=" h
-- 194.126.21.7 (2012-01-03 18:00:19)
magic story very thanks <a href=" http://w
-- 194.126.21.7 (2012-01-03 18:04:22)
I came here to work <a href=" http://www.g
-- ec2-184-73-101-60.co (2012-01-03 18:52:50)
An estate agents <a href=" http://www.game
-- mail.nwanaturals.com (2012-01-03 19:01:18)
Canada>Canada <a href=" http://www.game
-- 62.112.131.193 (2012-01-03 19:45:18)
Special Delivery <a href=" http://www.game
-- 212.28.240.101 (2012-01-03 19:57:25)
Very Good Site <a href=" http://www.gamein
-- aicw6kuq.emirates.ne (2012-01-03 20:38:22)
Get a job <a href=" http://www.gameinforme
-- 62.112.131.193 (2012-01-03 20:54:15)
Gloomy tales <a href=" http://www.gameinfo
-- 194.126.21.7 (2012-01-03 21:31:26)
I've come to collect a parcel <a href=" ht
-- 85.9.60.86 (2012-01-03 21:51:04)
A few months <a href=" http://www.gameinfo
-- 177.19.134.66.static (2012-01-03 22:23:04)
No, I'm not particularly sporty <a href="
-- nuo.cn (2012-01-03 22:46:17)
Nice to meet you <a href=" http://www.game
-- aicw6kuq.emirates.ne (2012-01-03 23:15:31)
Excellent work, Nice Design <a href=" http
-- nuo.cn (2012-01-03 23:39:12)
A few months <a href=" http://www.gameinfo
-- 176.196.59.19 (2012-01-04 00:08:35)
I came here to work <a href=" http://www.g
-- 137.251.191.1 (2012-01-04 01:01:08)
I'm in my first year at university <a href=&quo
-- hst-140-240.telelana (2012-01-04 01:32:27)
It's serious <a href=" http://www.gameinfo
-- 90.148.135.164.dynam (2012-01-04 01:54:40)
I'm sorry, I didn't catch your name <a href=&qu
-- 82.148.109.69 (2012-01-04 02:29:32)
What's your number? <a href=" http://www.g
-- aicw6kuq.emirates.ne (2012-01-04 02:48:00)
Very Good Site <a href=" http://www.gamein
-- msrv9a.pollett.co.uk (2012-01-04 03:26:30)
Could you give me some smaller notes? <a href=&
-- bad-muenstereifel.co (2012-01-04 03:41:06)
Free medical insurance <a href=" http://ww
-- 82.148.109.69 (2012-01-04 04:24:14)
An estate agents <a href=" http://www.game
-- 82.148.109.68 (2012-01-04 04:35:07)
Very interesting tale <a href=" http://www
-- server3.tothsoft.hu (2012-01-04 05:21:51)
I'm about to run out of credit <a href=" h
-- 86.96.226.23 (2012-01-04 05:29:10)
Sorry, you must have the wrong number <a href=&
-- 177.19.134.66.static (2012-01-04 06:20:03)
Where do you come from? <a href=" http://w
-- ip-184-168-67-209.ip (2012-01-04 06:23:23)
Stolen credit card <a href=" http://www.ga
-- 195.229.181.251 (2012-01-04 07:17:38)
An estate agents <a href=" http://www.game
-- 82.148.109.69 (2012-01-04 07:18:03)
Would you like to leave a message? <a href=&quo
-- ec2-107-21-12-29.com (2012-01-04 08:12:21)
Could you ask her to call me? <a href=" ht
-- ip248.40.52.176.kzn. (2012-01-04 08:16:13)
In tens, please (ten pound notes) <a href="
-- 82.148.109.68 (2012-01-04 09:07:28)
I want to make a withdrawal <a href=" http
-- 217.150.147.197 (2012-01-04 09:14:32)
I'm a housewife <a href=" http://www.gamei
-- host-91-93-132-210.t (2012-01-04 10:01:55)
I'm originally from Dublin but now live in Edinbur
-- ganymed.uxix.de (2012-01-04 10:12:32)
I'd like to speak to someone about a mortgage <
-- 82.148.109.69 (2012-01-04 10:56:37)
Will I get paid for overtime? <a href=" ht
-- cz000121.icewarpclou (2012-01-04 11:10:53)
Another year <a href=" http://www.gameinfo
-- c-69-143-172-245.hsd (2012-01-04 11:51:39)
I'd like to open an account <a href=" http
-- host-91-93-132-210.t (2012-01-04 12:08:45)
I'm a housewife <a href=" http://www.gamei
-- 50.57.28.248 (2012-01-04 12:46:41)
I can't get a dialling tone <a href=" http
-- 82.148.109.69 (2012-01-04 13:08:00)
Could you tell me the number for ? <a href=&quo
-- static.customer-201- (2012-01-04 13:42:18)
Jonny was here <a href=" http://www.gamein
-- 217.96.70.146 (2012-01-04 14:07:17)
Will I get travelling expenses? <a href="
-- 82.148.109.69 (2012-01-04 14:37:29)
I'd like to take the job <a href=" http://
-- 207.219.7.136 (2012-01-04 15:06:39)
What company are you calling from? <a href=&quo
-- mx-ll-110.164.3-177. (2012-01-04 15:33:56)
In a meeting <a href=" http://www.gameinfo
-- aicw6kuq.emirates.ne (2012-01-04 16:06:08)
This site is crazy :) <a href=" http://www
-- mx-ll-110.164.3-178. (2012-01-04 16:29:04)
Who do you work for? <a href=" http://www.
-- c-24-62-24-219.hsd1. (2012-01-04 17:05:03)
Excellent work, Nice Design <a href=" http
-- 195.229.181.252 (2012-01-04 17:24:19)
I'm only getting an answering machine <a href=&
-- ec2-174-129-101-75.c (2012-01-04 18:03:11)
How would you like the money? <a href=" ht
-- ec2-107-22-199-240.c (2012-01-04 18:18:40)
Who do you work for? <a href=" http://www.
-- 217.150.147.197 (2012-01-04 19:02:38)
How long are you planning to stay here? <a href
-- aicw6kuq.emirates.ne (2012-01-04 19:13:27)
magic story very thanks <a href=" http://w
-- 82.148.109.69 (2012-01-04 20:00:25)
Which university are you at? <a href=" htt
-- nuo.cn (2012-01-04 20:07:39)
Thanks funny site <a href=" http://www.gam
-- server4237.123-serv. (2012-01-04 20:58:43)
Where do you study? <a href=" http://www.g
-- 217.96.70.146 (2012-01-04 21:01:39)
I'd like to transfer some money to this account &l
-- host-186-4-254-195.u (2012-01-04 21:56:34)
I'm in a band <a href=" http://www.gameinf
-- ec2-50-16-220-94.com (2012-01-04 21:57:46)
I'd like to take the job <a href=" http://
-- 78.93.66.178 (2012-01-04 22:50:37)
i'm fine good work <a href=" http://www.ga
-- 63.119.11.20 (2012-01-04 22:54:29)
Looking for work <a href=" http://www.game
-- aicw6kuq.emirates.ne (2012-01-04 23:44:56)
What sort of work do you do? <a href=" htt
-- static.77.171.4.46.c (2012-01-04 23:50:25)
What sort of music do you like? <a href="
-- 212.28.240.99 (2012-01-05 00:40:09)
We'll need to take up references <a href="
-- 78.93.66.178 (2012-01-05 00:49:36)
I'm a partner in <a href=" http://www.gam
-- cz000121.icewarpclou (2012-01-05 01:35:40)
Can I use your phone? <a href=" http://www
-- 41.223.116.54 (2012-01-05 01:48:29)
Do you know what extension he's on? <a href=&qu
-- 200.93.131.2 (2012-01-05 02:30:37)
Other amount <a href=" http://www.gameinfo
-- 213.175.169.130 (2012-01-05 02:47:26)
Gloomy tales <a href=" http://www.gameinfo
-- 217.150.147.197 (2012-01-05 03:26:18)
Can you put it on the scales, please? <a href=&
-- 190.144.147.198 (2012-01-05 03:47:30)
I'll send you a text <a href=" http://www.
-- 127-249-193-199.rdns (2012-01-05 04:22:49)
This site is crazy :) <a href=" http://www
-- static.77.171.4.46.c (2012-01-05 04:47:44)
Not available at the moment <a href=" http
-- ec2-75-101-166-8.com (2012-01-05 05:18:35)
I'm in my first year at university <a href=&quo
-- aicw6kuq.emirates.ne (2012-01-05 05:47:24)
Have you got any ? <a href=" http://www.ga
-- 62.67.234.66 (2012-01-05 06:14:46)
I work for a publishers <a href=" http://w
-- 217.150.147.197 (2012-01-05 06:47:09)
Do you have any exams coming up? <a href="
-- 217.96.70.146 (2012-01-05 07:10:55)
I like watching football <a href=" http://
-- ec2-46-137-170-47.eu (2012-01-05 07:47:20)
Cool site goodluck :) <a href=" http://www
-- droids-ext.ieee.org (2012-01-05 08:07:16)
Have you got a telephone directory? <a href=&qu
-- 64-49-82-11.ny.ny.ev (2012-01-05 08:46:48)
Is this a temporary or permanent position? <a h
-- 57.90.36.29 (2012-01-05 09:04:13)
I'm unemployed <a href=" http://www.gamein
-- 193.231.196.41 (2012-01-05 09:47:36)
I'm on business <a href=" http://www.gamei
-- 86.96.226.23 (2012-01-05 10:02:12)
I saw your advert in the paper <a href=" h
-- 195.209.233.7 (2012-01-05 10:55:22)
I don't like pubs <a href=" http://www.gam
-- 82.148.109.68 (2012-01-05 10:58:16)
Can you hear me OK? <a href=" http://www.g
-- 64-49-82-11.ny.ny.ev (2012-01-05 11:55:00)
I'm sorry, I didn't catch your name <a href=&qu
-- static.turktelekom.c (2012-01-05 11:56:18)
What qualifications have you got? <a href="
-- net.zmaximum.ru (2012-01-05 12:53:02)
I came here to work <a href=" http://www.g
-- c-98-233-167-160.hsd (2012-01-05 12:57:54)
How many would you like? <a href=" http://
-- static.customer-201- (2012-01-05 13:50:45)
It's serious <a href=" http://www.gameinfo
-- yoda.1000moths.com (2012-01-05 13:58:54)
I need to charge up my phone <a href=" htt
-- 1901424834.ip33.stat (2012-01-05 14:48:53)
I'd like to open a business account <a href=&qu
-- c-71-56-25-83.hsd1.g (2012-01-05 15:00:19)
In a meeting <a href=" http://www.gameinfo
-- ip248.40.52.176.kzn. (2012-01-05 15:47:21)
Insufficient funds <a href=" http://www.ga
-- mailhost.sage.fr (2012-01-05 16:01:23)
We've got a joint account <a href=" http:/
-- 202.185.32.12 (2012-01-05 16:45:36)
Pleased to meet you <a href=" http://www.g
-- static.72.1.9.176.cl (2012-01-05 17:03:04)
I'm doing an internship <a href=" http://w
-- c-68-37-55-128.hsd1. (2012-01-05 17:43:50)
How much will it cost to send this letter to ? <
-- mx-ll-110.164.3-166. (2012-01-05 18:04:56)
We need someone with experience <a href="
-- 82.148.109.68 (2012-01-05 18:41:42)
Do you know what extension he's on? <a href=&qu
-- cz000121.icewarpclou (2012-01-05 19:06:25)
perfect design thanks <a href=" http://www
-- c-69-136-71-25.hsd1. (2012-01-05 19:39:50)
I'm doing a masters in law <a href=" http:
-- static.198.239.9.176 (2012-01-05 20:07:19)
A Second Class stamp <a href=" http://www.
-- hosting-ip.business- (2012-01-05 20:37:22)
Where do you come from? <a href=" http://w
-- 94.26.79.74 (2012-01-05 21:07:54)
Could you ask her to call me? <a href=" ht
-- 86.96.226.23 (2012-01-05 21:34:29)
One moment, please <a href=" http://www.ga
-- 62.67.234.66 (2012-01-05 22:10:00)
Will I have to work on Saturdays? <a href="
-- static.77.171.4.46.c (2012-01-05 22:31:21)
Insert your card <a href=" http://www.game
-- 195.68.152.60 (2012-01-05 23:08:34)
Please call back later <a href=" http://ww
-- cz000121.icewarpclou (2012-01-05 23:28:34)
I've been made redundant <a href=" http://
-- 201.7.143.34 (2012-01-06 00:08:46)
I read a lot <a href=" http://www.gameinfo
-- 176.196.59.19 (2012-01-06 00:26:52)
What sort of music do you like? <a href="
-- ip-86-110-191-54.spa (2012-01-06 01:11:17)
There's a three month trial period <a href=&quo
-- 89.252.9.243.freenet (2012-01-06 01:25:14)
Have you got a current driving licence? <a href
-- server60-chl.it.net (2012-01-06 02:13:17)
What's the last date I can post this to to arrive
-- ip248.40.52.176.kzn. (2012-01-06 02:24:01)
I've been made redundant <a href=" http://
-- ec2-46-137-170-47.eu (2012-01-06 03:15:46)
Can you put it on the scales, please? <a href=&
-- 213.175.169.130 (2012-01-06 03:23:46)
I'm interested in <a href=" http://www.ga
-- 14.139.60.213 (2012-01-06 04:17:00)
Canada>Canada <a href=" http://www.game
-- 195.82.150.19.interf (2012-01-06 04:21:38)
I'd like to transfer some money to this account &l
-- static.72.1.9.176.cl (2012-01-06 05:18:43)
Who's calling? <a href=" http://www.gamein
-- mailhost.sage.fr (2012-01-06 05:19:38)
How much will it cost to send this letter to ? <
-- mailhost.sage.fr (2012-01-06 06:18:25)
We'll need to take up references <a href="
-- svn.intrak.upjs.sk (2012-01-06 06:20:46)
Thanks funny site <a href=" http://www.gam
-- 82-117-252-87.gpon.d (2012-01-06 08:10:35)
How long are you planning to stay here? <a href
-- 79.170.50.116 (2012-01-06 08:26:00)
I'm on business <a href=" http://www.gamei
-- 57.90.36.29 (2012-01-06 09:09:42)
Will I be paid weekly or monthly? <a href="
-- static.72.1.9.176.cl (2012-01-06 09:26:41)
Another service? <a href=" http://www.game
-- c-24-126-172-48.hsd1 (2012-01-06 10:08:03)
Sorry, I'm busy at the moment <a href=" ht
-- 82.148.109.68 (2012-01-06 10:28:05)
I work for myself <a href=" http://www.gam
-- 100-013-066-080.egge (2012-01-06 11:05:52)
Do you need a work permit? <a href=" http:
-- 50.57.28.248 (2012-01-06 11:29:50)
What do you want to do when you've finished? <a
-- 176.196.59.19 (2012-01-06 12:04:28)
Could you send me an application form? <a href=
-- ip72-201-29-176.ph.p (2012-01-06 12:13:58)
Looking for work <a href=" http://www.feed
-- vps.sef.cc (2012-01-06 12:31:04)
I'd like to pay this cheque in, please <a href=
-- 91.215.54.17 (2012-01-06 13:02:39)
I need to charge up my phone <a href=" htt
-- 46.29.255.47 (2012-01-06 13:32:31)
Thanks for calling <a href=" http://www.ga
-- host-ip163-210-249-8 (2012-01-06 14:01:17)
I live in London <a href=" http://www.feed
-- bgp6.unet.ws (2012-01-06 14:34:45)
Yes, I play the guitar <a href=" http://ww
-- cm-84.208.197.187.ge (2012-01-06 14:59:57)
Nice to meet you <a href=" http://www.feed
-- 14.139.60.213 (2012-01-06 15:36:58)
What's your number? <a href=" http://www.g
-- 190.66.17.53 (2012-01-06 15:58:38)
What's the interest rate on this account? <a hr
-- 208.43.125.100-stati (2012-01-06 16:00:22)
Can you hear me OK? <a href=" http://www.f
-- 217.96.70.146 (2012-01-06 16:38:59)
Please call back later <a href=" http://ww
-- 84.237.33.3 (2012-01-06 16:57:44)
I'm about to run out of credit <a href=" h
-- c-69-136-71-25.hsd1. (2012-01-06 17:41:36)
Very interesting tale <a href=" http://www
-- 96.22.185.146.in-add (2012-01-06 17:56:47)
Children with disabilities <a href=" http:
-- eumetcal-ext1.enm.me (2012-01-06 18:44:29)
A staff restaurant <a href=" http://www.ga
-- ppp-195-222-83-75.pe (2012-01-06 18:55:41)
I can't hear you very well <a href=" http:
-- svn.intrak.upjs.sk (2012-01-06 19:45:19)
In tens, please (ten pound notes) <a href="
-- zebra678.server4you. (2012-01-06 19:46:34)
I'm on a course at the moment <a href=" ht
-- 89-162-67-22.fiber.s (2012-01-06 19:53:23)
good material thanks <a href=" http://www.
-- 91.215.54.17 (2012-01-06 20:48:17)
I was born in Australia but grew up in England <
-- bgp6.unet.ws (2012-01-06 20:51:42)
The United States <a href=" http://www.fee
-- 195.16.49.214 (2012-01-06 21:49:46)
I'm only getting an answering machine <a href=&
-- ip248.40.52.176.kzn. (2012-01-06 21:50:26)
Have you got any qualifications? <a href="
-- host-91-93-132-210.t (2012-01-06 22:47:36)
Sorry, I ran out of credit <a href=" http:
-- aicw6kuq.emirates.ne (2012-01-06 22:51:21)
In a meeting <a href=" http://ufamyheap.fo
-- ip-241-46.datautama. (2012-01-06 23:28:44)
I live here <a href=" http://www.feedage.c
-- 195.16.49.214 (2012-01-06 23:45:43)
I went to <a href=" http://www.feedage.co
-- host-91-195-134-12.l (2012-01-06 23:51:12)
Have you got a current driving licence? <a href
-- 82.148.109.69 (2012-01-07 00:44:33)
I never went to university <a href=" http:
-- 82.148.109.68 (2012-01-07 00:54:35)
Can I take your number? <a href=" http://w
-- 94.185.84.19 (2012-01-07 01:44:19)
Have you got a telephone directory? <a href=&qu
-- host-91-195-134-12.l (2012-01-07 01:57:36)
What's the interest rate on this account? <a hr
-- aicw6kuq.emirates.ne (2012-01-07 02:44:09)
I'm training to be an engineer <a href=" h
-- 82.148.109.69 (2012-01-07 03:00:37)
A jiffy bag <a href=" http://isanupiej.for
-- 117.79.235.90 (2012-01-07 03:12:30)
I'll send you a text <a href=" http://www.
-- dynamicip-88-147-46- (2012-01-07 03:42:52)
I've been made redundant <a href=" http://
-- mx-ll-110.164.3-178. (2012-01-07 04:41:52)
Withdraw cash <a href=" http://www.feedage
-- 84.237.33.3 (2012-01-07 05:05:00)
About a year <a href=" http://www.feedage.
-- 96.22.185.146.in-add (2012-01-07 05:41:29)
An accountancy practice <a href=" http://w
-- 78.93.66.178 (2012-01-07 06:07:55)
What's the last date I can post this to to arrive
-- 82.148.109.69 (2012-01-07 06:40:55)
Do you play any instruments? <a href=" htt
-- 79.120.62.98 (2012-01-07 06:55:37)
We went to university together <a href=" h
-- 213.129.127.92 (2012-01-07 07:10:38)
I'd like some euros <a href=" http://www.f
-- 213.129.127.92 (2012-01-07 07:40:10)
The manager <a href=" http://www.feedage.c
-- static.72.1.9.176.cl (2012-01-07 08:12:26)
How much is a Second Class stamp? <a href="
-- 82.148.109.69 (2012-01-07 08:39:11)
Do you know what extension he's on? <a href=&qu
-- 57.90.36.29 (2012-01-07 09:14:10)
It's funny goodluck <a href=" http://www.f
-- cable190-248-67-138. (2012-01-07 09:38:50)
Is it convenient to talk at the moment? <a href
-- 86.96.226.23 (2012-01-07 10:16:06)
Who's calling? <a href=" http://odufekyhy.
-- static.customer-201- (2012-01-07 10:34:14)
I'm a housewife <a href=" http://www.feeda
-- 195.209.233.7 (2012-01-07 10:38:13)
Jonny was here <a href=" http://www.feedag
-- 86.96.226.23 (2012-01-07 11:18:51)
We'll need to take up references <a href="
-- 95.139.86.109.triola (2012-01-07 11:37:09)
Could I have , please? <a href=" http://ww
-- 218.211.38.242 (2012-01-07 12:20:28)
It's a bad line <a href=" http://www.feeda
-- aicw6kuq.emirates.ne (2012-01-07 12:35:49)
Which team do you support? <a href=" http:
-- 41.158.128.180 (2012-01-07 13:22:17)
I'd like to cancel this standing order <a href=
-- ip248.40.52.176.kzn. (2012-01-07 13:35:11)
Can I take your number? <a href=" http://q
-- 201.7.143.34 (2012-01-07 14:07:38)
Could I have , please? <a href=" http://ww
-- aicw6kuq.emirates.ne (2012-01-07 14:24:51)
We'd like to offer you the job <a href=" h
-- securebox.bomlo.komm (2012-01-07 14:33:52)
How many weeks' holiday a year are there? <a hr
-- 188.122.238.238 (2012-01-07 15:27:29)
I really like swimming <a href=" http://ww
-- mx-ll-110.164.3-178. (2012-01-07 15:32:49)
I'm on a course at the moment <a href=" ht
-- 189.126.254.16 (2012-01-07 16:20:58)
We've got a joint account <a href=" http:/
-- 213.234.239.90 (2012-01-07 16:29:19)
Cool site goodluck :) <a href=" http://www
-- 82.148.109.68 (2012-01-07 16:31:00)
What's the last date I can post this to to arrive
-- securebox.bomlo.komm (2012-01-07 17:29:27)
I'm happy very good site <a href=" http://
-- securebox.bomlo.komm (2012-01-07 17:31:16)
Languages <a href=" http://nopylymeb.forum
-- ool-ad020139.dyn.opt (2012-01-07 17:39:37)
Do you play any instruments? <a href=" htt
-- 208.91.59.65 (2012-01-07 17:59:03)
A company car <a href=" http://www.feedage
-- 82.148.109.69 (2012-01-07 18:29:24)
History <a href=" http://www.feedage.com/u
-- 82.148.109.68 (2012-01-07 18:33:08)
What part of do you come from? <a href="
-- xxxdnn1168.locaweb.c (2012-01-07 19:35:18)
Do you like it here? <a href=" http://www.
-- mx-ll-110.164.3-179. (2012-01-07 19:35:24)
I'm on holiday <a href=" http://www.feedag
-- pd956bc29.dip0.t-ipc (2012-01-07 20:26:53)
I have my own business <a href=" http://ww
-- messaging.answerx.ne (2012-01-07 20:37:15)
real beauty page <a href=" http://www.free
-- mx-ll-110.164.3-180. (2012-01-07 21:09:07)
Could I order a new chequebook, please? <a href
-- 38.115.17.123 (2012-01-07 21:12:57)
I've got a very weak signal <a href=" http
-- 82.148.109.69 (2012-01-07 21:26:05)
I'm in my first year at university <a href=&quo
-- 95-27-99-121.broadba (2012-01-07 21:40:12)
I have my own business <a href=" http://ww
-- 62.112.131.193 (2012-01-07 22:25:19)
I'm on work experience <a href=" http://ww
-- ec2-107-20-161-197.c (2012-01-07 22:42:07)
An estate agents <a href=" http://www.free
-- 14.139.60.213 (2012-01-07 22:45:45)
I'll put him on <a href=" http://www.feeda
-- aicw6kuq.emirates.ne (2012-01-07 23:24:47)
A First Class stamp <a href=" http://www.f
-- vps.sef.cc (2012-01-07 23:41:43)
Another service? <a href=" http://www.free
-- keijyudog.keiju.co.j (2012-01-08 00:23:40)
I quite like cooking <a href=" http://www.
-- higgs.intrak.upjs.sk (2012-01-08 00:24:15)
Best Site Good Work <a href=" http://www.f
-- 41.158.128.180 (2012-01-08 00:44:15)
Do you have any exams coming up? <a href="
-- 197-133-212-190.enit (2012-01-08 00:46:46)
Some First Class stamps <a href=" http://w
-- 41.158.128.180 (2012-01-08 01:23:08)
i'm fine good work <a href=" http://www.fe
-- 84-52-86-10.westcall (2012-01-08 01:46:44)
What do you study? <a href=" http://www.fr
-- lord.uz.zgora.pl (2012-01-08 02:00:04)
This site is crazy :) <a href=" http://www
-- 212.23.70.186 (2012-01-08 02:23:37)
We need someone with experience <a href="
-- 41.190.16.17 (2012-01-08 02:48:36)
Is it convenient to talk at the moment? <a href
-- host-109-171-61-175. (2012-01-08 03:23:22)
What do you want to do when you've finished? <a
-- 1900241244.ip3.stati (2012-01-08 03:49:27)
I've got a very weak signal <a href=" http
-- fdp.fvds.ru (2012-01-08 04:18:33)
I'm retired <a href=" http://www.feedage.c
-- static.77.171.4.46.c (2012-01-08 04:23:28)
Three years <a href=" http://www.feedage.c
-- 82.148.109.68 (2012-01-08 04:52:19)
In a meeting <a href=" http://www.freedriv
-- 190.66.17.53 (2012-01-08 05:15:22)
I'm doing a phd in chemistry <a href=" htt
-- mx-ll-110.164.3-166. (2012-01-08 05:23:16)
Your account's overdrawn <a href=" http://
-- 62.67.234.66 (2012-01-08 05:55:37)
How many days will it take for the cheque to clear
-- 79.170.50.74 (2012-01-08 06:24:02)
On another call <a href=" http://www.freed
-- 71-13-82-116.static. (2012-01-08 06:55:06)
I'd like to pay this in, please <a href="
-- 82.148.109.69 (2012-01-08 06:59:41)
I'm only getting an answering machine <a href=&
-- 177.19.134.66.static (2012-01-08 07:24:45)
How do you spell that? <a href=" http://je
-- Gillian-Oil-Co.STATA (2012-01-08 07:53:48)
A Second Class stamp <a href=" http://www.
-- ns25671.ovh.net (2012-01-08 08:03:30)
I'm about to run out of credit <a href=" h
-- 62.67.234.66 (2012-01-08 08:25:28)
Where do you study? <a href=" http://www.f
-- 119247154062.ctinets (2012-01-08 08:35:37)
International directory enquiries <a href="
-- 213.175.169.130 (2012-01-08 09:07:29)
A company car <a href=" http://www.feedage
-- messaging.answerx.ne (2012-01-08 09:26:19)
A First Class stamp <a href=" http://www.f
-- nuo.cn (2012-01-08 10:11:51)
I'll put her on <a href=" http://www.freed
-- e0-0.wtt103.imsbiz.c (2012-01-08 10:14:41)
I sing in a choir <a href=" http://www.fee
-- 94.231.162.209 (2012-01-08 11:15:53)
I'd like to cancel this standing order <a href=
-- 46.29.255.47 (2012-01-08 11:28:47)
Could you send me an application form? <a href=
-- 193.194.85.94 (2012-01-08 11:30:03)
I'm unemployed <a href=" http://www.freedr
-- 193.194.85.94 (2012-01-08 11:55:14)
How long are you planning to stay here? <a href
-- c-24-3-235-226.hsd1. (2012-01-08 12:20:39)
What do you study? <a href=" http://www.fe
-- ec2-46-137-170-47.eu (2012-01-08 12:29:28)
Are you a student? <a href=" http://www.fe
-- c-68-81-247-80.hsd1. (2012-01-08 13:23:03)
Where's the postbox? <a href=" http://www.
-- 38.115.17.123 (2012-01-08 13:29:28)
very best job <a href=" http://www.freedri
-- c-76-115-157-170.hsd (2012-01-08 13:34:25)
Could I make an appointment to see ? <a href=&q
-- 184.171.175.24 (2012-01-08 14:30:31)
A law firm <a href=" http://www.feedage.co
-- aicw6kuq.emirates.ne (2012-01-08 14:31:30)
I like watching TV <a href=" http://www.fr
-- 122.180.195.200.stat (2012-01-08 15:12:17)
I have my own business <a href=" http://fe
-- 175.136.233.76 (2012-01-08 15:13:41)
What sort of music do you listen to? <a href=&q
-- fdp.fvds.ru (2012-01-08 15:30:29)
Best Site Good Work <a href=" http://www.f
-- 82.148.109.69 (2012-01-08 15:34:43)
I live here <a href=" http://www.freedrive
-- 203.177.115.3 (2012-01-08 16:27:48)
Until August <a href=" http://www.feedage.
-- messaging.answerx.ne (2012-01-08 16:29:55)
When can you start? <a href=" http://www.f
-- 95-65-27-202.starnet (2012-01-08 16:37:22)
Why did you come to ? <a href=" http://www
-- robitaks2.convex.ru (2012-01-08 17:30:09)
Hold the line, please <a href=" http://www
-- 79.170.50.116 (2012-01-08 17:40:38)
A company car <a href=" http://www.freedri
-- mail.cropp.hu (2012-01-08 17:43:42)
Yes, I love it! <a href=" http://www.feeda
-- vps.sef.cc (2012-01-08 18:30:25)
What qualifications have you got? <a href="
-- c-98-220-222-24.hsd1 (2012-01-08 18:44:05)
It's funny goodluck <a href=" http://ybuen
-- c-67-162-73-86.hsd1. (2012-01-08 18:58:20)
How much notice do you have to give? <a href=&q
-- AES-Static-037.100.2 (2012-01-08 19:00:01)
I'm sorry, I'm not interested <a href=" ht
-- ec2-107-22-40-76.com (2012-01-08 19:30:20)
Gloomy tales <a href=" http://www.feedage.
-- 38.115.17.123 (2012-01-08 19:47:34)
Thanks for calling <a href=" http://www.fr
-- c-24-10-119-44.hsd1. (2012-01-08 20:16:26)
A jiffy bag <a href=" http://www.feedage.c
-- 79.170.50.116 (2012-01-08 20:51:08)
Yes, I play the guitar <a href=" http://ww
-- aicw6kuq.emirates.ne (2012-01-08 21:29:10)
We'll need to take up references <a href="
-- s4.40.clients.server (2012-01-08 21:32:26)
I do some voluntary work <a href=" http://
-- 38.115.17.123 (2012-01-08 21:54:35)
What line of work are you in? <a href=" ht
-- rps7100.ovh.net (2012-01-08 22:28:45)
Is this a temporary or permanent position? <a h
-- 89-162-67-22.fiber.s (2012-01-08 22:37:16)
Pleased to meet you <a href=" http://www.f
-- hn.kd.dhcp (2012-01-08 22:48:02)
Do you play any instruments? <a href=" htt
-- host-201-218-63-174. (2012-01-08 22:56:42)
Can I call you back? <a href=" http://www.
-- 41.158.128.180 (2012-01-08 23:30:05)
I'd like some euros <a href=" http://www.f
-- 95.211.45.66 (2012-01-08 23:57:56)
Could you tell me the dialing code for ? <a hre
-- rps7100.ovh.net (2012-01-09 00:04:20)
I'd like to open a personal account <a href=&qu
-- 84.237.33.3 (2012-01-09 00:30:15)
Do you know the address? <a href=" http://
-- 95-65-27-202.starnet (2012-01-09 01:01:35)
What sort of work do you do? <a href=" htt
-- 46.29.255.47 (2012-01-09 01:22:08)
What do you study? <a href=" http://www.fe
-- www.oc.hu (2012-01-09 01:31:26)
We'd like to invite you for an interview <a hre
-- 62.67.234.66 (2012-01-09 02:04:25)
I work for a publishers <a href=" http://o
-- 218.17.167.170 (2012-01-09 02:18:49)
I love the theatre <a href=" http://www.fe
-- 4.79.231.188 (2012-01-09 02:32:03)
I work for a publishers <a href=" http://w
-- host-91-93-132-210.t (2012-01-09 02:40:13)
A Second Class stamp <a href=" http://www.
-- nuo.cn (2012-01-09 03:08:23)
Could I take your name and number, please? <a h
-- mx-ll-110.164.3-166. (2012-01-09 03:33:17)
I like watching TV <a href=" http://www.fr
-- www32282u.sakura.ne. (2012-01-09 03:57:14)
An accountancy practice <a href=" http://w
-- aicw6kuq.emirates.ne (2012-01-09 04:10:54)
Do you have any exams coming up? <a href="
-- 4.79.231.188 (2012-01-09 04:33:52)
The manager <a href=" http://www.feedage.c
-- 41.158.128.180 (2012-01-09 05:13:58)
Sorry, I ran out of credit <a href=" http:
-- ns1.vajiravudh.com (2012-01-09 05:14:39)
Special Delivery <a href=" http://www.feed
-- 82.148.109.69 (2012-01-09 05:35:37)
I work for a publishers <a href=" http://e
-- 88-202-124-121.ip.sk (2012-01-09 06:00:35)
Directory enquiries <a href=" http://www.f
-- 195.229.181.251 (2012-01-09 06:18:54)
How many more years do you have to go? <a href=
-- 210.104.182.73 (2012-01-09 06:32:19)
I can't get a dialling tone <a href=" http
-- aicw6kuq.emirates.ne (2012-01-09 06:37:17)
I've just graduated <a href=" http://www.f
-- www.oc.hu (2012-01-09 07:24:09)
I'd like to apply for this job <a href=" h
-- 14.139.60.213 (2012-01-09 07:39:24)
Special Delivery <a href=" http://www.free
-- 63.223.113.224 (2012-01-09 07:52:21)
Could I have , please? <a href=" http://ww
-- 41.158.128.180 (2012-01-09 08:28:08)
It's serious <a href=" http://www.feedage.
-- 95.211.45.66 (2012-01-09 08:41:03)
I'm interested in <a href=" http://www.fr
-- 201.7.143.34 (2012-01-09 09:09:20)
I'd like some euros <a href=" http://www.f
-- 91.215.54.17 (2012-01-09 09:33:50)
Get a job <a href=" http://www.feedage.com
-- 82.148.109.69 (2012-01-09 09:43:03)
How long have you lived here? <a href=" ht
-- 88-202-124-121.ip.sk (2012-01-09 09:45:00)
Pleased to meet you <a href=" http://www.f
-- www34033u.sakura.ne. (2012-01-09 10:27:52)
Sorry, I ran out of credit <a href=" http:
-- skyhqapx02.t.is (2012-01-09 10:38:38)
How do you do? <a href=" http://www.feedag
-- 100-013-066-080.egge (2012-01-09 10:44:35)
I love this site <a href=" http://www.feed
-- 41.158.128.180 (2012-01-09 11:44:06)
Thanks funny site <a href=" http://www.fre
-- 114.255.122.16 (2012-01-09 11:44:44)
Where do you live? <a href=" http://www.fe
-- 213.175.169.130 (2012-01-09 11:45:57)
It's serious <a href=" http://www.feedage.
-- host-186-4-254-195.u (2012-01-09 12:46:46)
I'm on holiday <a href=" http://www.feedag
-- c155-087.blackberry. (2012-01-09 12:48:47)
I'll call back later <a href=" http://www.
-- 117.79.235.90 (2012-01-09 13:01:01)
Stolen credit card <a href=" http://iqecok
-- 24-159-188-247.dhcp. (2012-01-09 13:25:22)
I'd like to send this parcel to <a href="
-- 114.198.233.50 (2012-01-09 13:48:00)
Could I have an application form? <a href="
-- 118.107.173.79.pntl. (2012-01-09 13:52:45)
A pension scheme <a href=" http://www.free
-- ip-216-115-145-49.st (2012-01-09 14:18:13)
I work for myself <a href=" http://www.fee
-- eportal.sandon.essex (2012-01-09 14:48:44)
I'm a trainee <a href=" http://www.feedag
-- ip-173-201-179-19.ip (2012-01-09 14:55:59)
I'm doing an internship <a href=" http://w
-- 14.139.60.213 (2012-01-09 15:34:40)
A Second Class stamp <a href=" http://www.
-- 82.148.109.69 (2012-01-09 15:49:45)
I'm not sure <a href=" http://www.feedage.
-- host-91-93-132-210.t (2012-01-09 16:50:41)
In tens, please (ten pound notes) <a href="
-- 14.139.60.213 (2012-01-09 16:51:56)
I can't get a signal <a href=" http://www.
-- aicw6kuq.emirates.ne (2012-01-09 17:03:48)
What sort of music do you listen to? <a href=&q
-- 96-24-144-94.chi.cle (2012-01-09 17:06:06)
good material thanks <a href=" http://www.
-- c-98-255-18-42.hsd1. (2012-01-09 17:52:20)
We used to work together <a href=" http://
-- 82.148.109.69 (2012-01-09 18:07:48)
I've lost my bank card <a href=" http://ww
-- 217.96.70.146 (2012-01-09 18:08:32)
Sorry, I ran out of credit <a href=" http:
-- 188.122.238.238 (2012-01-09 18:52:48)
What's the last date I can post this to to arrive
-- mx-ll-110.164.3-177. (2012-01-09 19:11:48)
How much notice do you have to give? <a href=&q
-- 78.93.66.178 (2012-01-09 19:24:36)
Will I get paid for overtime? <a href=" ht
-- 196-200-126.isnigeri (2012-01-09 19:54:36)
I sing in a choir <a href=" http://www.fee
-- 86.96.226.23 (2012-01-09 20:16:37)
very best job <a href=" http://www.freedri
-- d149-67-250-148.col. (2012-01-09 20:41:55)
Which year are you in? <a href=" http://my
-- 213.203.196.230 (2012-01-09 20:50:25)
I'm on holiday <a href=" http://www.feedag
-- 190.66.17.53 (2012-01-09 20:55:24)
I'm a housewife <a href=" http://www.feeda
-- host-207.249.9.114.i (2012-01-09 21:20:50)
I love this site <a href=" http://www.feed
-- mx-ll-110.164.3-166. (2012-01-09 21:56:53)
I'm afraid that number's ex-directory <a href=&
-- 57.90.36.29 (2012-01-09 21:57:40)
Directory enquiries <a href=" http://www.f
-- 82.148.109.68 (2012-01-09 22:26:02)
Go travelling <a href=" http://www.feedage
-- 82.148.109.68 (2012-01-09 22:58:12)
What's the interest rate on this account? <a hr
-- 41.160.29.62 (2012-01-09 23:15:36)
I'd like to send this parcel to <a href="
-- 82.148.109.69 (2012-01-09 23:28:54)
Not in at the moment <a href=" http://www.
-- 217.150.147.197 (2012-01-10 00:00:35)
I can't get through at the moment <a href="
-- oporaservice.ru (2012-01-10 00:33:25)
Have you read any good books lately? <a href=&q
-- static.turktelekom.c (2012-01-10 00:34:16)
What are the hours of work? <a href=" http
-- 193.194.85.94 (2012-01-10 00:34:33)
I'd like to apply for this job <a href=" h
-- aicw6kuq.emirates.ne (2012-01-10 01:03:20)
Why did you come to ? <a href=" http://www
-- 195.229.181.251 (2012-01-10 01:38:26)
Have you got a telephone directory? <a href=&qu
-- c-98-255-18-42.hsd1. (2012-01-10 01:51:59)
What line of work are you in? <a href=" ht
-- 91.215.54.17 (2012-01-10 02:05:08)
It's OK <a href=" http://www.feedage.com/u
-- c-98-255-18-42.hsd1. (2012-01-10 02:43:39)
Best Site good looking <a href=" http://ww
-- host-91-93-132-210.t (2012-01-10 03:07:25)
Yes, I love it! <a href=" http://www.feeda
-- ool-18e4bca2.dyn.opt (2012-01-10 03:48:37)
We went to university together <a href=" h
-- cable190-248-67-138. (2012-01-10 04:09:29)
We used to work together <a href=" http://
-- 112.196.4.168 (2012-01-10 04:19:52)
Have you got a telephone directory? <a href=&qu
-- 91.215.54.17 (2012-01-10 04:54:04)
I stay at home and look after the children <a h
-- static.72.1.9.176.cl (2012-01-10 05:12:38)
Get a job <a href=" http://www.freedrive.c
-- li260-177.members.li (2012-01-10 05:26:43)
What line of work are you in? <a href=" ht
-- 80.251.133.163 (2012-01-10 06:00:22)
I'm not working at the moment <a href=" ht
-- 41.190.16.17 (2012-01-10 06:15:34)
Where do you study? <a href=" http://www.f
-- 186.238.48.8 (2012-01-10 06:45:30)
I need to charge up my phone <a href=" htt
-- business-89-135-190- (2012-01-10 07:06:49)
Accountant supermarket manager <a href=" h
-- 114.198.233.199 (2012-01-10 07:18:32)
I like watching football <a href=" http://
-- 1901424834.ip33.stat (2012-01-10 08:04:08)
Canada>Canada <a href=" http://www.free
-- 177.19.134.66.static (2012-01-10 08:04:48)
I'm a member of a gym <a href=" http://www
-- 96-37-132-26.static. (2012-01-10 08:12:45)
i'm fine good work <a href=" http://www.fe
-- 82.148.109.69 (2012-01-10 08:21:03)
History <a href=" http://www.feedage.com/u
-- oporaservice.ru (2012-01-10 09:18:06)
Can I take your number? <a href=" http://w
-- 62.112.131.193 (2012-01-10 09:23:25)
Your account's overdrawn <a href=" http://
-- 78.31.200.90 (2012-01-10 09:23:38)
What company are you calling from? <a href=&quo
-- 1900241244.ip3.stati (2012-01-10 10:24:06)
Withdraw cash <a href=" http://www.feedage
-- skyhqapx02.t.is (2012-01-10 10:26:10)
Could I have a statement, please? <a href="
-- mx-ll-110.164.3-166. (2012-01-10 10:41:39)
How much is a First Class stamp? <a href="
-- 82.148.109.69 (2012-01-10 11:29:43)
Can you hear me OK? <a href=" http://www.f
-- 193.194.85.94 (2012-01-10 11:30:43)
I'm training to be an engineer <a href=" h
-- c-174-49-81-100.hsd1 (2012-01-10 11:49:11)
Photography <a href=" http://www.freedrive
-- mx-ll-110.164.3-168. (2012-01-10 11:58:27)
What's the last date I can post this to to arrive
-- 41.190.16.17 (2012-01-10 12:32:41)
I'm on holiday <a href=" http://www.feedag
-- 173.192.89.64-static (2012-01-10 12:36:38)
How do I get an outside line? <a href=" ht
-- 109-140.97-97.tampab (2012-01-10 13:13:19)
I'm doing a phd in chemistry <a href=" htt
-- 217.96.70.146 (2012-01-10 13:34:36)
I can't hear you very well <a href=" http:
-- 217.150.147.197 (2012-01-10 13:42:17)
How do you do? <a href=" http://www.freedr
-- email2.comunicacaodi (2012-01-10 14:30:33)
I'd like some euros <a href=" http://www.f
-- 8-154-226-194.ur.ru (2012-01-10 14:36:07)
How long are you planning to stay here? <a href
-- c-68-81-23-39.hsd1.n (2012-01-10 14:46:50)
Please wait <a href=" http://cicioyg.forum
-- 27.2.0.47 (2012-01-10 15:34:17)
I'd like to withdraw $100, please <a href="
-- securebox.bomlo.komm (2012-01-10 15:37:25)
I'll put her on <a href=" http://www.freed
-- omega.gumed.edu.pl (2012-01-10 15:47:21)
Will I be paid weekly or monthly? <a href="
-- 14.139.60.213 (2012-01-10 15:51:06)
I'd like to open a personal account <a href=&qu
-- 190.144.147.198 (2012-01-10 16:38:27)
I'm not working at the moment <a href=" ht
-- 200.93.131.2 (2012-01-10 16:55:31)
I can't get a dialling tone <a href=" http
-- 95-65-27-202.starnet (2012-01-10 17:39:58)
I'm a housewife <a href=" http://www.feeda
-- 188.122.238.238 (2012-01-10 17:59:34)
An accountancy practice <a href=" http://w
-- www.oc.hu (2012-01-10 18:41:32)
Do you know the number for ? <a href=" htt
-- mx-ll-110.164.3-177. (2012-01-10 19:03:57)
Remove card <a href=" http://egetuij.forum
-- c-174-55-119-203.hsd (2012-01-10 19:18:16)
Three years <a href=" http://www.feedage.c
-- c-69-137-194-242.hsd (2012-01-10 19:43:21)
I'll put her on <a href=" http://www.feeda
-- 86.96.226.23 (2012-01-10 20:09:01)
Would you like a receipt? <a href=" http:/
-- 95-31-20-162.broadba (2012-01-10 20:44:29)
Have you got a current driving licence? <a href
-- 38.48.214.91.pptp.cu (2012-01-10 21:46:18)
Could you tell me the dialing code for ? <a hre
-- 82.148.109.68 (2012-01-10 22:17:53)
I love the theatre <a href=" http://www.fe
-- s4.40.clients.server (2012-01-10 22:47:35)
Could you ask him to call me? <a href=" ht
-- 149.250.245.156 (2012-01-10 23:01:37)
I'd like to withdraw $100, please <a href="
-- static-88.213.67.22. (2012-01-10 23:21:07)
I'm not interested in football <a href=" h
-- 78.93.66.178 (2012-01-10 23:49:43)
I'm sorry, he's <a href=" http://www.feed
-- 212.45.5.172 (2012-01-11 00:25:30)
Who do you work for? <a href=" http://www.
-- 57.90.36.29 (2012-01-11 00:52:26)
I'd like to send this to <a href=" http:/
-- mx-ll-110.164.3-182. (2012-01-11 01:31:18)
I'm sorry, I didn't catch your name <a href=&qu
-- 1900241244.ip3.stati (2012-01-11 01:55:06)
Very Good Site <a href=" http://www.feedag
-- skyhqapx02.t.is (2012-01-11 02:37:15)
I'm a member of a gym <a href=" http://apu
-- 211.157.104.92 (2012-01-11 02:46:56)
I came here to study <a href=" http://www.
-- 94.26.79.74 (2012-01-11 02:57:59)
I'm in my first year at university <a href=&quo
-- 236.187.0.95.static. (2012-01-11 03:42:33)
We'll need to take up references <a href="
-- 178.213.28.2 (2012-01-11 03:59:39)
One moment, please <a href=" http://www.fe
-- static-46-240-64-90. (2012-01-11 04:48:58)
Can I use your phone? <a href=" http://www
-- n217-115-145-35.dedi (2012-01-11 05:02:18)
How much notice do you have to give? <a href=&q
-- aicw6kuq.emirates.ne (2012-01-11 05:55:51)
Insufficient funds <a href=" http://www.fe
-- 1900241244.ip3.stati (2012-01-11 06:05:01)
An envelope <a href=" http://www.freedrive
-- mail.phpinfo.hu (2012-01-11 06:32:59)
The line's engaged <a href=" http://ahonyj
-- aicw6kuq.emirates.ne (2012-01-11 06:34:00)
I'm self-employed <a href=" http://www.fee
-- 77.240.147.214 (2012-01-11 07:01:37)
I'm unemployed <a href=" http://www.feedag
-- 70.38.110.43 (2012-01-11 07:07:54)
Which team do you support? <a href=" http:
-- oporaservice.ru (2012-01-11 07:52:01)
I enjoy travelling <a href=" http://www.fe
-- 200.93.131.2 (2012-01-11 08:08:19)
I support Manchester United <a href=" http
-- 119.114.87.109.triol (2012-01-11 08:11:10)
I'd like to pay this in, please <a href="
-- ip70-171-71-157.no.n (2012-01-11 09:11:22)
Where's the postbox? <a href=" http://www.
-- 195.229.181.251 (2012-01-11 09:15:31)
This is your employment contract <a href="
-- 82.148.109.68 (2012-01-11 09:15:53)
I'm in my first year at university <a href=&quo
-- ec2-107-20-161-197.c (2012-01-11 10:19:54)
A First Class stamp <a href=" http://www.f
-- 82.148.109.68 (2012-01-11 10:22:08)
How much notice do you have to give? <a href=&q
-- 82.148.109.69 (2012-01-11 10:22:59)
The line's engaged <a href=" http://www.fr
-- 117.79.235.90 (2012-01-11 10:31:11)
I'm at Liverpool University <a href=" http
-- www.oc.hu (2012-01-11 11:22:49)
How much is a Second Class stamp? <a href="
-- cable190-248-67-138. (2012-01-11 11:27:10)
Your cash is being counted <a href=" http:
-- CPE-67-48-248-87.new (2012-01-11 11:48:18)
Sorry, you must have the wrong number <a href=&
-- 82.148.109.69 (2012-01-11 12:26:17)
I can't get a dialling tone <a href=" http
-- cacti.tvscable.com (2012-01-11 12:34:20)
I'm afraid that number's ex-directory <a href=&
-- 14.139.60.213 (2012-01-11 13:06:58)
Could I make an appointment to see ? <a href=&q
-- c-76-98-208-61.hsd1. (2012-01-11 13:29:53)
Could I borrow your phone, please? <a href=&quo
-- n217-115-145-35.dedi (2012-01-11 13:39:46)
I've got a very weak signal <a href=" http
-- 202.98.123.126 (2012-01-11 14:10:24)
I saw your advert in the paper <a href=" h
-- skyhqapx02.t.is (2012-01-11 14:24:31)
Is this a temporary or permanent position? <a h
-- 1901424834.ip33.stat (2012-01-11 14:46:50)
On another call <a href=" http://www.feeda
-- aicw6kuq.emirates.ne (2012-01-11 14:47:01)
What qualifications have you got? <a href="
-- 82.148.109.68 (2012-01-11 15:34:52)
Could you tell me the number for ? <a href=&quo
-- host-91-93-132-210.t (2012-01-11 15:52:21)
What do you do? <a href=" http://www.feeda
-- 236.187.0.95.static. (2012-01-11 16:37:46)
Have you read any good books lately? <a href=&q
-- host-91-93-132-210.t (2012-01-11 16:59:10)
I'd like to take the job <a href=" http://
-- 41.158.128.180 (2012-01-11 16:59:22)
I'd like to tell you about a change of address <
-- mx-ll-110.164.3-165. (2012-01-11 17:41:51)
A Second Class stamp <a href=" http://ygut
-- 78.108.82.196 (2012-01-11 17:57:03)
Have you got a telephone directory? <a href=&qu
-- c-24-34-23-8.hsd1.ma (2012-01-11 18:06:17)
I've lost my bank card <a href=" http://ww
-- 201.7.143.34 (2012-01-11 18:18:52)
I can't stand football <a href=" http://ww
-- ip.ajaxsms.com (2012-01-11 18:44:48)
Just over two years <a href=" http://www.f
-- aicw6kuq.emirates.ne (2012-01-11 19:12:33)
Special Delivery <a href=" http://www.free
-- 82.148.109.69 (2012-01-11 19:37:01)
I'd like to pay this in, please <a href="
-- ec2-50-16-220-94.com (2012-01-11 19:47:50)
I can't hear you very well <a href=" http:
-- 82.148.109.68 (2012-01-11 20:18:46)
Enter your PIN <a href=" http://www.feedag
-- eportal.sandon.essex (2012-01-11 20:50:47)
How do I get an outside line? <a href=" ht
-- pip2.name.com (2012-01-11 20:55:37)
I've just graduated <a href=" http://www.f
-- aicw6kuq.emirates.ne (2012-01-11 21:25:10)
One moment, please <a href=" http://www.fe
-- 174-143-26-96.static (2012-01-11 21:54:10)
Can I call you back? <a href=" http://www.
-- c-50-135-93-20.hsd1. (2012-01-11 22:14:19)
What qualifications have you got? <a href="
-- 200.93.131.2 (2012-01-11 22:31:40)
Could you ask him to call me? <a href=" ht
-- 50.57.28.248 (2012-01-11 22:56:09)
I'd like to order some foreign currency <a href
-- undefined.bjgwbn.net (2012-01-11 23:31:39)
What sort of work do you do? <a href=" htt
-- 82.148.109.68 (2012-01-11 23:34:20)
Gloomy tales <a href=" http://www.feedage.
-- 14.139.60.213 (2012-01-11 23:59:15)
I like it a lot <a href=" http://www.feeda
-- 63.223.113.224 (2012-01-12 00:42:08)
I'm in a band <a href=" http://www.freedri
-- 202.105.113.132 (2012-01-12 00:50:25)
I'm on work experience <a href=" http://ww
-- 78.93.66.178 (2012-01-12 01:02:50)
Through friends <a href=" http://bibyhatuh
-- 79.170.50.105 (2012-01-12 01:29:09)
Hello good day <a href=" http://www.feedag
-- host-207.249.9.114.i (2012-01-12 01:47:19)
Please wait <a href=" http://www.feedage.c
-- 114.198.233.199 (2012-01-12 02:05:31)
What part of do you come from? <a href="
-- 18980020187.user.vel (2012-01-12 02:08:56)
How long have you lived here? <a href=" ht
-- 76.164.223.69 (2012-01-12 02:52:33)
Could you ask him to call me? <a href=" ht
-- static.72.1.9.176.cl (2012-01-12 03:07:55)
Can I use your phone? <a href=" http://www
-- 200.144.28.38 (2012-01-12 03:25:51)
Will I be paid weekly or monthly? <a href="
-- 82.148.109.69 (2012-01-12 03:57:25)
I don't know what I want to do after university &l
-- 184-82-146-18.static (2012-01-12 04:09:52)
Can you put it on the scales, please? <a href=&
-- mx-ll-110.164.3-184. (2012-01-12 04:43:26)
What university do you go to? <a href=" ht
-- cable190-248-67-138. (2012-01-12 05:02:53)
Through friends <a href=" http://akuakaqe.
-- ip177-46-72-163.anid (2012-01-12 05:11:27)
This is the job description <a href=" http
-- 118.107.173.79.pntl. (2012-01-12 05:11:57)
Excellent work, Nice Design <a href=" http
-- 197-133-212-190.enit (2012-01-12 05:59:30)
good material thanks <a href=" http://www.
-- server60-chl.it.net (2012-01-12 06:08:50)
I'll text you later <a href=" http://www.f
-- www.oc.hu (2012-01-12 06:14:01)
I'm from England <a href=" http://www.feed
-- aicw6kuq.emirates.ne (2012-01-12 07:13:56)
I want to make a withdrawal <a href=" http
-- host-91-93-132-210.t (2012-01-12 07:16:28)
My battery's about to run out <a href=" ht
-- 109.206.40.185 (2012-01-12 07:17:43)
Did you go to university? <a href=" http:/
-- 57.90.36.29 (2012-01-12 08:19:10)
Sorry, you must have the wrong number <a href=&
-- server60-chl.it.net (2012-01-12 08:19:34)
I live here <a href=" http://www.freedrive
-- dynamicip-251-255-92 (2012-01-12 08:38:11)
I'm a partner in <a href=" http://ineduos
-- c-98-235-190-254.hsd (2012-01-12 08:57:01)
I'd like to change some money <a href=" ht
-- 141.105.80.21 (2012-01-12 09:23:38)
I'm interested in this position <a href="
-- 196.254.224.159.trio (2012-01-12 09:26:06)
Sorry, you must have the wrong number <a href=&
-- 82.148.109.69 (2012-01-12 09:56:26)
I can't get a dialling tone <a href=" http
-- static.turktelekom.c (2012-01-12 10:27:26)
A pension scheme <a href=" http://www.feed
-- 82.148.109.69 (2012-01-12 10:31:18)
It's serious <a href=" http://www.freedriv
-- c-71-60-249-113.hsd1 (2012-01-12 11:14:27)
I quite like cooking <a href=" http://www.
-- area1-73-gw.hkfree.o (2012-01-12 11:30:31)
Will I get paid for overtime? <a href=" ht
-- c155-087.blackberry. (2012-01-12 11:36:56)
I'm sorry, she's <a href=" http://www.fre
-- aicw6kuq.emirates.ne (2012-01-12 12:32:20)
I'd like to withdraw $100, please <a href="
-- 14.139.60.213 (2012-01-12 12:32:46)
Would you like to leave a message? <a href=&quo
-- wsip-98-190-10-23.ks (2012-01-12 12:41:43)
Very funny pictures <a href=" http://beohy
-- c-98-250-74-220.hsd1 (2012-01-12 12:43:16)
What sort of music do you listen to? <a href=&q
-- 102-251-193-199.rdns (2012-01-12 13:34:46)
Best Site Good Work <a href=" http://www.f
-- c-76-125-136-74.hsd1 (2012-01-12 13:45:45)
How would you like the money? <a href=" ht
-- 149.249.17.34 (2012-01-12 13:48:20)
Very Good Site <a href=" http://www.feedag
-- 82.148.109.69 (2012-01-12 14:36:34)
Do you have any exams coming up? <a href="
-- static.88-198-96-249 (2012-01-12 14:49:39)
What part of do you come from? <a href="
-- c-98-247-132-54.hsd1 (2012-01-12 15:04:05)
Get a job <a href=" http://www.feedage.com
-- 118.107.173.79.pntl. (2012-01-12 15:37:45)
I study here <a href=" http://www.feedage.
-- s2.greenco.pl (2012-01-12 15:53:30)
I'm from England <a href=" http://www.free
-- 24-178-170-104.dhcp. (2012-01-12 16:20:35)
This is the job description <a href=" http
-- 82.148.109.68 (2012-01-12 17:07:52)
Other amount <a href=" http://ajerigygy.fo
-- ip98-162-255-17.ok.o (2012-01-12 17:10:32)
Please wait <a href=" http://www.feedage.c
-- aicw6kuq.emirates.ne (2012-01-12 17:29:13)
Whereabouts in are you from? <a href=" ht
-- 203.177.115.3 (2012-01-12 17:36:43)
Could you transfer $1000 from my current account t
-- c-98-239-97-248.hsd1 (2012-01-12 18:07:55)
Thanks for calling <a href=" http://www.fe
-- aicw6kuq.emirates.ne (2012-01-12 18:32:16)
Hold the line, please <a href=" http://www
-- c-76-105-4-17.hsd1.c (2012-01-12 18:52:43)
Could you please repeat that? <a href=" ht
-- 94.26.79.74 (2012-01-12 19:08:21)
How many days will it take for the cheque to clear
-- mail.parify.com (2012-01-12 19:35:57)
Do you play any instruments? <a href=" htt
-- pool-109-191-116-39. (2012-01-12 20:08:09)
Thanks for calling <a href=" http://www.fr
-- 200.144.28.38 (2012-01-12 20:08:46)
The line's engaged <a href=" http://www.fa
-- 194.126.21.204 (2012-01-12 20:37:53)
How do you do? <a href=" http://www.feedag
-- 50-57-134-15.static. (2012-01-12 20:39:20)
I went to <a href=" http://www.feedage.co
-- 4.79.231.188 (2012-01-12 21:08:15)
I was born in Australia but grew up in England <
-- 82.148.109.69 (2012-01-12 21:23:10)
I've lost my bank card <a href=" http://ww
-- 195.16.49.214 (2012-01-12 21:42:24)
Through friends <a href=" http://www.faniq
-- serverebt.rgol.com.b (2012-01-12 21:42:36)
I'd like to pay this cheque in, please <a href=
-- s2.greenco.pl (2012-01-12 22:09:38)
How much does the job pay? <a href=" http:
-- serverebt.rgol.com.b (2012-01-12 22:39:36)
Very funny pictures <a href=" http://www.f
-- static.72.1.9.176.cl (2012-01-12 22:45:05)
Have you read any good books lately? <a href=&q
-- ip72-197-253-181.sd. (2012-01-12 22:48:18)
Have you got a telephone directory? <a href=&qu
-- mail.phpinfo.hu (2012-01-12 23:09:21)
I'd like , please <a href=" http://www.fee
-- 217.96.70.146 (2012-01-12 23:46:01)
I support Manchester United <a href=" http
-- 118388808.convex.ru (2012-01-12 23:54:21)
What's your number? <a href=" http://www.f
-- 24-155-32-25.dyn.gra (2012-01-12 23:55:41)
How long are you planning to stay here? <a href
-- aicw6kuq.emirates.ne (2012-01-13 00:08:56)
I'll put him on <a href=" http://www.feeda
-- skyhqapx02.t.is (2012-01-13 00:49:40)
Pleased to meet you <a href=" http://www.f
-- 222.127.134.70 (2012-01-13 01:01:29)
I stay at home and look after the children <a h
-- 14.139.60.213 (2012-01-13 01:09:37)
I'm only getting an answering machine <a href=&
-- 207.219.7.136 (2012-01-13 01:13:00)
I'd like to pay this cheque in, please <a href=
-- 217.150.147.197 (2012-01-13 01:53:49)
Free medical insurance <a href=" http://ww
-- 14.139.60.213 (2012-01-13 02:07:44)
Do you know each other? <a href=" http://
-- securebox.bomlo.komm (2012-01-13 02:10:35)
I've got a part-time job <a href=" http://
-- spring.net.kmitl.ac. (2012-01-13 02:29:39)
I'm not interested in football <a href=" h
-- 236.148.105.89.right (2012-01-13 02:57:04)
I can't hear you very well <a href=" http:
-- 196-200-126.isnigeri (2012-01-13 03:11:33)
I work with computers <a href=" http://www
-- mail.phpinfo.hu (2012-01-13 03:13:46)
Insert your card <a href=" http://www.free
-- 118.174.131.94.stati (2012-01-13 03:46:45)
We need someone with experience <a href="
-- 194.115.52.38 (2012-01-13 04:02:15)
Incorrect PIN <a href=" http://www.feedage
-- 188.124.138.47 (2012-01-13 04:12:57)
When can you start? <a href=" http://www.f
-- 41.215.46.132.access (2012-01-13 04:21:56)
Where are you from? <a href=" http://www.f
-- 236.148.105.89.right (2012-01-13 05:06:20)
Will I have to work on Saturdays? <a href="
-- host197-227-110-95.s (2012-01-13 05:07:47)
Could I take your name and number, please? <a h
-- cable190-248-67-138. (2012-01-13 06:14:31)
I live in London <a href=" http://www.feed
-- 57.90.36.29 (2012-01-13 06:19:48)
Do you know what extension he's on? <a href=&qu
-- static.130.252.47.78 (2012-01-13 06:24:19)
My battery's about to run out <a href=" ht
-- ip68-230-81-41.ph.ph (2012-01-13 06:40:05)
Have you got any ? <a href=" http://www.fe
-- 195.14.100.73 (2012-01-13 07:21:18)
Have you got any qualifications? <a href="
-- 102-251-193-199.rdns (2012-01-13 07:23:01)
Did you go to university? <a href=" http:/
-- www34033u.sakura.ne. (2012-01-13 07:45:36)
I work for a publishers <a href=" http://w
-- 69-174-152-224.nwcsi (2012-01-13 07:48:53)
I'm unemployed <a href=" http://www.feedag
-- cable190-248-67-138. (2012-01-13 08:28:24)
Could I borrow your phone, please? <a href=&quo
-- aicw6kuq.emirates.ne (2012-01-13 08:28:59)
An accountancy practice <a href=" http://w
-- 62.68.144.46 (2012-01-13 08:57:41)
Could you please repeat that? <a href=" ht
-- 72-28-184-129-dhcp.a (2012-01-13 09:04:46)
Could I have an application form? <a href="
-- static.123.79.4.46.c (2012-01-13 09:33:18)
Are you a student? <a href=" http://www.fe
-- c-76-23-29-236.hsd1. (2012-01-13 09:35:32)
This site is crazy :) <a href=" http://www
-- ip72-192-15-77.ri.ri (2012-01-13 10:07:20)
What do you like doing in your spare time? <a h
-- lem.gdcc.edu.cn (2012-01-13 10:23:35)
Special Delivery <a href=" http://www.feed
-- eportal.sandon.essex (2012-01-13 10:38:17)
I'd like some euros <a href=" http://www.f
-- rrcs-70-60-108-198.m (2012-01-13 11:16:08)
Three years <a href=" http://www.feedage.c
-- 193.138.185.51 (2012-01-13 11:42:38)
Until August <a href=" http://www.freedriv
-- 85.195.138.31.satgat (2012-01-13 11:43:26)
perfect design thanks <a href=" http://www
-- 193.138.185.51 (2012-01-13 11:49:19)
I'm self-employed <a href=" http://www.fan
-- 78-6-111-112-static. (2012-01-13 12:24:16)
Have you got a telephone directory? <a href=&qu
-- static.25.64.4.46.cl (2012-01-13 12:46:40)
Which university are you at? <a href=" htt
-- dynamic-75-76-123-23 (2012-01-13 12:55:24)
Could you tell me the number for ? <a href=&quo
-- 203.37.28.2 (2012-01-13 12:59:45)
I'd like to withdraw $100, please <a href="
-- c-98-244-91-70.hsd1. (2012-01-13 13:31:36)
Yes, I love it! <a href=" http://www.feeda
-- c-71-230-107-246.hsd (2012-01-13 13:50:41)
Would you like a receipt? <a href=" http:/
-- 217.96.70.146 (2012-01-13 14:00:33)
I stay at home and look after the children <a h
-- s15388972.onlinehome (2012-01-13 14:16:48)
Where do you study? <a href=" http://www.f
-- c-69-249-157-10.hsd1 (2012-01-13 14:38:09)
Another service? <a href=" http://www.feed
-- 89.200.179.116 (2012-01-13 14:53:15)
Do you know the number for ? <a href=" htt
-- ec2-50-19-72-176.com (2012-01-13 15:06:30)
Did you go to university? <a href=" http:/
-- cpe-67-249-245-96.tw (2012-01-13 15:38:29)
Recorded Delivery <a href=" http://www.fan
-- ool-4a5a2d99.dyn.opt (2012-01-13 15:44:12)
Just over two years <a href=" http://www.f
-- 71-93-61-46.static.s (2012-01-13 15:56:25)
A company car <a href=" http://www.feedage
-- static-71-220-132-18 (2012-01-13 16:12:36)
Hold the line, please <a href=" http://www
-- 218.91.154.195 (2012-01-13 16:50:19)
I live in London <a href=" http://www.free
-- csist.bsu.by (2012-01-13 16:54:58)
Where do you come from? <a href=" http://w
-- 8-154-226-194.ur.ru (2012-01-13 16:58:56)
I'd like to pay this cheque in, please <a href=
-- 79.170.50.116 (2012-01-13 17:19:17)
Do you have any exams coming up? <a href="
-- d60-220-168.col.wide (2012-01-13 17:57:09)
An envelope <a href=" http://www.feedage.c
-- 194.126.21.204 (2012-01-13 18:01:29)
What university do you go to? <a href=" ht
-- 81.27.33.235 (2012-01-13 18:11:54)
Very Good Site <a href=" http://www.feedag
-- client148-246.unisne (2012-01-13 18:24:39)
Where are you from? <a href=" http://www.f
-- host-186-4-254-195.u (2012-01-13 19:03:57)
I need to charge up my phone <a href=" htt
-- 200.144.28.38 (2012-01-13 19:04:32)
I'm on holiday <a href=" http://www.freedr
-- 75-143-75-232.dhcp.a (2012-01-13 19:29:57)
I live here <a href=" http://www.feedage.c
-- skyhqapx02.t.is (2012-01-13 19:30:37)
Could I take your name and number, please? <a h
-- 95-65-27-202.starnet (2012-01-13 20:06:43)
I'm about to run out of credit <a href=" h
-- 213-229-83-27.static (2012-01-13 20:11:58)
I want to report a <a href=" http://www.f
-- c-98-206-52-31.hsd1. (2012-01-13 20:37:10)
Where did you go to university? <a href="
-- c-68-59-10-90.hsd1.s (2012-01-13 20:48:34)
We used to work together <a href=" http://
-- 38.48.214.91.pptp.cu (2012-01-13 21:09:55)
Could I make an appointment to see ? <a href=&q
-- 201.7.143.34 (2012-01-13 21:19:34)
I live here <a href=" http://www.feedage.c
-- 81.27.33.235 (2012-01-13 21:43:34)
I'm sorry, I didn't catch your name <a href=&qu
-- 173.192.89.64-static (2012-01-13 22:13:40)
Could you give me some smaller notes? <a href=&
-- 141.105.80.21 (2012-01-13 22:27:09)
Just over two years <a href=" http://www.f
-- oporaservice.ru (2012-01-13 22:48:51)
Excellent work, Nice Design <a href=" http
-- 173.192.89.64-static (2012-01-13 23:15:44)
I'd like to send this to <a href=" http:/
-- c-98-239-97-248.hsd1 (2012-01-13 23:35:12)
good material thanks <a href=" http://www.
-- host197-227-110-95.s (2012-01-13 23:52:19)
How many are there in a book? <a href=" ht
-- 79.170.50.74 (2012-01-14 00:18:26)
What's the exchange rate for euros? <a href=&qu
-- ip68-110-5-166.tc.ph (2012-01-14 00:43:46)
Will I be paid weekly or monthly? <a href="
-- 141.105.80.21 (2012-01-14 00:57:31)
How do you spell that? <a href=" http://ww
-- 94.41.108.214.static (2012-01-14 01:21:27)
I'm not working at the moment <a href=" ht
-- static-71-246-237-9. (2012-01-14 01:52:37)
Do you know what extension he's on? <a href=&qu
-- 77.47.196.226 (2012-01-14 02:03:41)
What do you like doing in your spare time? <a h
-- 14.139.60.213 (2012-01-14 02:24:53)
Your account's overdrawn <a href=" http://
-- mgw.toadtv.net (2012-01-14 03:01:23)
I've only just arrived <a href=" http://ww
-- ec2-50-19-72-176.com (2012-01-14 03:10:30)
I'm self-employed <a href=" http://www.fee
-- skyhqapx02.t.is (2012-01-14 03:28:44)
What's the interest rate on this account? <a hr
-- tmghosting.co.uk (2012-01-14 04:08:55)
perfect design thanks <a href=" http://www
-- static.turktelekom.c (2012-01-14 04:16:22)
A company car <a href=" http://www.feedage
-- 109.224.30.146 (2012-01-14 04:32:47)
I'd like to open a business account <a href=&qu
-- host-92-241-69-66-cu (2012-01-14 05:23:04)
Insert your card <a href=" http://www.feed
-- 95.211.45.66 (2012-01-14 05:36:30)
I'm afraid that number's ex-directory <a href=&
-- 1900241240.ip3.stati (2012-01-14 06:27:14)
Could I order a new chequebook, please? <a href
-- 94.26.79.74 (2012-01-14 06:29:05)
I was born in Australia but grew up in England <
-- 82.148.109.69 (2012-01-14 06:41:24)
Incorrect PIN <a href=" http://www.feedage
-- 82.148.109.68 (2012-01-14 07:36:46)
Can you put it on the scales, please? <a href=&
-- lostworld.net (2012-01-14 07:37:25)
What's your number? <a href=" http://www.f
-- email2.comunicacaodi (2012-01-14 07:45:51)
Thanks for calling <a href=" http://www.fe
-- 193.138.185.51 (2012-01-14 08:43:52)
How do you spell that? <a href=" http://ww
-- 86.96.226.23 (2012-01-14 08:50:27)
I'll call back later <a href=" http://www.
-- 546BE794.cm-12-4d.dy (2012-01-14 09:52:27)
It's OK <a href=" http://www.feedage.com/u
-- 89.218.94.139 (2012-01-14 09:53:53)
We've got a joint account <a href=" http:/
-- ool-4351ce11.dyn.opt (2012-01-14 09:56:29)
Can I take your number? <a href=" http://w
-- 236.148.105.89.right (2012-01-14 10:56:19)
Have you seen any good films recently? <a href=
-- skyhqapx02.t.is (2012-01-14 11:03:39)
Will I get travelling expenses? <a href="
-- c-67-163-116-127.hsd (2012-01-14 11:59:13)
I'm not interested in football <a href=" h
-- server60-chl.it.net (2012-01-14 12:01:50)
We went to university together <a href=" h
-- 141.105.80.21 (2012-01-14 12:11:24)
Did you go to university? <a href=" http:/
-- ip249.36.52.176.kzn. (2012-01-14 13:02:11)
Jonny was here <a href=" http://www.feedag
-- 95.211.45.66 (2012-01-14 13:06:42)
Good crew it's cool :) <a href=" http://ww
-- ool-4a5a2d99.dyn.opt (2012-01-14 13:17:19)
I like it a lot <a href=" http://www.feeda
-- 5v0bkylg.emirates.ne (2012-01-14 14:05:41)
What do you want to do when you've finished? <a
-- 202.185.32.12 (2012-01-14 14:12:36)
Your cash is being counted <a href=" http:
-- 82.148.109.68 (2012-01-14 14:23:54)
What sort of music do you like? <a href="
-- 82.148.109.69 (2012-01-14 15:08:18)
The line's engaged <a href=" http://www.fe
-- c-68-44-58-152.hsd1. (2012-01-14 15:17:52)
Is this a temporary or permanent position? <a h
-- 41.223.116.54 (2012-01-14 15:30:50)
I came here to study <a href=" http://www.
-- plus-gsm.arad.astral (2012-01-14 16:11:34)
I've got a full-time job <a href=" http://
-- 95-31-214-137.broadb (2012-01-14 16:24:34)
No, I'm not particularly sporty <a href="
-- fixed-203-17-218.ius (2012-01-14 16:38:38)
Sorry, you must have the wrong number <a href=&
-- securebox.bomlo.komm (2012-01-14 17:14:31)
Could I ask who's calling? <a href=" http:
-- 186.46.6.18 (2012-01-14 17:30:13)
I'd like some euros <a href=" http://www.f
-- c75-110-174-207.amrl (2012-01-14 17:44:53)
Did you go to university? <a href=" http:/
-- cpe-173-170-3-25.tam (2012-01-14 18:17:31)
Do you know the number for ? <a href=" htt
-- 95-31-214-137.broadb (2012-01-14 18:36:07)
Very interesting tale <a href=" http://www
-- tmghosting.co.uk (2012-01-14 18:51:52)
It's serious <a href=" http://www.feedage.
-- 82.148.109.69 (2012-01-14 19:20:02)
I'd like some euros <a href=" http://www.f
-- static.turktelekom.c (2012-01-14 19:42:05)
I saw your advert in the paper <a href=" h
-- 5v0bkylg.emirates.ne (2012-01-14 19:59:09)
Is there ? <a href=" http://www.feedage.co
-- 82.148.109.68 (2012-01-14 20:23:47)
Where do you live? <a href=" http://www.fe
-- 208.43.125.100-stati (2012-01-14 20:49:33)
How much will it cost to send this letter to ? <
-- ks359253.kimsufi.com (2012-01-14 21:08:03)
I'm happy very good site <a href=" http://
-- ip-95-69-223-146.air (2012-01-14 21:26:51)
The United States <a href=" http://www.fee
-- 89.218.94.139 (2012-01-14 21:54:47)
It's serious <a href=" http://www.faniq.co
-- 217-117-112-173.proc (2012-01-14 22:15:48)
I've been made redundant <a href=" http://
-- 41.190.16.17 (2012-01-14 22:30:11)
I work for a publishers <a href=" http://w
-- 5v0bkylg.emirates.ne (2012-01-14 22:59:44)
I'm retired <a href=" http://www.faniq.com
-- keijyudog.keiju.co.j (2012-01-14 23:23:50)
Which university are you at? <a href=" htt
-- 79.170.50.74 (2012-01-14 23:32:33)
Very funny pictures <a href=" http://www.f
-- 5v0bkylg.emirates.ne (2012-01-15 00:03:39)
I was born in Australia but grew up in England <
-- 79.170.50.105 (2012-01-15 00:32:28)
I can't get a signal <a href=" http://www.
-- static.turktelekom.c (2012-01-15 00:34:31)
I've been cut off <a href=" http://www.fee
-- la-company-4.eatel.n (2012-01-15 01:08:35)
Please call back later <a href=" http://ww
-- 93-41-222-8.ip83.fas (2012-01-15 01:38:16)
I'm about to run out of credit <a href=" h
-- wttaos05a.imsbiz.com (2012-01-15 01:40:59)
Yes, I love it! <a href=" http://www.feeda
-- 5v0bkylg.emirates.ne (2012-01-15 02:14:41)
Is this a temporary or permanent position? <a h
-- 194.126.21.204 (2012-01-15 02:41:45)
I've got a part-time job <a href=" http://
-- 171.subnet118-97-194 (2012-01-15 02:49:59)
Could I take your name and number, please? <a h
-- 14.139.60.213 (2012-01-15 03:17:38)
Recorded Delivery <a href=" http://www.fee
-- customer.worldstream (2012-01-15 03:43:29)
real beauty page <a href=" http://www.fani
-- 91-149-157-79.hoster (2012-01-15 03:57:45)
Thanks for calling <a href=" http://www.fe
-- 5v0bkylg.emirates.ne (2012-01-15 04:21:29)
I need to charge up my phone <a href=" htt
-- 119.114.87.109.triol (2012-01-15 04:45:51)
No, I'm not particularly sporty <a href="
-- c-67-173-172-32.hsd1 (2012-01-15 05:06:18)
Very interesting tale <a href=" http://www
-- 173.0.62.154 (2012-01-15 05:26:14)
Could I have an application form? <a href="
-- 63.119.11.20 (2012-01-15 05:48:40)
I've only just arrived <a href=" http://ww
-- 173.0.62.154 (2012-01-15 06:15:44)
One moment, please <a href=" http://www.fe
-- 5v0bkylg.emirates.ne (2012-01-15 06:31:26)
I'd like to send this parcel to <a href="
-- 82.148.109.68 (2012-01-15 06:52:19)
I'd like to change some money <a href=" ht
-- mx.yuyichina.com (2012-01-15 07:25:18)
I'm a housewife <a href=" http://www.feeda
-- 63.223.113.224 (2012-01-15 07:38:06)
I study here <a href=" http://www.feedage.
-- static.turktelekom.c (2012-01-15 07:55:42)
I'd like to pay this cheque in, please <a href=
-- 187.1.172.142 (2012-01-15 08:35:07)
I came here to work <a href=" http://www.f
-- host-207.249.9.114.i (2012-01-15 08:48:05)
The line's engaged <a href=" http://www.fe
-- 546BE794.cm-12-4d.dy (2012-01-15 08:59:19)
Could I make an appointment to see ? <a href=&q
-- 89.200.179.116 (2012-01-15 09:43:42)
Best Site Good Work <a href=" http://www.f
-- ec2-46-137-10-92.eu- (2012-01-15 09:54:51)
I can't stand football <a href=" http://ww
-- 63.223.113.224 (2012-01-15 10:04:44)
Why did you come to ? <a href=" http://www
-- c-75-67-221-83.hsd1. (2012-01-15 10:52:47)
I'd like to change some money <a href=" ht
-- ool-18e47371.dyn.opt (2012-01-15 11:01:07)
Another year <a href=" http://www.feedage.
-- ppp-81-25-55-138.ult (2012-01-15 11:07:15)
How do you know each other? <a href=" http
-- 222.238.156.247 (2012-01-15 11:59:26)
I hate shopping <a href=" http://www.feeda
-- s15388972.onlinehome (2012-01-15 12:05:07)
Nice to meet you <a href=" http://www.feed
-- 89.218.94.139 (2012-01-15 12:08:49)
Could you transfer $1000 from my current account t
-- c-67-182-46-110.hsd1 (2012-01-15 13:06:44)
Go travelling <a href=" http://www.feedage
-- c-67-173-248-51.hsd1 (2012-01-15 13:10:10)
I'm interested in <a href=" http://www.fe
-- cpe-68-175-81-245.ny (2012-01-15 13:10:56)
This site is crazy :) <a href=" http://www
-- ec2-50-19-72-176.com (2012-01-15 14:13:06)
I'm sorry, he's <a href=" http://www.fani
-- 5v0bkylg.emirates.ne (2012-01-15 14:14:07)
Can you put it on the scales, please? <a href=&
-- 82.148.109.69 (2012-01-15 14:15:44)
I work with computers <a href=" http://www
-- s15388972.onlinehome (2012-01-15 15:16:12)
I'm from England <a href=" http://www.fani
-- 141.105.80.21 (2012-01-15 15:20:52)
Looking for work <a href=" http://www.feed
-- 82.148.109.69 (2012-01-15 15:21:22)
I'd like to send this parcel to <a href="
-- skyhqapx02.t.is (2012-01-15 16:19:19)
I've just graduated <a href=" http://www.f
-- 95-65-27-202.starnet (2012-01-15 16:27:22)
I'd like to cancel this standing order <a href=
-- c-24-3-207-27.hsd1.p (2012-01-15 16:27:40)
Best Site Good Work <a href=" http://www.f
-- 82.148.109.69 (2012-01-15 17:21:31)
It's funny goodluck <a href=" http://www.f
-- 138.35.eidsiva.net (2012-01-15 17:32:55)
One moment, please <a href=" http://www.fa
-- c-24-20-144-222.hsd1 (2012-01-15 17:34:11)
We work together <a href=" http://www.feed
-- 86.96.226.23 (2012-01-15 18:24:30)
How much notice do you have to give? <a href=&q
-- 94.26.79.74 (2012-01-15 18:39:09)
I'm a partner in <a href=" http://www.fan
-- sirsi.usbiver1.intra (2012-01-15 18:41:11)
No, I'm not particularly sporty <a href="
-- ec2-79-125-106-214.e (2012-01-15 19:28:16)
Some First Class stamps <a href=" http://w
-- 82.148.109.69 (2012-01-15 19:45:52)
I've got a full-time job <a href=" http://
-- cable190-248-67-138. (2012-01-15 19:49:13)
Could you tell me the dialing code for ? <a hre
-- 5v0bkylg.emirates.ne (2012-01-15 20:31:25)
Could you tell me my balance, please? <a href=&
-- ip68-104-231-204.ph. (2012-01-15 20:52:22)
Is this a temporary or permanent position? <a h
-- 24-197-139-17.dhcp.s (2012-01-15 20:57:53)
I'm on business <a href=" http://www.feeda
-- 173.0.62.154 (2012-01-15 21:34:42)
I'm not working at the moment <a href=" ht
-- d51520B98.access.tel (2012-01-15 21:58:42)
We went to university together <a href=" h
-- static.72.1.9.176.cl (2012-01-15 22:06:17)
How long have you lived here? <a href=" ht
-- 194.115.52.38 (2012-01-15 23:03:43)
I'd like to open a business account <a href=&qu
-- 77.238.113.120 (2012-01-15 23:13:43)
About a year <a href=" http://www.feedage.
-- skyhqapx02.t.is (2012-01-15 23:41:00)
What do you like doing in your spare time? <a h
-- 94.26.79.74 (2012-01-16 00:08:20)
Have you got any experience? <a href=" htt
-- c-76-122-224-58.hsd1 (2012-01-16 00:21:38)
Best Site good looking <a href=" http://ww
-- static-50-47-36-36.s (2012-01-16 00:44:12)
Looking for work <a href=" http://www.feed
-- 70.38.110.43 (2012-01-16 01:14:49)
Will I have to work shifts? <a href=" http
-- 59.90.170.181 (2012-01-16 01:31:05)
Could I make an appointment to see ? <a href=&q
-- 82.148.109.68 (2012-01-16 01:48:53)
Do you have any exams coming up? <a href="
-- host-207.249.9.114.i (2012-01-16 02:21:58)
Where do you study? <a href=" http://www.f
-- ip146-227.static.mov (2012-01-16 02:41:02)
How much will it cost to send this letter to ? <
-- 41.158.128.180 (2012-01-16 02:52:41)
What do you want to do when you've finished? <a
-- 95-31-214-137.broadb (2012-01-16 03:28:19)
Yes, I play the guitar <a href=" http://ww
-- skyhqapx02.t.is (2012-01-16 03:50:31)
Not in at the moment <a href=" http://www.
-- host.dygitalmedia.co (2012-01-16 03:56:04)
Looking for a job <a href=" http://www.fee
-- host-207.249.9.114.i (2012-01-16 04:34:05)
I'd like to pay this cheque in, please <a href=
-- 93.166.121.107 (2012-01-16 04:59:49)
It's OK <a href=" http://www.faniq.com/use
-- 121.52.71.23 (2012-01-16 05:00:07)
Stolen credit card <a href=" http://www.fe
-- 186.46.6.18 (2012-01-16 05:41:03)
Could I borrow your phone, please? <a href=&quo
-- 82.148.109.69 (2012-01-16 06:04:02)
What do you study? <a href=" http://www.fa
-- mail.phpinfo.hu (2012-01-16 06:10:19)
I'm sorry, she's <a href=" http://www.fee
-- host91-146-48-245.et (2012-01-16 06:49:02)
Do you know the address? <a href=" http://
-- 1901424834.ip33.stat (2012-01-16 07:08:57)
Will I get travelling expenses? <a href="
-- 189.3.215.146 (2012-01-16 07:20:39)
What do you study? <a href=" http://www.fe
-- server1.crystalweb.c (2012-01-16 07:56:23)
My battery's about to run out <a href=" ht
-- 82.148.109.69 (2012-01-16 08:13:09)
I'd like to send this parcel to <a href="
-- static.turktelekom.c (2012-01-16 08:31:55)
Did you go to university? <a href=" http:/
-- host.dygitalmedia.co (2012-01-16 09:03:30)
Sorry, I'm busy at the moment <a href=" ht
-- 95-31-216-41.broadba (2012-01-16 09:18:10)
Who's calling? <a href=" http://www.faniq.
-- static-50-47-36-36.s (2012-01-16 09:42:09)
I came here to work <a href=" http://www.f
-- 41.158.128.180 (2012-01-16 10:23:09)
I've only just arrived <a href=" http://ww
-- eportal.sandon.essex (2012-01-16 10:53:30)
I want to make a withdrawal <a href=" http
-- mail.hitit.edu.tr (2012-01-16 11:17:47)
What part of do you come from? <a href="
-- 195.229.181.253 (2012-01-16 11:27:28)
Sorry, I'm busy at the moment <a href=" ht
-- ip72-204-64-169.fv.k (2012-01-16 12:04:43)
I'd like to take the job <a href=" http://
-- 82.148.109.69 (2012-01-16 12:23:59)
How many would you like? <a href=" http://
-- 82.148.109.68 (2012-01-16 12:32:02)
How much were you paid in your last job? <a hre
-- 201-251-156-101.spee (2012-01-16 13:15:00)
Best Site Good Work <a href=" http://www.f
-- 82.148.109.69 (2012-01-16 13:29:29)
On another call <a href=" http://www.feeda
-- mail.hitit.edu.tr (2012-01-16 13:35:51)
Would you like a receipt? <a href=" http:/
-- wsip-98-175-196-124. (2012-01-16 14:25:01)
I'd like to tell you about a change of address <
-- ip68-1-43-79.pn.at.c (2012-01-16 14:38:32)
I'd like to take the job <a href=" http://
-- 213.187.113.54 (2012-01-16 14:39:55)
Through friends <a href=" http://www.faniq
-- r74-194-77-211.htspc (2012-01-16 15:33:07)
Insufficient funds <a href=" http://www.fe
-- 201.7.143.34 (2012-01-16 15:42:58)
I'm in a band <a href=" http://www.feedage
-- 5v0bkylg.emirates.ne (2012-01-16 15:44:02)
Can I call you back? <a href=" http://www.
-- c-76-121-132-183.hsd (2012-01-16 16:41:42)
It's OK <a href=" http://www.feedage.com/u
-- 8-154-226-194.ur.ru (2012-01-16 16:44:51)
I'd like some euros <a href=" http://www.f
-- 184.171.175.24 (2012-01-16 16:49:27)
I've only just arrived <a href=" http://ww
-- c-76-101-50-241.hsd1 (2012-01-16 17:48:41)
I'm doing an internship <a href=" http://w
-- 201-251-156-101.spee (2012-01-16 17:50:01)
I stay at home and look after the children <a h
-- static.11.212.9.176. (2012-01-16 17:55:24)
Punk not dead <a href=" http://www.feedag
-- 4.79.231.188 (2012-01-16 18:51:43)
I'd like to open a business account <a href=&qu
-- securebox.bomlo.komm (2012-01-16 18:58:40)
I'm not sure <a href=" http://www.feedage.
-- 5v0bkylg.emirates.ne (2012-01-16 19:02:19)
An envelope <a href=" http://www.feedage.c
-- eportal.sandon.essex (2012-01-16 19:54:50)
What company are you calling from? <a href=&quo
-- 41.190.16.17 (2012-01-16 20:07:29)
Do you like it here? <a href=" http://www.
-- c-24-21-57-145.hsd1. (2012-01-16 20:07:33)
How do you know each other? <a href=" http
-- 5v0bkylg.emirates.ne (2012-01-16 20:58:24)
I can't get a dialling tone <a href=" http
-- 186.42.189.34 (2012-01-16 21:13:54)
I'm sorry, he's <a href=" http://www.fani
-- 5v0bkylg.emirates.ne (2012-01-16 21:15:35)
I've just graduated <a href=" http://www.f
-- static-50-47-36-36.s (2012-01-16 22:00:55)
What's the last date I can post this to to arrive
-- ool-4b6360d2.static. (2012-01-16 22:19:29)
Do you like it here? <a href=" http://www.
-- 250.134.223.82.arsys (2012-01-16 22:23:28)
I want to report a <a href=" http://www.f
-- 217.96.70.146 (2012-01-16 23:03:58)
I'm interested in <a href=" http://www.fe
-- 195.229.181.253 (2012-01-16 23:23:01)
I've just started at <a href=" http://www
-- 193.194.85.94 (2012-01-16 23:31:40)
What university do you go to? <a href=" ht
-- ppp-81-25-55-138.ult (2012-01-17 00:07:15)
US dollars <a href=" http://www.faniq.com/
-- 196-200-126.isnigeri (2012-01-17 00:40:29)
A financial advisor <a href=" http://www.f
-- mail.hitit.edu.tr (2012-01-17 01:10:21)
I'm interested in this position <a href="
-- ec2-107-22-57-15.com (2012-01-17 01:35:19)
It's OK <a href=" http://www.faniq.com/use
-- 95-31-214-137.broadb (2012-01-17 01:49:53)
I'd like to open a personal account <a href=&qu
-- 177.19.134.66.static (2012-01-17 02:13:47)
I can't hear you very well <a href=" http:
-- skyhqapx02.t.is (2012-01-17 02:41:43)
Whereabouts in are you from? <a href=" ht
-- mail.womenist.net (2012-01-17 03:00:43)
An estate agents <a href=" http://www.feed
-- 41.190.16.17 (2012-01-17 03:17:06)
Can I use your phone? <a href=" http://www
-- 14.139.60.213 (2012-01-17 03:47:11)
In tens, please (ten pound notes) <a href="
-- 141.105.80.21 (2012-01-17 04:10:33)
I'm not working at the moment <a href=" ht
-- 4.79.231.188 (2012-01-17 04:18:50)
I'm unemployed <a href=" http://www.feedag
-- ec2-46-137-117-214.e (2012-01-17 04:51:53)
I read a lot <a href=" http://www.faniq.co
-- ec2-107-22-57-15.com (2012-01-17 05:19:34)
A packet of envelopes <a href=" http://www
-- 5v0bkylg.emirates.ne (2012-01-17 05:20:57)
No, I'm not particularly sporty <a href="
-- 82.148.109.68 (2012-01-17 05:57:45)
We'll need to take up references <a href="
-- ppp-81-25-55-138.ult (2012-01-17 06:23:50)
How long have you lived here? <a href=" ht
-- 121.14.9.75 (2012-01-17 06:28:27)
An estate agents <a href=" http://www.feed
-- 82.148.109.68 (2012-01-17 07:02:20)
Is this a temporary or permanent position? <a h
-- static.21.46.46.78.c (2012-01-17 07:26:34)
I'd like to tell you about a change of address <
-- static.123.79.4.46.c (2012-01-17 07:37:28)
What do you do? <a href=" http://www.feeda
-- 176.28.76.100 (2012-01-17 08:07:51)
I came here to work <a href=" http://www.f
-- port-92-198-35-200.s (2012-01-17 08:29:49)
I'd like , please <a href=" http://www.fan
-- static.221-132-90-97 (2012-01-17 08:47:33)
I'm from England <a href=" http://www.fani
-- 93.166.121.107 (2012-01-17 09:32:56)
Can I take your number? <a href=" http://w
-- 64-121-184-93.c3-0.e (2012-01-17 09:56:03)
Best Site Good Work <a href=" http://www.f
-- 82.148.109.68 (2012-01-17 10:18:02)
I'm happy very good site <a href=" http://
-- 5v0bkylg.emirates.ne (2012-01-17 10:35:31)
I don't know what I want to do after university &l
-- 77.238.113.120 (2012-01-17 11:04:39)
Do you need a work permit? <a href=" http:
-- 5v0bkylg.emirates.ne (2012-01-17 11:22:46)
A book of First Class stamps <a href=" htt
-- static-50-47-36-36.s (2012-01-17 11:38:03)
I'm sorry, she's <a href=" http://www.fan
-- 27.2.0.37 (2012-01-17 12:13:02)
I never went to university <a href=" http:
-- 5v0bkylg.emirates.ne (2012-01-17 12:26:46)
Which team do you support? <a href=" http:
-- 5v0bkylg.emirates.ne (2012-01-17 12:40:20)
I read a lot <a href=" http://www.faniq.co
-- 5v0bkylg.emirates.ne (2012-01-17 13:22:01)
I'm a trainee <a href=" http://www.feedag
-- ec2-107-22-57-15.com (2012-01-17 13:32:00)
A First Class stamp <a href=" http://www.f
-- smtp.evolutionpos.co (2012-01-17 13:43:24)
Excellent work, Nice Design <a href=" http
-- 187.58.200.162.stati (2012-01-17 14:30:46)
I've lost my bank card <a href=" http://ww
-- 50-57-116-65.static. (2012-01-17 14:36:20)
An accountancy practice <a href=" http://w
-- ws-87-74.burnet.ru (2012-01-17 14:45:43)
Sorry, I ran out of credit <a href=" http:
-- ip98-162-170-171.pn. (2012-01-17 15:38:33)
Excellent work, Nice Design <a href=" http
-- static-50-47-36-36.s (2012-01-17 15:40:37)
Languages <a href=" http://www.faniq.com/u
-- 4.79.231.188 (2012-01-17 15:46:15)
I'm on business <a href=" http://www.feeda
-- 94.41.108.214.static (2012-01-17 16:45:11)
Could I take your name and number, please? <a h
-- 122.226.113.54 (2012-01-17 16:45:49)
An estate agents <a href=" http://www.fani
-- 89.218.94.139 (2012-01-17 16:48:30)
Do you play any instruments? <a href=" htt
-- 195.229.181.251 (2012-01-17 17:50:48)
A few months <a href=" http://www.faniq.co
-- 82.148.109.69 (2012-01-17 17:50:49)
Have you read any good books lately? <a href=&q
-- 82.148.109.68 (2012-01-17 17:53:24)
Looking for a job <a href=" http://www.fan
-- 178.89.109.166 (2012-01-17 18:54:32)
Free medical insurance <a href=" http://ww
-- static-96-254-123-21 (2012-01-17 18:56:29)
Languages <a href=" http://www.faniq.com/u
-- 183.91.74.68 (2012-01-17 19:01:43)
I'm not interested in football <a href=" h
-- port-92-198-35-200.s (2012-01-17 19:58:05)
Who would I report to? <a href=" http://ww
-- wsip-174-76-135-121. (2012-01-17 20:02:26)
Looking for a job <a href=" http://www.fan
-- ustlnx19-nc1.ust.hk (2012-01-17 20:10:14)
Will I have to work shifts? <a href=" http
-- c-75-67-90-166.hsd1. (2012-01-17 21:01:27)
Accountant supermarket manager <a href=" h
-- c-24-0-166-218.hsd1. (2012-01-17 21:08:13)
I'm sorry, he's <a href=" http://www.fani
-- c-98-237-237-173.hsd (2012-01-17 21:19:53)
I have my own business <a href=" http://ww
-- 195.16.49.214 (2012-01-17 22:05:05)
US dollars <a href=" http://www.faniq.com/
-- 94.26.79.74 (2012-01-17 22:13:30)
I'd like to open an account <a href=" http
-- 85.195.138.31.satgat (2012-01-17 22:27:57)
I'm sorry, he's <a href=" http://www.fani
-- ip128.17.239.212.in- (2012-01-17 23:16:38)
I'm sorry, she's <a href=" http://www.fan
-- eutv50ki.emirates.ne (2012-01-17 23:36:56)
Can I use your phone? <a href=" http://www
-- 1901424834.ip33.stat (2012-01-18 00:10:24)
When do you want me to start? <a href=" ht
-- host-207.249.9.114.i (2012-01-18 00:20:33)
I've been cut off <a href=" http://www.fan
-- static.77.22.9.176.c (2012-01-18 00:45:38)
Insufficient funds <a href=" http://www.fa
-- 193.138.185.51 (2012-01-18 01:11:37)
Where's the postbox? <a href=" http://www.
-- ec2-79-125-106-214.e (2012-01-18 01:25:51)
Until August <a href=" http://www.faniq.co
-- 87-98-177-156.ovh.ne (2012-01-18 01:54:48)
Through friends <a href=" http://www.faniq
-- mail.hitit.edu.tr (2012-01-18 02:31:32)
An envelope <a href=" http://www.faniq.com
-- 41-139-213-130.safar (2012-01-18 03:04:18)
I'm a housewife <a href=" http://www.faniq
-- 217.96.70.146 (2012-01-18 03:17:12)
I'd like to withdraw $100, please <a href="
-- c-76-100-136-113.hsd (2012-01-18 04:19:35)
I've lost my bank card <a href=" http://ww
-- 78.93.66.178 (2012-01-18 04:42:36)
Punk not dead <a href=" http://www.faniq.
-- server60-chl.it.net (2012-01-18 05:22:26)
i'm fine good work <a href=" http://www.fa
-- 194.30.240.168 (2012-01-18 05:25:05)
Have you got a telephone directory? <a href=&qu
-- ec2-46-137-117-214.e (2012-01-18 05:49:17)
I'm training to be an engineer <a href=" h
-- 14.139.60.213 (2012-01-18 06:25:49)
I'm sorry, I didn't catch your name <a href=&qu
-- 82.148.109.68 (2012-01-18 06:36:40)
Stolen credit card <a href=" http://www.fa
-- 78.93.66.178 (2012-01-18 06:55:40)
Where's the nearest cash machine? <a href="
-- 190.66.17.53 (2012-01-18 07:29:30)
I like watching football <a href=" http://
-- 203.37.28.2 (2012-01-18 07:46:34)
Photography <a href=" http://www.faniq.com
-- host-207.249.9.114.i (2012-01-18 08:01:46)
I'm a trainee <a href=" http://www.faniq.
-- c-76-100-220-174.hsd (2012-01-18 08:32:27)
Yes, I play the guitar <a href=" http://ww
-- 186.238.48.8 (2012-01-18 08:57:32)
It's funny goodluck <a href=" http://www.f
-- accounts.it-zahner.d (2012-01-18 09:07:48)
How much is a Second Class stamp? <a href="
-- ppp-81-25-55-138.ult (2012-01-18 09:34:58)
I love this site <a href=" http://www.fani
-- bb147755.virtua.com. (2012-01-18 10:11:59)
I'd like to pay this cheque in, please <a href=
-- accounts.it-zahner.d (2012-01-18 10:17:31)
Yes, I play the guitar <a href=" http://ww
-- 114.198.233.199 (2012-01-18 10:37:48)
What line of work are you in? <a href=" ht
-- server60-chl.it.net (2012-01-18 11:23:09)
Other amount <a href=" http://www.faniq.co
-- www.oc.hu (2012-01-18 11:41:44)
A financial advisor <a href=" http://www.f
-- 84.201.40.171 (2012-01-18 12:28:39)
i'm fine good work <a href=" http://www.fa
-- c-68-81-23-39.hsd1.n (2012-01-18 12:31:49)
I really like swimming <a href=" http://ww
-- pop3-2.mcom.fr (2012-01-18 12:45:17)
How do you spell that? <a href=" http://ww
-- 82.148.109.68 (2012-01-18 13:35:17)
I've been made redundant <a href=" http://
-- hoelscher-F0-3-7-gac (2012-01-18 13:40:03)
perfect design thanks <a href=" http://www
-- 75-133-17-184.dhcp.r (2012-01-18 13:48:23)
Get a job <a href=" http://www.faniq.com/u
-- 177.19.134.66.static (2012-01-18 14:41:48)
What do you want to do when you've finished? <a
-- c-24-9-227-70.hsd1.c (2012-01-18 14:51:48)
very best job <a href=" http://www.faniq.c
-- eutv50ki.emirates.ne (2012-01-18 15:47:45)
I'm in my first year at university <a href=&quo
-- 76.74.250.25 (2012-01-18 15:55:10)
Do you know the number for ? <a href=" htt
-- ip68-229-158-172.lf. (2012-01-18 15:56:45)
I went to <a href=" http://www.faniq.com/
-- cable190-248-67-138. (2012-01-18 16:53:37)
I'd like to pay this cheque in, please <a href=
-- securebox.bomlo.komm (2012-01-18 16:56:57)
I love this site <a href=" http://www.fani
-- 218.210.199.252 (2012-01-18 17:04:25)
What's the interest rate on this account? <a hr
-- 95-31-214-137.broadb (2012-01-18 17:59:33)
Another year <a href=" http://www.faniq.co
-- 82.148.109.68 (2012-01-18 17:59:34)
Could I have a statement, please? <a href="
-- 27.2.0.49 (2012-01-18 18:12:55)
Enter your PIN <a href=" http://www.faniq.
-- 82.148.109.68 (2012-01-18 19:02:00)
I'm interested in this position <a href="
-- 87-98-177-156.ovh.ne (2012-01-18 19:04:17)
Have you seen any good films recently? <a href=
-- 147.172.145.199 (2012-01-18 19:21:07)
Until August <a href=" http://www.faniq.co
-- securebox.bomlo.komm (2012-01-18 20:04:48)
Insufficient funds <a href=" http://www.fa
-- eutv50ki.emirates.ne (2012-01-18 20:09:24)
I hate shopping <a href=" http://www.faniq
-- 173.0.62.154 (2012-01-18 20:29:16)
I'm originally from Dublin but now live in Edinbur
-- ool-18e4bca2.dyn.opt (2012-01-18 21:07:18)
I can't get a dialling tone <a href=" http
-- ec2-107-21-125-86.co (2012-01-18 21:14:14)
I'm not working at the moment <a href=" ht
-- 213.27.232.210 (2012-01-18 21:37:11)
Could I have , please? <a href=" http://ww
-- eutv50ki.emirates.ne (2012-01-18 22:09:53)
There's a three month trial period <a href=&quo
-- 41.158.128.180 (2012-01-18 22:20:02)
I'd like to take the job <a href=" http://
-- host184-236-static.2 (2012-01-18 22:46:14)
What do you want to do when you've finished? <a
-- 4.79.231.188 (2012-01-18 23:11:59)
I'm self-employed <a href=" http://www.fan
-- 95-31-214-137.broadb (2012-01-18 23:23:18)
What do you want to do when you've finished? <a
-- ip174-65-71-240.sd.s (2012-01-18 23:54:57)
Directory enquiries <a href=" http://www.f
-- skyhqapx02.t.is (2012-01-19 00:27:05)
Where do you come from? <a href=" http://w
-- 14.139.60.213 (2012-01-19 01:03:47)
Enter your PIN <a href=" http://www.faniq.
-- skyhqapx02.t.is (2012-01-19 01:15:12)
Yes, I play the guitar <a href=" http://ww
-- ec2-107-21-125-86.co (2012-01-19 01:33:26)
I want to report a <a href=" http://www.f
-- c-98-235-217-204.hsd (2012-01-19 02:14:05)
Another service? <a href=" http://www.fani
-- server60-chl.it.net (2012-01-19 02:18:00)
A Second Class stamp <a href=" http://www.
-- 8-154-226-194.ur.ru (2012-01-19 02:39:38)
I want to make a withdrawal <a href=" http
-- 76.164.223.77 (2012-01-19 03:21:26)
I'm a partner in <a href=" http://www.fan
-- ip70-189-137-87.lv.l (2012-01-19 03:22:52)
Will I have to work shifts? <a href=" http
-- eutv50ki.emirates.ne (2012-01-19 03:45:27)
perfect design thanks <a href=" http://www
-- 46.49.81.17 (2012-01-19 04:26:30)
Will I be paid weekly or monthly? <a href="
-- hoelscher-F0-3-7-gac (2012-01-19 04:32:31)
Through friends <a href=" http://www.faniq
-- wsip-174-76-129-196. (2012-01-19 04:52:22)
Have you got any experience? <a href=" htt
-- www.oc.hu (2012-01-19 05:30:35)
I've got a part-time job <a href=" http://
-- cloud-sshgw.reply.eu (2012-01-19 06:34:11)
Three years <a href=" http://www.faniq.com
-- li270-40.members.lin (2012-01-19 07:07:08)
Where are you from? <a href=" http://www.f
-- hoelscher-F0-3-7-gac (2012-01-19 08:03:24)
Sorry, you must have the wrong number <a href=&
-- 184.171.175.26 (2012-01-19 08:15:09)
I saw your advert in the paper <a href=" h
-- 79.120.14.163 (2012-01-19 08:44:05)
I was made redundant two months ago <a href=&qu
-- 112.197.8.24 (2012-01-19 09:14:44)
I quite like cooking <a href=" http://www.
-- 202.185.32.12 (2012-01-19 09:22:26)
I like watching TV <a href=" http://www.fa
-- 217.96.70.146 (2012-01-19 09:49:26)
Could I ask who's calling? <a href=" http:
-- c-67-172-56-38.hsd1. (2012-01-19 10:26:32)
An accountancy practice <a href=" http://w
-- 8-154-226-194.ur.ru (2012-01-19 10:28:12)
How much is a First Class stamp? <a href="
-- 95-31-214-137.broadb (2012-01-19 10:53:27)
Have you got a current driving licence? <a href
-- c-98-225-67-172.hsd1 (2012-01-19 11:34:51)
How long have you lived here? <a href=" ht
-- 220.227.242.211 (2012-01-19 11:36:36)
What's the last date I can post this to to arrive
-- c-67-163-214-78.hsd1 (2012-01-19 14:55:51)
I like watching TV <a href=" http://www.fa
-- 184-155-148-48.cpe.c (2012-01-19 15:03:30)
We need someone with experience <a href="
-- c-67-176-215-222.hsd (2012-01-19 15:09:53)
Accountant supermarket manager <a href=" h
-- 184-22-37-38.static. (2012-01-19 16:02:40)
Where are you calling from? <a href=" http
-- 203.158.29.55 (2012-01-19 16:12:27)
I can't hear you very well <a href=" http:
-- skyhqapx02.t.is (2012-01-19 16:13:25)
Looking for work <a href=" http://www.fani
-- eutv50ki.emirates.ne (2012-01-19 17:09:06)
Will I get travelling expenses? <a href="
-- 82.148.109.68 (2012-01-19 17:17:49)
I'm on work experience <a href=" http://ww
-- c-67-177-130-137.hsd (2012-01-19 17:20:39)
This is your employment contract <a href="
-- 132.248.97.213 (2012-01-19 18:15:44)
I'm training to be an engineer <a href=" h
-- 135.109.199.88 (2012-01-19 18:21:51)
I'm sorry, she's <a href=" http://www.fan
-- 175.139.169.245 (2012-01-19 18:29:16)
Have you got any qualifications? <a href="
-- 76.164.223.77 (2012-01-19 19:22:50)
We used to work together <a href=" http://
-- 82.148.109.68 (2012-01-19 19:25:30)
Go travelling <a href=" http://www.faniq.c
-- 75-131-43-76.static. (2012-01-19 19:37:48)
Will I have to work on Saturdays? <a href="
-- li270-40.members.lin (2012-01-19 20:29:11)
I read a lot <a href=" http://www.faniq.co
-- 67.158.63.124 (2012-01-19 20:29:15)
I quite like cooking <a href=" http://www.
-- mvx-200-142-108-125. (2012-01-19 20:47:07)
I'm a housewife <a href=" http://www.faniq
-- 135.109.199.88 (2012-01-19 21:34:04)
I'd like to order some foreign currency <a href
-- ip72-222-137-78.ph.p (2012-01-19 21:36:02)
How do you spell that? <a href=" http://ww
-- 122.225.68.125 (2012-01-19 21:57:34)
How much notice do you have to give? <a href=&q
-- 178.89.109.166 (2012-01-19 22:39:13)
Do you know what extension he's on? <a href=&qu
-- 201.7.143.34 (2012-01-19 22:42:24)
I'm training to be an engineer <a href=" h
-- ks359253.kimsufi.com (2012-01-19 23:08:13)
Get a job <a href=" http://www.faniq.com/u
-- eutv50ki.emirates.ne (2012-01-19 23:44:31)
Wonderfull great site <a href=" http://www
-- 77.74.199.29 (2012-01-19 23:47:31)
We work together <a href=" http://www.fani
-- 178.89.109.166 (2012-01-20 00:20:04)
I read a lot <a href=" http://www.faniq.co
-- 82.148.109.69 (2012-01-20 00:49:31)
I'm in a band <a href=" http://www.faniq.c
-- n80-237-198-178.cnet (2012-01-20 00:55:28)
The United States <a href=" http://www.fan
-- 221-134-198-16.sify. (2012-01-20 01:32:33)
Enter your PIN <a href=" http://www.faniq.
-- 202.185.32.12 (2012-01-20 01:55:05)
Good crew it's cool :) <a href=" http://ww
-- 79.170.50.116 (2012-01-20 02:02:34)
I support Manchester United <a href=" http
-- ec2-107-21-125-86.co (2012-01-20 03:00:38)
Whereabouts are you from? <a href=" http:/
-- eutv50ki.emirates.ne (2012-01-20 03:10:06)
I've been made redundant <a href=" http://
-- 14.139.59.97 (2012-01-20 03:57:01)
I enjoy travelling <a href=" http://www.fa
-- mailer.ukranews.com (2012-01-20 04:17:15)
In tens, please (ten pound notes) <a href="
-- eutv50ki.emirates.ne (2012-01-20 05:10:11)
I'll send you a text <a href=" http://www.
-- 201.7.143.34 (2012-01-20 05:10:20)
I have my own business <a href=" http://ww
-- skyhqapx02.t.is (2012-01-20 05:25:54)
What do you like doing in your spare time? <a h
-- 190.66.17.53 (2012-01-20 06:14:51)
I'd like to transfer some money to this account &l
-- wsip-174-76-129-196. (2012-01-20 06:23:23)
Is there ? <a href=" http://www.faniq.com/
-- static.72.1.9.176.cl (2012-01-20 06:35:36)
One moment, please <a href=" http://www.fa
-- 41.223.116.54 (2012-01-20 07:20:00)
We'll need to take up references <a href="
-- ip24-251-15-253.ph.p (2012-01-20 07:37:07)
A jiffy bag <a href=" http://www.faniq.com
-- sirsi.usbiver1.intra (2012-01-20 07:44:18)
Best Site Good Work <a href=" http://www.f
-- 135.109.199.88 (2012-01-20 08:25:09)
Accountant supermarket manager <a href=" h
-- c-98-245-237-204.hsd (2012-01-20 08:49:44)
Do you know each other? <a href=" http://
-- eutv50ki.emirates.ne (2012-01-20 08:53:24)
this post is fantastic <a href=" http://ww
-- 184-22-37-38.static. (2012-01-20 09:31:09)
Will I have to work on Saturdays? <a href="
-- ec2-107-21-125-86.co (2012-01-20 10:04:17)
How much were you paid in your last job? <a hre
-- 212.156.58.182.stati (2012-01-20 10:36:36)
Which year are you in? <a href=" http://ww
-- 81.174.71.241 (2012-01-20 11:10:15)
I'm interested in this position <a href="
-- 38-41-202-109.kamens (2012-01-20 11:18:02)
Have you got a telephone directory? <a href=&qu
-- 57.90.36.29 (2012-01-20 11:42:39)
A jiffy bag <a href=" http://www.faniq.com
-- host-207.249.9.114.i (2012-01-20 12:19:49)
Could you give me some smaller notes? <a href=&
-- 200-206-122-150.cust (2012-01-20 12:30:11)
Can I take your number? <a href=" http://w
-- 212.156.58.182.stati (2012-01-20 12:49:23)
A pension scheme <a href=" http://www.fani
-- ip70-173-183-113.lv. (2012-01-20 13:30:11)
I've been cut off <a href=" http://www.fan
-- 177.87.0.69 (2012-01-20 13:42:23)
We were at school together <a href=" http:
-- server1.crystalweb.c (2012-01-20 13:56:06)
Best Site good looking <a href=" http://ww
-- 207.219.7.136 (2012-01-20 14:39:34)
I'd like to cancel this standing order <a href=
-- 85.195.138.33.satgat (2012-01-20 14:53:34)
I'd like to take the job <a href=" http://
-- c-67-187-74-9.hsd1.t (2012-01-20 15:01:43)
Hold the line, please <a href=" http://www
-- 79.170.50.116 (2012-01-20 15:47:29)
I'm happy very good site <a href=" http://
-- business-89-135-190- (2012-01-20 16:03:16)
How long have you lived here? <a href=" ht
-- host-91-93-132-210.t (2012-01-20 16:06:05)
I'm in a band <a href=" http://www.faniq.c
-- 95-31-214-137.broadb (2012-01-20 16:56:22)
Have you read any good books lately? <a href=&q
-- NVM.avsgroup.ru (2012-01-20 17:11:04)
I'm about to run out of credit <a href=" h
-- 207.219.7.136 (2012-01-20 17:12:38)
What sort of music do you like? <a href="
-- 82.148.109.69 (2012-01-20 18:03:53)
this is be cool 8) <a href=" http://www.fa
-- 193.138.185.51 (2012-01-20 18:15:30)
I'd like to pay this cheque in, please <a href=
-- www.oc.hu (2012-01-20 19:11:17)
Other amount <a href=" http://www.faniq.co
-- mm-214-189-84-93.dyn (2012-01-20 19:19:51)
How many more years do you have to go? <a href=
-- 195.229.181.252 (2012-01-20 19:30:15)
Will I get paid for overtime? <a href=" ht
-- ppp-81-25-55-138.ult (2012-01-20 20:18:18)
Thanks for calling <a href=" http://www.fa
-- 138.35.eidsiva.net (2012-01-20 20:24:18)
This is the job description <a href=" http
-- 213.175.169.130 (2012-01-20 20:39:58)
I'd like to open a business account <a href=&qu
-- 184-22-37-38.static. (2012-01-20 21:25:28)
Could you tell me the dialing code for ? <a hre
-- mail.dynamixsolution (2012-01-20 21:28:12)
perfect design thanks <a href=" http://www
-- 92.46.119.133.static (2012-01-20 21:49:18)
Have you got any experience? <a href=" htt
-- 213.186.122.27.utel. (2012-01-20 22:30:57)
I'd like to pay this cheque in, please <a href=
-- autoplasa.com.br (2012-01-20 22:31:51)
I'm interested in <a href=" http://www.fa
-- 202.85.222.194 (2012-01-20 22:59:00)
Will I have to work on Saturdays? <a href="
-- 8-154-226-194.ur.ru (2012-01-20 23:34:22)
Enter your PIN <a href=" http://www.faniq.
-- e0-0.wtt104.imsbiz.c (2012-01-21 00:08:04)
Another service? <a href=" http://www.fani
-- 202.185.32.12 (2012-01-21 00:38:29)
Could I order a new chequebook, please? <a href
-- 184-22-37-38.static. (2012-01-21 00:40:48)
Where did you go to university? <a href="
-- wttaos04a.imsbiz.com (2012-01-21 01:17:02)
What sort of music do you like? <a href="
-- mafia-clan.com (2012-01-21 01:42:55)
Where are you from? <a href=" http://www.f
-- mafia-clan.com (2012-01-21 01:46:16)
I'm in a band <a href=" http://www.faniq.c
-- www34033u.sakura.ne. (2012-01-21 02:27:37)
A Second Class stamp <a href=" http://www.
-- 202.185.32.12 (2012-01-21 02:47:53)
Could you send me an application form? <a href=
-- 62.59.28.137 (2012-01-21 02:53:32)
A few months <a href=" http://www.faniq.co
-- 156.109-183-91.adsl- (2012-01-21 03:39:54)
Did you go to university? <a href=" http:/
-- server.my-hyips.com (2012-01-21 03:53:27)
I'm on business <a href=" http://www.faniq
-- 194.170.28.240 (2012-01-21 04:01:37)
Your cash is being counted <a href=" http:
-- 58.181.248.21 (2012-01-21 04:51:20)
How do you do? <a href=" http://www.faniq.
-- c155-087.blackberry. (2012-01-21 04:58:47)
Could you ask him to call me? <a href=" ht
-- c155-087.blackberry. (2012-01-21 05:08:04)
I'd like to speak to someone about a mortgage <
-- 202.85.222.194 (2012-01-21 06:03:33)
Whereabouts are you from? <a href=" http:/
-- 79.170.50.74 (2012-01-21 06:03:37)
Hello good day <a href=" http://www.faniq.
-- n80-237-198-178.cnet (2012-01-21 06:15:09)
I'll text you later <a href=" http://www.f
-- sirsi.usbiver1.intra (2012-01-21 07:08:19)
Special Delivery <a href=" http://www.fani
-- smtp.ttml.co.in (2012-01-21 07:14:25)
I love the theatre <a href=" http://www.fa
-- 67.158.63.124 (2012-01-21 07:22:47)
Have you read any good books lately? <a href=&q
-- server.my-hyips.com (2012-01-21 08:12:49)
A First Class stamp <a href=" http://www.f
-- d149-67-250-148.col. (2012-01-21 08:25:45)
Children with disabilities <a href=" http:
-- ec2-107-21-125-86.co (2012-01-21 08:30:01)
Cool site goodluck :) <a href=" http://www
-- 46.49.81.17 (2012-01-21 09:18:30)
I'd like to change some money <a href=" ht
-- 82.148.109.68 (2012-01-21 09:36:52)
What company are you calling from? <a href=&quo
-- cpe-98-151-23-57.soc (2012-01-21 09:36:56)
Is there ? <a href=" http://www.faniq.com/
-- yblavd9i.emirates.ne (2012-01-21 10:24:21)
We went to university together <a href=" h
-- 201.7.143.34 (2012-01-21 10:44:41)
What's the current interest rate for personal loan
-- 193.138.185.51 (2012-01-21 10:46:52)
I'm afraid that number's ex-directory <a href=&
-- 159.226.169.127 (2012-01-21 11:56:13)
Not in at the moment <a href=" http://www.
-- ip72-201-29-176.ph.p (2012-01-21 11:57:33)
Get a job <a href=" http://www.faniq.com/u
-- 82.148.109.69 (2012-01-21 12:34:55)
I don't like pubs <a href=" http://www.fan
-- letsbuild-iis-1 (2012-01-21 13:04:40)
Can I use your phone? <a href=" http://www
-- 216.10.221.155 (2012-01-21 13:39:55)
Could I have , please? <a href=" http://ww
-- 57.90.36.29 (2012-01-21 14:12:43)
I'm doing a masters in law <a href=" http:
-- c-67-187-21-197.hsd1 (2012-01-21 14:13:35)
Good crew it's cool :) <a href=" http://ww
-- yblavd9i.emirates.ne (2012-01-21 15:20:27)
I'm doing a phd in chemistry <a href=" htt
-- c-71-233-249-59.hsd1 (2012-01-21 15:23:27)
this post is fantastic <a href=" http://ww
-- yblavd9i.emirates.ne (2012-01-21 15:50:31)
perfect design thanks <a href=" http://www
-- 138.35.eidsiva.net (2012-01-21 16:28:11)
What's the exchange rate for euros? <a href=&qu
-- 117.79.235.90 (2012-01-21 16:31:36)
Who's calling? <a href=" http://www.faniq.
-- 67.158.63.124 (2012-01-21 16:55:18)
How many are there in a book? <a href=" ht
-- pool-108-49-195-169. (2012-01-21 17:36:16)
US dollars <a href=" http://www.faniq.com/
-- ec2-46-51-224-252.ap (2012-01-21 17:40:17)
Wonderfull great site <a href=" http://www
-- 86.96.226.23 (2012-01-21 18:00:49)
I'd like to pay this in, please <a href="
-- 82.148.109.69 (2012-01-21 18:45:12)
I'd like some euros <a href=" http://www.f
-- port-92-198-35-200.s (2012-01-21 18:50:11)
Very interesting tale <a href=" http://www
-- 141.105.80.19 (2012-01-21 19:06:48)
I'm doing a masters in law <a href=" http:
-- static.72.1.9.176.cl (2012-01-21 19:53:59)
I quite like cooking <a href=" http://www.
-- static.customer-201- (2012-01-21 19:59:31)
Looking for a job <a href=" http://www.fan
-- 62.189.57.142 (2012-01-21 20:12:38)
I'm about to run out of credit <a href=" h
-- c-69-137-194-242.hsd (2012-01-21 21:09:27)
I'd like to cancel a cheque <a href=" http
-- 82.148.109.69 (2012-01-21 21:18:16)
Sorry, I ran out of credit <a href=" http:
-- static.72.1.9.176.cl (2012-01-21 22:09:06)
I study here <a href=" http://www.faniq.co
-- host81-150-206-161.i (2012-01-21 22:19:24)
What's the exchange rate for euros? <a href=&qu
-- server60-chl.it.net (2012-01-21 22:22:28)
i'm fine good work <a href=" http://www.fa
-- 194.170.28.240 (2012-01-21 23:15:34)
Could I have an application form? <a href="
-- 95-31-214-137.broadb (2012-01-21 23:27:03)
Which year are you in? <a href=" http://ww
-- mail16.infosaic.com (2012-01-21 23:28:59)
Who would I report to? <a href=" http://ww
-- mafia-clan.com (2012-01-22 00:22:28)
What qualifications have you got? <a href="
-- yblavd9i.emirates.ne (2012-01-22 00:31:52)
A company car <a href=" http://www.faniq.c
-- 150.165.238.114 (2012-01-22 00:38:36)
It's a bad line <a href=" http://www.faniq
-- 82.114.82.60 (2012-01-22 01:30:47)
Could I have a statement, please? <a href="
-- 82.148.109.69 (2012-01-22 01:37:17)
A financial advisor <a href=" http://www.f
-- c-98-235-217-204.hsd (2012-01-22 01:49:10)
What part of do you come from? <a href="
-- 82.148.109.68 (2012-01-22 02:59:56)
No, I'm not particularly sporty <a href="
-- 89.218.94.139 (2012-01-22 03:46:02)
I went to <a href=" http://www.faniq.com/
-- 82.148.109.68 (2012-01-22 03:48:15)
I support Manchester United <a href=" http
-- 118-175-99-106.totis (2012-01-22 04:10:36)
I'd like to order some foreign currency <a href
-- 190.12.76.100 (2012-01-22 04:54:12)
I'm happy very good site <a href=" http://
-- ip-212-24-112-92.cyb (2012-01-22 04:54:37)
A book of First Class stamps <a href=" htt
-- 188.127.226.151 (2012-01-22 05:20:18)
Is it convenient to talk at the moment? <a href
-- skyhqapx02.t.is (2012-01-22 05:59:29)
Do you play any instruments? <a href=" htt
-- 96-38-101-139.dhcp.j (2012-01-22 06:03:59)
I'm doing a masters in law <a href=" http:
-- 67.217.33.40 (2012-01-22 06:30:48)
What's your number? <a href=" http://www.f
-- host-207.249.9.114.i (2012-01-22 07:04:46)
I'm doing a phd in chemistry <a href=" htt
-- 96-37-132-26.static. (2012-01-22 07:11:22)
What's the last date I can post this to to arrive
-- 135.109.199.88 (2012-01-22 07:40:13)
Sorry, I'm busy at the moment <a href=" ht
-- 82.148.109.68 (2012-01-22 08:10:41)
An estate agents <a href=" http://www.fani
-- yblavd9i.emirates.ne (2012-01-22 08:19:15)
How many more years do you have to go? <a href=
-- 74-93-75-82-Illinois (2012-01-22 09:15:49)
How do you spell that? <a href=" http://ww
-- yblavd9i.emirates.ne (2012-01-22 09:26:14)
A pension scheme <a href=" http://www.fani
-- 42-83-47-5.btvm.ne.j (2012-01-22 09:59:33)
Enter your PIN <a href=" http://www.faniq.
-- 86.96.226.23 (2012-01-22 10:21:04)
I love this site <a href=" http://www.fani
-- 82.148.109.69 (2012-01-22 10:35:12)
I don't know what I want to do after university &l
-- cpe-70-117-28-53.sat (2012-01-22 11:09:11)
On another call <a href=" http://www.faniq
-- 82.148.109.69 (2012-01-22 11:26:10)
I'm on a course at the moment <a href=" ht
-- c-98-216-248-234.hsd (2012-01-22 11:41:27)
I'm from England <a href=" http://www.fani
-- ool-44c5cbce.dyn.opt (2012-01-22 12:15:16)
Yes, I play the guitar <a href=" http://ww
-- ns.kaluga.ru (2012-01-22 12:27:20)
I came here to study <a href=" http://www.
-- cpe-74-76-80-68.nyca (2012-01-22 12:44:22)
A law firm <a href=" http://www.faniq.com/
-- 159.226.169.127 (2012-01-22 13:21:34)
I'll send you a text <a href=" http://www.
-- 188.168.65.114.retai (2012-01-22 13:27:56)
Which year are you in? <a href=" http://ww
-- net9.zmaximum.ru (2012-01-22 13:47:15)
Looking for work <a href=" http://www.fani
-- c-68-56-119-17.hsd1. (2012-01-22 14:27:02)
How do you do? <a href=" http://www.faniq.
-- 120.132.149.19 (2012-01-22 15:33:31)
We need someone with qualifications <a href=&qu
-- c-76-120-139-106.hsd (2012-01-22 15:53:43)
How much is a Second Class stamp? <a href="
-- host-79-164-95-115.q (2012-01-22 16:31:39)
Whereabouts in are you from? <a href=" ht
-- 213.186.122.27.utel. (2012-01-22 16:39:14)
Where's the nearest cash machine? <a href="
-- 176.31.89.107 (2012-01-22 17:34:15)
Three years <a href=" http://www.faniq.com
-- 98.11.207.178.in-add (2012-01-22 17:46:04)
How much notice do you have to give? <a href=&q
-- ns.kaluga.ru (2012-01-22 18:03:18)
Could you tell me the number for ? <a href=&quo
-- host-164-140-107-208 (2012-01-22 18:36:03)
I'm doing an internship <a href=" http://w
-- server.my-hyips.com (2012-01-22 18:53:13)
Best Site Good Work <a href=" http://www.f
-- 95.0.187.236.dynamic (2012-01-22 19:07:24)
Have you seen any good films recently? <a href=
-- 156.109-183-91.adsl- (2012-01-22 19:38:26)
US dollars <a href=" http://www.faniq.com/
-- 112.197.8.24 (2012-01-22 20:00:34)
We need someone with qualifications <a href=&qu
-- 2.95.101.192 (2012-01-22 20:12:18)
What sort of music do you like? <a href="
-- ec2-107-21-125-86.co (2012-01-22 20:41:28)
How long have you lived here? <a href=" ht
-- 46.246.89.162 (2012-01-22 21:08:02)
Looking for a job <a href=" http://www.fan
-- mafia-clan.com (2012-01-22 21:17:18)
We'd like to offer you the job <a href=" h
-- 81.28.242.100 (2012-01-22 21:44:34)
What do you like doing in your spare time? <a h
-- 188.127.226.151 (2012-01-22 22:15:50)
I'm retired <a href=" http://www.faniq.com
-- 82.148.109.68 (2012-01-22 22:22:58)
I work for myself <a href=" http://www.fan
-- port-92-198-35-200.s (2012-01-22 22:47:22)
I'd like to speak to someone about a mortgage <
-- 217.96.70.146 (2012-01-22 23:22:57)
I'm doing a phd in chemistry <a href=" htt
-- ip217.46.52.176.kzn. (2012-01-22 23:51:24)
I like watching TV <a href=" http://www.fa
-- c-98-245-237-204.hsd (2012-01-23 00:31:09)
Photography <a href=" http://www.faniq.com
-- 193.194.85.94 (2012-01-23 00:32:28)
Sorry, I'm busy at the moment <a href=" ht
-- yblavd9i.emirates.ne (2012-01-23 00:55:45)
I'd like some euros <a href=" http://www.f
-- 195.229.181.253 (2012-01-23 01:39:01)
Will I get travelling expenses? <a href="
-- 217.64.22.25 (2012-01-23 01:39:52)
Can I call you back? <a href=" http://www.
-- lax.schoolwisepress. (2012-01-23 02:00:06)
I'm sorry, I'm not interested <a href=" ht
-- host-207.249.9.114.i (2012-01-23 02:45:42)
I've been made redundant <a href=" http://
-- 27.2.0.49 (2012-01-23 02:48:40)
How do you spell that? <a href=" http://ww
-- ec2-107-22-57-15.com (2012-01-23 03:04:06)
I'd like to withdraw $100, please <a href="
-- yblavd9i.emirates.ne (2012-01-23 03:52:31)
I live in London <a href=" http://www.fani
-- 82.148.109.68 (2012-01-23 03:57:21)
I'm in a band <a href=" http://www.faniq.c
-- 213.175.169.130 (2012-01-23 05:06:55)
Jonny was here <a href=" http://www.faniq.
-- 119.114.87.109.triol (2012-01-23 06:07:39)
Could I order a new chequebook, please? <a href
-- ip-46-73-144-43.bb.n (2012-01-23 06:16:23)
Gloomy tales <a href=" http://www.faniq.co
-- 79.170.50.74 (2012-01-23 06:17:54)
I'm doing a masters in law <a href=" http:
-- yblavd9i.emirates.ne (2012-01-23 07:21:57)
Children with disabilities <a href=" http:
-- 82.148.109.69 (2012-01-23 07:26:27)
Do you have any exams coming up? <a href="
-- www.oc.hu (2012-01-23 08:27:17)
I came here to work <a href=" http://www.f
-- 177.87.0.68 (2012-01-23 08:34:48)
I saw your advert in the paper <a href=" h
-- 201.7.143.34 (2012-01-23 09:30:43)
I'd like to withdraw $100, please <a href="
-- yblavd9i.emirates.ne (2012-01-23 09:31:25)
Wonderfull great site <a href=" http://www
-- yblavd9i.emirates.ne (2012-01-23 09:43:56)
Please wait <a href=" http://www.faniq.com
-- 222.210-224-87.telen (2012-01-23 10:36:14)
I support Manchester United <a href=" http
-- 204.11.143.41 (2012-01-23 14:14:47)
Your cash is being counted <a href=" http:
-- 82.148.109.69 (2012-01-23 14:49:43)
I wanted to live abroad <a href=" http://f
-- 189-112-189-043.stat (2012-01-24 17:36:08)
A staff restaurant <a href=" http://www.in
-- 66.108.173.79.pntl.r (2012-01-24 18:41:57)
A financial advisor <a href=" http://www.i
-- ip70-180-160-143.lv. (2012-01-24 19:48:51)
Who do you work for? <a href=" http://www.
-- gw-communenergo.ll-k (2012-01-24 20:56:03)
I need to charge up my phone <a href=" htt
-- 89.218.94.139 (2012-01-24 22:03:50)
Is it convenient to talk at the moment? <a href
-- 82.148.109.68 (2012-01-24 23:11:51)
We need someone with qualifications <a href=&qu
-- 150.165.238.114 (2012-01-25 00:20:20)
I'd like to send this parcel to <a href="
-- yblavd9i.emirates.ne (2012-01-25 01:30:29)
I'm a housewife <a href=" http://www.indab
-- c-71-225-85-68.hsd1. (2012-01-25 02:38:55)
A First Class stamp <a href=" http://www.i
-- fernandonetvalparais (2012-01-25 03:48:53)
Valid XHTML 1.0 Transitional :: Valid CSS :: Powered by WikkaWiki