<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://uberthings.com/teaching/wiki/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=200.238.102.170</id>
	<title>Mobile Application Design - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://uberthings.com/teaching/wiki/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=200.238.102.170"/>
	<link rel="alternate" type="text/html" href="https://uberthings.com/teaching/wiki/index.php?title=Special:Contributions/200.238.102.170"/>
	<updated>2026-05-30T15:51:01Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.43.0</generator>
	<entry>
		<id>https://uberthings.com/teaching/wiki/index.php?title=Java_Setup_Notes&amp;diff=1882</id>
		<title>Java Setup Notes</title>
		<link rel="alternate" type="text/html" href="https://uberthings.com/teaching/wiki/index.php?title=Java_Setup_Notes&amp;diff=1882"/>
		<updated>2007-04-10T16:53:26Z</updated>

		<summary type="html">&lt;p&gt;200.238.102.170: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Setting up your environment ==&lt;br /&gt;
&lt;br /&gt;
Having a good environment setup is essential for everything you will be doing with Java ME - writing, compiling, packaging, debugging, obfuscating, tearing your hair out etc etc. Use the instructions here to setup your environment on Windows or OS X (currently experimental). &lt;br /&gt;
&lt;br /&gt;
&amp;lt;h2&amp;gt;Java   Wireless Toolkit&amp;lt;/h2&amp;gt;&lt;br /&gt;
#Java Standard Edition Development Kit (JDK) - you need to have some version of Java installed on your machine. Try to get version 1.4.2 (or later). This is essential for development. NOTE: You MUST have the JDK installed before you install the Java Wireless Toolkit as you will need the tools it contains (such as javac) to compile and run your MIDlets.&lt;br /&gt;
#Download it here: http://java.sun.com/j2se/downloads/index.html. Get the version without any other bundled software. It should be called something like JDK 5.0 Update 8.&lt;br /&gt;
#Java ME, Wireless Toolkit (WTK). This contains the essential tools that we need to build, package and install mobile applications. Download it here: http://java.sun.com/products/j2mewtoolkit/. Get the [J2ME Wireless Toolkit 2.2 http://java.sun.com/products/sjwtoolkit/download-2_2.html], or if you feel living on the bleeding edge - grab the Sun [Java Wireless Toolkit 2.5 for CLDC, Beta http://java.sun.com/products/sjwtoolkit/download-2_5.html](the toolkit formerly known as J2ME Wireless Toolkit). Careful, you may cut yourself.&lt;br /&gt;
#I&#039;m going to assume that you will install this into the &amp;lt;pre&amp;gt;C:\WTK\&amp;lt;/pre&amp;gt; directory - if you install it somewhere else, just modify the paths accordingly.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;h2&amp;gt;Paths&amp;lt;/h2&amp;gt;&lt;br /&gt;
To play nicely with the grown-ups, Java needs to know where all your files are, so we need to add the location of the Java binaries to the system path.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;h3&amp;gt;Windows 95/98&amp;lt;/h3&amp;gt;&lt;br /&gt;
Go to Start-&amp;gt;Run. Type in &amp;lt;em&amp;gt;command&amp;lt;/em&amp;gt;. Then type&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;SET PATH=%PATH%;C:\WTK\bin&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
You should also edit your C:\autoexec.bat file to include this line, so you don&#039;t have to enter it every single time you restart your computer. After you&#039;ve done this, you should be able to run the tools included in the Java Wireless Toolkit from any directory on your system. &lt;br /&gt;
&lt;br /&gt;
&amp;lt;h3&amp;gt;Windows 2000/XP&amp;lt;/h3&amp;gt; &lt;br /&gt;
#Go to Control Panel -&amp;gt; System.&lt;br /&gt;
#Click on the Advanced Tab&lt;br /&gt;
#Click on the Environment Variables button&lt;br /&gt;
#Double-click the PATH variable in the System variables box&lt;br /&gt;
#At the end of the &amp;lt;em&amp;gt;Variable value&amp;lt;/em&amp;gt; field, add the path to your J2ME WTK installation - for me this is something like &amp;lt;em&amp;gt;;C:\WTK&amp;lt;/em&amp;gt;&lt;br /&gt;
#If you had to install the J2SE SDK too, it&#039;s a good idea to add the paths for that as well - for me this was &amp;lt;em&amp;gt;C:\j2sdk1.4.2_03;C:\j2sdk1.4.2_03\bin&amp;lt;/em&amp;gt;.&lt;br /&gt;
	&lt;br /&gt;
  &amp;lt;p&amp;gt;A good way to test if this worked is to type the preverify command without any arguments in the command line. You should see something like this on your screen. &amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
C:\&amp;gt; preverify&amp;lt;br /&amp;gt;&lt;br /&gt;
Usage: PREVERIFY.EXE [options] classnames|dirnames ...&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
where options include:&amp;lt;br /&amp;gt;&lt;br /&gt;
   -classpath &amp;lt;directories separated by &#039;;&#039;&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
                  Directories in which to look for classes&amp;lt;br /&amp;gt;&lt;br /&gt;
   -d &amp;lt;directory&amp;gt; Directory in which output is written &amp;lt;br /&amp;gt;&lt;br /&gt;
   @&amp;lt;filename&amp;gt;    Read command line arguments from a text file.&amp;lt;br /&amp;gt; &lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;h2&amp;gt;Emulators&amp;lt;/h2&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;h3&amp;gt;Windows&amp;lt;/h3&amp;gt;&lt;br /&gt;
Depending on your target device, you should download and install the SDK for that particular handset or family of handsets from the manufacturer&#039;s site. Since this course is based around the Nokia Series 60 handsets, we&#039;re going to grab the Nokia Series 60 2nd Edition SDK, Feature Pack 2 and 3 as well as the Nokia Series 60 3rd Edition SDK (for the N80). You&#039;ll also need to get serial numbers for these SDKs, so don&#039;t forget to request those as well.&lt;br /&gt;
Download them from here: &lt;br /&gt;
&lt;br /&gt;
[http://www.forum.nokia.com/info/sw.nokia.com/id/6e772b17-604b-4081-999c-31f1f0dc2dbb/S60_Platform_SDKs_for_Symbian_OS_for_Java.html Series 60 SDKs] &lt;br /&gt;
&lt;br /&gt;
&amp;lt;h3&amp;gt;Mac OS X&amp;lt;/h3&amp;gt;&lt;br /&gt;
None of the manufacturers have bothered to port their SDKs for the Mac, and neither has Sun, but there is a way to develop MIDP 1.0 and 2.0 applications using Apache Ant, MPowerplayer MIDP 2.0 SDK and J2ME Polish. Get &#039;em while they&#039;re hot: &lt;br /&gt;
&lt;br /&gt;
&amp;lt;h5&amp;gt;Apache Ant&amp;lt;/h5&amp;gt;&lt;br /&gt;
# Download Apache Ant from http://download.nextag.com/apache/ant/binaries/apache-ant-1.6.5-bin.tar.gz &lt;br /&gt;
# Save it somewhere easy and memorable - on my machine I save all my downloaded source files to &amp;lt;pre&amp;gt;/Users/michael/src&amp;lt;/pre&amp;gt;&lt;br /&gt;
# Here is the process. To try keep things clean, we&#039;re going to be installing into /usr/local. &lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
tar -zxvf apache-ant-1.6.5-src.tar.gz&lt;br /&gt;
cd /usr/local&lt;br /&gt;
sudo mkdir ant&lt;br /&gt;
cd ant&lt;br /&gt;
sudo cp -R ~/src/apache-ant-1.6.5/bin .&lt;br /&gt;
sudo cp -R ~/src/apache-ant-1.6.5/lib .&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
# Set up the paths in your environment&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
pico ~/.bash_login&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
Add these lines somewhere&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
export ANT_HOME=/usr/local/ant&lt;br /&gt;
export JAVA_HOME=/Library/Java/Home&lt;br /&gt;
export PATH=${PATH}:${ANT_HOME}/bin&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
Shut down your shell, open it up again and type&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
ant&lt;br /&gt;
&lt;br /&gt;
You should see something like this &lt;br /&gt;
&lt;br /&gt;
Buildfile: build.xml does not exist!&lt;br /&gt;
Build failed&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
This means that Ant is installed and we&#039;re ready to roll.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;h5&amp;gt;MPowerplayer MIDP 2.0 SDK&amp;lt;/h5&amp;gt;&lt;br /&gt;
# Download this from http://www.mpowerplayer.com/products-sdk.php&lt;br /&gt;
# Save the file somewhere in your src folder and unzip it. On my machine this looked like this: &lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
/Users/michael/src/mobile/mpp-sdk&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
# [Optional] I like making shortcuts so that it&#039;s easy for me to run the application. Fire up your favourite editor and type this&lt;br /&gt;
&amp;lt;pre&amp;gt;java -jar /Users/michael/src/mobile/mpp/player.jar $1&lt;/div&gt;</summary>
		<author><name>200.238.102.170</name></author>
	</entry>
	<entry>
		<id>https://uberthings.com/teaching/wiki/index.php?title=ZombieDetector&amp;diff=1880</id>
		<title>ZombieDetector</title>
		<link rel="alternate" type="text/html" href="https://uberthings.com/teaching/wiki/index.php?title=ZombieDetector&amp;diff=1880"/>
		<updated>2007-04-10T15:13:59Z</updated>

		<summary type="html">&lt;p&gt;200.238.102.170: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=== Overview ===&lt;br /&gt;
&lt;br /&gt;
=== Setup ===&lt;br /&gt;
&lt;br /&gt;
# Create a new J2ME Midlet Suite in Eclipse by right-clicking in the Package Manager, selecting New -&amp;gt; Project -&amp;gt; J2ME Midlet Suite&lt;br /&gt;
# Call this ZombieDetector. Leave everything else as is. &lt;br /&gt;
# Right-click on your ZombieDetector project and select New -&amp;gt; Class&lt;br /&gt;
# Use &#039;&#039;&#039;src&#039;&#039;&#039; as your package and &#039;&#039;&#039;ZombieDetector&#039;&#039;&#039; as the class name. Click Finish.&lt;br /&gt;
# Open your new ZombieDetector class&lt;br /&gt;
# Cut and paste the code from below into your file. Save. &lt;br /&gt;
# Open up the ZombieDetector.jad file&lt;br /&gt;
# Click on the Midlets tab. Click Add. &lt;br /&gt;
# Write in ZombieDetector as the MIDlet name.&lt;br /&gt;
# Click in the button that appears in class. You may have to start typing Zombie in. It should find your class automatically. If nothing happens, try closing all the files down and opening them again. &lt;br /&gt;
# Right-click your project again, select Run As, then Run...&lt;br /&gt;
# Setup so that it looks something like this - http://uberthings.com/teaching/mobile_application_design/2/run_dialog.png&lt;br /&gt;
# Run your MIDlet&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
import javax.microedition.midlet.*;&lt;br /&gt;
import javax.microedition.lcdui.*;&lt;br /&gt;
&lt;br /&gt;
/**&lt;br /&gt;
 * Zombie Detector&lt;br /&gt;
 * @author Michael Sharon&lt;br /&gt;
 * &lt;br /&gt;
 * This program will allow a user to type in a sentence and detect if they are a zombie or not. &lt;br /&gt;
 *&lt;br /&gt;
 * Notice that we&#039;re implementing the CommandListener and Runnable. Read up on those two classes in the API docs.&lt;br /&gt;
 * Runnable - http://uberthings.com/mobile/docs/midp1/java/lang/Runnable.html&lt;br /&gt;
 * CommandListenter - http://uberthings.com/mobile/docs/midp1/javax/microedition/lcdui/CommandListener.html&lt;br /&gt;
 */&lt;br /&gt;
public class ZombieDetector extends MIDlet implements CommandListener, Runnable {&lt;br /&gt;
&lt;br /&gt;
	//Create our variables&lt;br /&gt;
&lt;br /&gt;
	//Every MIDlet will always contain exactly one Display object&lt;br /&gt;
	//Display represents the device&#039;s display manager and input devices&lt;br /&gt;
	private Display mDisplay;&lt;br /&gt;
&lt;br /&gt;
	private Command mExitCommand, mDetectCommand, mCancelCommand;&lt;br /&gt;
&lt;br /&gt;
	//Setting up the Textbox and Progress Forms (like the example in class)&lt;br /&gt;
	private TextBox mSubmitBox;&lt;br /&gt;
&lt;br /&gt;
	private Form mProgressForm;&lt;br /&gt;
&lt;br /&gt;
	private StringItem mProgressString;&lt;br /&gt;
&lt;br /&gt;
	//Field / Form style&lt;br /&gt;
	private TextField mSubmitField;&lt;br /&gt;
&lt;br /&gt;
	private Form mDetectionForm;&lt;br /&gt;
&lt;br /&gt;
	public ZombieDetector() {&lt;br /&gt;
		mExitCommand = new Command(&amp;quot;Exit&amp;quot;, Command.EXIT, 0);&lt;br /&gt;
		mDetectCommand = new Command(&amp;quot;Detect&amp;quot;, Command.SCREEN, 0);&lt;br /&gt;
&lt;br /&gt;
		mSubmitBox = new TextBox(&amp;quot;ZombieDetector&amp;quot;, &amp;quot;Am I a Zombie?&amp;quot;, 32, 0);&lt;br /&gt;
		mSubmitBox.addCommand(mExitCommand);&lt;br /&gt;
		mSubmitBox.addCommand(mDetectCommand);&lt;br /&gt;
		mSubmitBox.setCommandListener(this);&lt;br /&gt;
&lt;br /&gt;
		mSubmitField = new TextField(&lt;br /&gt;
				&amp;quot;Type a few words below to check if you are a zombie:&amp;quot;,&lt;br /&gt;
				&amp;quot;I am not a zombie.. honest..&amp;quot;, 32, 0);&lt;br /&gt;
		mDetectionForm = new Form(&amp;quot;Zombie Detector&amp;quot;);&lt;br /&gt;
		mDetectionForm.addCommand(mExitCommand);&lt;br /&gt;
		mDetectionForm.addCommand(mDetectCommand);&lt;br /&gt;
		mDetectionForm.append(mSubmitField);&lt;br /&gt;
		mDetectionForm.setCommandListener(this);&lt;br /&gt;
&lt;br /&gt;
		mProgressForm = new Form(&amp;quot;Lookup progress&amp;quot;);&lt;br /&gt;
		mProgressString = new StringItem(null, null);&lt;br /&gt;
		mProgressForm.append(mProgressString);&lt;br /&gt;
	}&lt;br /&gt;
&lt;br /&gt;
	public void startApp() {&lt;br /&gt;
		mDisplay = Display.getDisplay(this);&lt;br /&gt;
&lt;br /&gt;
		//uncomment the mSubmitbox line below to run it like the example in class&lt;br /&gt;
		//mDisplay.setCurrent(mSubmitBox);&lt;br /&gt;
		mDisplay.setCurrent(mDetectionForm);&lt;br /&gt;
&lt;br /&gt;
	}&lt;br /&gt;
&lt;br /&gt;
	public void pauseApp() {&lt;br /&gt;
	}&lt;br /&gt;
&lt;br /&gt;
	public void destroyApp(boolean unconditional) {&lt;br /&gt;
	}&lt;br /&gt;
&lt;br /&gt;
	//This is called whenever we select a command&lt;br /&gt;
	public void commandAction(Command c, Displayable s) {&lt;br /&gt;
		if (c == mExitCommand) {&lt;br /&gt;
			destroyApp(false);&lt;br /&gt;
			notifyDestroyed();&lt;br /&gt;
		} else if (c == mDetectCommand) {&lt;br /&gt;
			// Show the progress form.&lt;br /&gt;
			mDisplay.setCurrent(mProgressForm);&lt;br /&gt;
			// Kick off the thread to do the query.&lt;br /&gt;
			Thread t = new Thread(this);&lt;br /&gt;
			t.start();&lt;br /&gt;
		}&lt;br /&gt;
	}&lt;br /&gt;
&lt;br /&gt;
	/*&lt;br /&gt;
	 * The run() method is automatically called when a new Thread is started. &lt;br /&gt;
	 *&lt;br /&gt;
	 */&lt;br /&gt;
	public void run() {&lt;br /&gt;
&lt;br /&gt;
		//uncomment the line below if you want use the TextBox&lt;br /&gt;
		//String word = mSubmitBox.getString();&lt;br /&gt;
		String word = mSubmitField.getString();&lt;br /&gt;
		//System.out.println is useful for debugging and sending things to the console. &lt;br /&gt;
		System.out.println(&amp;quot;Got the String - &amp;quot;   word);&lt;br /&gt;
		String result;&lt;br /&gt;
&lt;br /&gt;
		result = checkForZombie(word);&lt;br /&gt;
&lt;br /&gt;
		//Place the result into an Alert&lt;br /&gt;
		Alert results = new Alert(&amp;quot;Result&amp;quot;, result, null, null);&lt;br /&gt;
		results.setTimeout(Alert.FOREVER);&lt;br /&gt;
&lt;br /&gt;
		//Display the Alert, followed by the next Displayable - in this case our Form or Textbox&lt;br /&gt;
		//Uncomment the line below to use the Textbox&lt;br /&gt;
		//mDisplay.setCurrent(results, mSubmitBox);&lt;br /&gt;
		mDisplay.setCurrent(results, mDetectionForm);&lt;br /&gt;
	}&lt;br /&gt;
&lt;br /&gt;
	private String checkForZombie(String word) {&lt;br /&gt;
		String isZombie = null;&lt;br /&gt;
		int zombieCheck = 0;&lt;br /&gt;
&lt;br /&gt;
		//Check if we&#039;re dealing with a zombie&lt;br /&gt;
		zombieCheck = word.indexOf(&amp;quot;brain&amp;quot;);&lt;br /&gt;
&lt;br /&gt;
		if (zombieCheck == -1) {&lt;br /&gt;
			isZombie = &amp;quot;This is a live one. No zombies here.&amp;quot;;&lt;br /&gt;
		} else {&lt;br /&gt;
			isZombie = &amp;quot;Eeek! Run for your lives!&amp;quot;;&lt;br /&gt;
		}&lt;br /&gt;
&lt;br /&gt;
		return isZombie;&lt;br /&gt;
	}&lt;br /&gt;
}&amp;lt;/pre&amp;gt;&lt;/div&gt;</summary>
		<author><name>200.238.102.170</name></author>
	</entry>
	<entry>
		<id>https://uberthings.com/teaching/wiki/index.php?title=Talk:Welcome&amp;diff=1872</id>
		<title>Talk:Welcome</title>
		<link rel="alternate" type="text/html" href="https://uberthings.com/teaching/wiki/index.php?title=Talk:Welcome&amp;diff=1872"/>
		<updated>2007-04-09T23:12:19Z</updated>

		<summary type="html">&lt;p&gt;200.238.102.170: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Greetings!&lt;br /&gt;
Undoubtedly, you will reach big success with your site. &lt;br /&gt;
&amp;lt;a href=&#039;http://myurl.com.tw/pgit&#039; &amp;gt;free full length porn movies&amp;lt;/a&amp;gt; | &amp;lt;a href=&#039;http://myurl.com.tw/5o3n&#039; &amp;gt;young gay teens&amp;lt;/a&amp;gt; | &amp;lt;a href=&#039;http://myurl.com.tw/ithg&#039; &amp;gt;free lesbian sex videos&amp;lt;/a&amp;gt; | &amp;lt;a href=&#039;http://myurl.com.tw/pco9&#039; &amp;gt;hot grannies&amp;lt;/a&amp;gt; | &amp;lt;a href=&#039;http://myurl.com.tw/2pdb&#039; &amp;gt;girls thong&amp;lt;/a&amp;gt;&lt;br /&gt;
http://myurl.com.tw/pgit&lt;br /&gt;
http://myurl.com.tw/5o3n&lt;br /&gt;
http://myurl.com.tw/ithg&lt;br /&gt;
http://myurl.com.tw/pco9&lt;br /&gt;
&lt;br /&gt;
Kiss you!&lt;br /&gt;
I think this is the best site in the net I have ever visited!&lt;br /&gt;
Really, very nice site.&lt;br /&gt;
I check it regularly! &lt;br /&gt;
&amp;lt;a href=&#039;http://www8.vjc.edu/AlanPenczek/discuss/msgReader4&#039; &amp;gt;busty milfs&amp;lt;/a&amp;gt; | &amp;lt;a href=&#039;http://www8.vjc.edu/AlanPenczek/discuss/msgReader5&#039; &amp;gt;wife cheating&amp;lt;/a&amp;gt; | &amp;lt;a href=&#039;http://www8.vjc.edu/AlanPenczek/discuss/msgReader7&#039; &amp;gt;super huge black tits&amp;lt;/a&amp;gt; | &amp;lt;a href=&#039;http://www8.vjc.edu/AlanPenczek/discuss/msgReader0&#039; &amp;gt;black lesbians&amp;lt;/a&amp;gt; | &amp;lt;a href=&#039;http://www8.vjc.edu/AlanPenczek/discuss/msgReader4&#039; &amp;gt;real housewives&amp;lt;/a&amp;gt;&lt;br /&gt;
http://www8.vjc.edu/AlanPenczek/discuss/msgReader4&lt;br /&gt;
http://www8.vjc.edu/AlanPenczek/discuss/msgReader5&lt;br /&gt;
http://www8.vjc.edu/AlanPenczek/discuss/msgReader7&lt;br /&gt;
http://www8.vjc.edu/AlanPenczek/discuss/msgReader0&lt;br /&gt;
&lt;br /&gt;
I feel like a complete blank.&lt;br /&gt;
That&#039;s how it is.&lt;br /&gt;
I can&#039;t be bothered with anything recently. &lt;br /&gt;
&amp;lt;a href=&#039;http://members.lycos.co.uk/eltig/busty-girls.html&#039; &amp;gt;busty black girls&amp;lt;/a&amp;gt; | &amp;lt;a href=&#039;http://members.lycos.co.uk/eltig/butt.html&#039; &amp;gt;butt fuck&amp;lt;/a&amp;gt; | &amp;lt;a href=&#039;http://members.lycos.co.uk/eltig/black-girls.html&#039; &amp;gt;black girls&amp;lt;/a&amp;gt; | &amp;lt;a href=&#039;http://members.lycos.co.uk/eltig/asian-babes.html&#039; &amp;gt;asian babes&amp;lt;/a&amp;gt; | &amp;lt;a href=&#039;http://members.lycos.co.uk/eltig/asian-thumbs.html&#039; &amp;gt;asian thumbs&amp;lt;/a&amp;gt;&lt;br /&gt;
http://members.lycos.co.uk/eltig/busty-girls.html&lt;br /&gt;
http://members.lycos.co.uk/eltig/butt.html&lt;br /&gt;
http://members.lycos.co.uk/eltig/black-girls.html&lt;br /&gt;
http://members.lycos.co.uk/eltig/asian-babes.html&lt;br /&gt;
&lt;br /&gt;
&amp;lt;a href=&#039;http://snhs-plin.barry.edu/_disc49/000000cc.htm&#039; &amp;gt;levitra online&amp;lt;/a&amp;gt; | &amp;lt;a href=&#039;http://snhs-plin.barry.edu/_disc49/000000cf.htm&#039; &amp;gt;generic ativan&amp;lt;/a&amp;gt; | &amp;lt;a href=&#039;http://snhs-plin.barry.edu/_disc49/000000c9.htm&#039; &amp;gt;online viagra&amp;lt;/a&amp;gt; | &amp;lt;a href=&#039;http://snhs-plin.barry.edu/_disc49/000000cb.htm&#039; &amp;gt;order ultram&amp;lt;/a&amp;gt;&lt;br /&gt;
http://snhs-plin.barry.edu/_disc49/000000cc.htm&lt;br /&gt;
http://snhs-plin.barry.edu/_disc49/000000cf.htm&lt;br /&gt;
http://snhs-plin.barry.edu/_disc49/000000c9.htm&lt;br /&gt;
http://snhs-plin.barry.edu/_disc49/000000cb.htm&lt;br /&gt;
&lt;br /&gt;
&amp;lt;a href=&#039;http://snhs-plin.barry.edu/_disc49/000000cc.htm&#039; &amp;gt;levitra online&amp;lt;/a&amp;gt; | &amp;lt;a href=&#039;http://snhs-plin.barry.edu/_disc49/000000cf.htm&#039; &amp;gt;generic ativan&amp;lt;/a&amp;gt; | &amp;lt;a href=&#039;http://snhs-plin.barry.edu/_disc49/000000c9.htm&#039; &amp;gt;online viagra&amp;lt;/a&amp;gt; | &amp;lt;a href=&#039;http://snhs-plin.barry.edu/_disc49/000000cb.htm&#039; &amp;gt;order ultram&amp;lt;/a&amp;gt;&lt;br /&gt;
http://snhs-plin.barry.edu/_disc49/000000cc.htm&lt;br /&gt;
http://snhs-plin.barry.edu/_disc49/000000cf.htm&lt;br /&gt;
http://snhs-plin.barry.edu/_disc49/000000c9.htm&lt;br /&gt;
http://snhs-plin.barry.edu/_disc49/000000cb.htm&lt;br /&gt;
&lt;br /&gt;
&amp;lt;a href=&#039;http://snhs-plin.barry.edu/_disc49/000000cf.htm&#039; &amp;gt;buy ativan&amp;lt;/a&amp;gt; | &amp;lt;a href=&#039;http://snhs-plin.barry.edu/_disc49/000000c9.htm&#039; &amp;gt;viagra retail discount&amp;lt;/a&amp;gt; | &amp;lt;a href=&#039;http://snhs-plin.barry.edu/_disc49/000000cb.htm&#039; &amp;gt;generic ultram&amp;lt;/a&amp;gt; | &amp;lt;a href=&#039;http://snhs-plin.barry.edu/_disc49/000000cc.htm&#039; &amp;gt;cheap levitra&amp;lt;/a&amp;gt;&lt;br /&gt;
http://snhs-plin.barry.edu/_disc49/000000cf.htm&lt;br /&gt;
http://snhs-plin.barry.edu/_disc49/000000c9.htm&lt;br /&gt;
http://snhs-plin.barry.edu/_disc49/000000cb.htm&lt;br /&gt;
http://snhs-plin.barry.edu/_disc49/000000cc.htm&lt;/div&gt;</summary>
		<author><name>200.238.102.170</name></author>
	</entry>
</feed>